728x90
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CURRENT_TIMESTAMP' at line 1
▶︎ table 컬럼의 타입을 변경하고 싶을 때
ALTER TABLE tableName MODIFY columnName 변경할TYPE;
▶︎ table 컬럼의 default를 설정/수정하고 싶을 때
ALTER TABLE tableName ALTER COLUMN columnName SET DEFAULT 설정할값;
▶︎ defalut 값 설정 변경 시 발생 에러
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'CURRENT_TIMESTAMP' at line 1
해결 방법 -> 설정할 디폴트 값에 괄호 추가!
(생각보다 간단합니다,,!)
굿럭! 열공!
728x90
'PROGRAMMING > DataBase' 카테고리의 다른 글
[postgresql/mac] postgresql 설치 (1) | 2022.01.30 |
---|---|
[mysql/mac]계정생성, 계정권한부여, database생성, table생성 (0) | 2021.05.26 |
[mysql/mac]cli database, table 사용 insert, delete 문(DML) (0) | 2021.05.24 |
[mysql/mac]Error: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) 오류 해결방법 _ for Mac m1 (0) | 2021.05.21 |
DATABASE_09_데이터베이스 보안과 관리 (0) | 2021.04.14 |