본문 바로가기

반응형

DB(SQL)

(71)
[MySQL] utf8 vs utf8mb4 차이는? 결론 utf8mb4 추천 cirius.tistory.com/1769 [MySQL] utf8 vs utf8mb4 차이는? utf8 vs utf8mb4 차이는? MySQL, MariaDB, Postgresql, MSSQL, Oracle등등의 Database를 사용하면서 혹은 개발언어등에서 CHARSET = utf8로 세팅하고 사용한다. 언제부턴가 나는 MySQL, MariaDB를 사용할 경우 자.. cirius.tistory.com
DATABASE 네이밍 룰 참조 자료 jang8584.tistory.com/35 Database 네이밍 룰(Naming rule) 1. Database 관련 Naming Rule 가. Database Schema Name 1) 규칙 █ Database Profile 이름을 의미함 █ DB Alias 이.. jang8584.tistory.com
ERD 작성 무료 사이트 https://24hours-beginner.tistory.com/242 Free ERD create web site 개인적으로 무료인데 기능까지 사기인 AqueryTool을 사용하였다. (짱짱 좋다) 0. 가볍다! 간편하다! (내가 원하는 기능 왠만한거 다 있음) 1. 정렬기능 2. 이미지 내보내기, 엑셀로 내보내기, sql로 내 24hours-beginner.tistory.com 무료로 사용하기 좋은 ERD 웹 사이트 입니다. 한국사람이 만들어서 그런지 뭔가 사용하기 편합니다. 가끔 오류가 있긴 하지만 왠만하면 완벽한 SQL로도 내보내기가 가능하고 PDF로 만들거나 엑셀로 내보낼 수 있어 정말 편리합니다. aquerytool.com/ AQueryTool - AQuery.Web AQueryTool은 웹..
[MYSQL] DB DUMP (BACKUP 백업) Usage: mysqldump [OPTIONS] database [tables] OR mysqldump [OPTIONS] --databases [OPTIONS] DB1 [DB2 DB3...] OR mysqldump [OPTIONS] --all-databases [OPTIONS] 0. MYSQL INSTALL (mysqldump를 사용하려면 mysql이 있어야함) 1. CMD OPEN 2. 저장할 위치로 이동 (이동하지 않으면 다 타이핑 쳐줘야함) 3. Usage를 참고로 명령어 입력 -- 현재 위치에 해당 스키마에 해당되는 모든 Table 백업파일명.sql로 dump mysqldump -u유저네임 -p 스키마명 > 백업파일명.sql Enter password : 패스워드 참고: https://www.le..
MySQL 현재시간을 기준으로 (+, -) 시간 조회하기 (SUBDATE) # 30분 후 조회 SELECT SUBDATE(NOW(), INTERVAL -30 MINUTE), current_timestamp FROM DUAL; # 30분 전 조회 SELECT SUBDATE(NOW(), INTERVAL 30 MINUTE), current_timestamp FROM DUAL; # 12시간 전 조회 SELECT SUBDATE(NOW(), INTERVAL 12 HOUR) from dual; # 1개월 전 조회 SELECT SUBDATE(NOW(), INTERVAL 12 MONTH) from dual; # 1년 전 조회 SELECT SUBDATE(NOW(), INTERVAL 12 YEAR) from dual; @TODO mysql 과 server의 시간 기준이 다르면 어떻게 될까..?
Sequelize 참고 사이트 https://sequelize.org/master/index.html Manual | Sequelize Constraints & Circularities Adding constraints between tables means that tables must be created in the database in a certain order, when using sequelize.sync. If Task has a reference to User, the User table must be created before the Task table can be crea sequelize.org https://velog.io/@cadenzah/sequelize-document-4 Sequelize 공식 Documen..
mysql 자료 및 링크 https://riptutorial.com/ko/mysql RIP Tutorial (Stack Overflow Documentation) Documentation on languages such as C#, Entity Framework, SQL, and a lot of more! riptutorial.com https://riptutorial.com/ko/ 홈페이지에서 제공해주는 mysql tutorial file

반응형