mysql 8

[Shell Script, Mysql] mysql -e 명령어 시 결과 억지로 출력하기 (wc -l / -Bse)

mysql 을 서버에서 자주 쓰는 사람들이라면 익숙할 명령어 : -e mysql -u$USER -p$PW $DB -e "select * from table_name" 을 하면 $ mysql --local-infile=1 -e "select * from TABLE_NAME limit 10;"+----------------------------------+---------------------+---------------------+-------------+------------+------------+-------------+--------------------+----- collect_date | equip_date | key_id | data_id | point_id | point_value | poi..

Develope/LINUX 2017.11.22

[Mybatis/MariaDB] foreach 구문을 이용해서 Insert 대량 삽입하기

이 키워드로 들어오는 분들이 많아서 추가글 링크도 남긴다. foreach 처음 사용해봣을때의 글이니 어색하다.. 추가작업내용 : [MyBatis] 동적 쿼리문 만들기 (List insert, foreach)https://vivi-world.tistory.com/50 [MyBatis] 객체 (VO, DTO) 안의 리스트를 사용해서 인서트 작업하기https://vivi-world.tistory.com/40 * 결론 INSERT INTO collect_data_result ( collect_date, collect_time, table_name, target_table, building_id , flag, type, execute_time, count, remark ) VALUES ("${item.collec..

Develope/DataBase 2017.11.10

[Mysql] Select할 때 String 을 Date로 표현하기, 포맷 변환

ex)데이터 : varchar (8) 20170316 변환하고 싶은 형태 2017-03-16 DATE_FORMAT(STR_TO_DATE(date, '%Y%m%d'),'%Y-%m-%d ') *DATE_FORMAT ( Date, format ) Date타입의 값을 format에 지정한대로 출력해준다. * STR_TO_DATE( string, format )The STR_TO_DATE() converts the str string into a date value based on the fmt format string. The STR_TO_DATE() function may return a DATE , TIME, or DATETIME value based on the input and format strings..

Develope/DataBase 2017.11.02