1. 문제: workbench에서 mysql 데이터값을 수정, 삭제, 입력 등을 시행하려고 하는데,
readonly여서 못할 때가 있다.
이는 table에서 pk(primary key)가 지정돼있지 않아서 발생하는 문제이다.
해결법
Primary Key를 지정한다.
ALTER TABLE `test`.`readonly`
ADD PRIMARY KEY (`no`);
'프로그래밍 > SQL' 카테고리의 다른 글
mysql- Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column. (0) | 2019.12.14 |
---|---|
outer join - mysql (0) | 2019.11.28 |
mysql - Error Code: 1248 Every derived table must have its own alias (0) | 2019.11.22 |
mysql - "Error Code : 1221 Incorrect usage of UNION and ORDER BY" (0) | 2019.11.22 |
mysql workbench에서 BLOB 타입 데이터 안나올 때 (0) | 2019.11.12 |
WRITTEN BY
,