일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 브라우저
- AES
- Tomcat
- Firebase
- scheduled
- WebtoB
- 알고리즘
- WINDOW11
- User-Agent
- dbms
- Login
- window10
- 접근장치
- FCM
- web server
- mysql
- 암호화
- Was
- programmers
- 개발자도구
- TailMe
- ua-parser
- Java
- JEUS
- @Scheduled
- Oracle
- eGov
- URLRewirte
- 물리적주소
- db
- Today
- Total
목록DB/MYSQL (3)
HD
/*열의 개수*/ SELECT COUNT(*) FROM information_schema.columns WHERE table_name='테이블이름'; /*행의 개수*/ SELECT COUNT(1) FROM 테이블이름 ;
mysql-connector-java 버전 5.1 이후에 나온 버전부터 KST 타임존을 인식하지 못하는 이슈 발생 에러 코드 The server time zone value ‘KST’ is unrecognized or represents more than one time zone : The server time zone value ‘KST’ is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want t..
쿼리 실행시 아래와 같은 에러 코드 및 메시지가 발생한경우 Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column To disable safe mode, toggle the option in Preferences -> SQL Queries and reconnect. (해결방법) SET SQL_SAFE_UPDATES=0; -- safe mode 해제 반대로 다시 설정시 SET SQL_SAFE_UPDATES=1; -- safe mode 설정