본문 바로가기

mysql

[Mysql workbench] 에러 1265 : Data truncated for column 오류 내용 1 warning(s): 1265 Data truncated for column '~~~~~~~' at row 14 Rows matched 해결방법 데이터가 잘렸을때 나오는 경고 오류 보통 등록된 자료형의 범위를 벗어난 큰 데이터를 넣으면 그렇다! 자료형을 TEXT 에서 MEDIUMTEXT 로 수정 ALTER TABLE 테이블명 MODIFY 컬럼명 MEDIUMTEXT; 더보기
[Mysql workbench] 에러 1064 : You have an error in your SQL syntax; 오류 내용 Error Code: 1064. You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ''2003100005'' at line 1 select * from 테이블이름; 을 했는데 급 뜬 에러.. 알고보니 import 한 테이블 명이 숫자로만 이루어져있어서 그런듯 Mysql reserved words에 들어가는 단어를 사용하면 그렇다! 해결방법 이를 위해서는 reserved words를 키보드 ESC밑에 있는 ` `를 사용해 감싸준다. select * from `테이블이름`; 하니까 완료! 더보기
[Mysql workbench] 1175 에러 1175 에러 발생~ 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 Editor and reconnect. 📌 해결방법 Edit > Preferences > SQL Editor > Other에 있는 safe updates 체크 풀기! > 재시작 💥💥💥💥💥체크풀기!! 💥💥💥💥💥재시작필수!!!! 더보기
[Mysql workbench] csv파일 import 오류 : Can't analyze file. Please try to change encoding type. 데이터 옮기려고 하는데 오류... 가 생겼다. Can't analyze file. Please try to change encoding type. If that doesn't help, maybe the file is not: csv, or the file is empty. 📌해결방법 1. csv 파일을 오른쪽버튼 클릭 > 연결프로그램 > 메모장으로 열기 >다른이름으로 저장 (인코딩 : UTF-8로 설정) 2. mysql workbench를 다운그레이드 하면된다. 📌 참고로 mysql 데이터 import 할때는 1. json 2. csv 파일 만 가능 더보기
[MYSQL] 컬럼 COMMENT 조회방법 SELECT TABLE_NAME, COLUMN_NAME, COLUMN_COMMENT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = 'DB명' AND TABLE_NAME = 'TABLE 이름' ; 더보기