MySQL에서 Table의 Data를 Delete할 때 다음의 에러를 만나는 경우가 있다.Error Code: 1175You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column이 에러와 관련된 공식 문서의 내용은 다음과 같다.4.5.1.6.4 Using the --safe-updates OptionFor beginners, a useful startup option is --safe-updates (or --i-am-a-dummy, which has the same effect). It is helpful for cases when you might have issued a DELE..
MySQL은 encoding에 따라 character 하나에 여러 byte를 차지한다.또한 MySQL의 key는 max length가 1000byte이기 때문에 default character set을 확인하고 multi-byte encoding의 경우 이를 잘 계산하여 테이블을 생성하지 않으면 다음과 같은 에러 메시지를 만날 수 있다.ERROR 1071 (42000): Specified key was too long; max key length is 1000 bytes
Python(파이썬)을 이용하여 MySQL의 table에 insert를 할 때 insert 한 field의 auto increment된 id를 foreign key로 사용하는 등 다른 곳에 사용하기 위하여 조회해야 할 경우가 있다.이럴 경우 Python의 MySQLdb에서는 conn.insert_id()를 이용하라고 가이드하고있다.(document)그렇지만 몇몇 경우에 이 방법은 정상적으로 동작하지 않는다. 이 때 cursor object를 이용한 다음의 방법을 사용할 수 있다.import MySQLdbconnection = MySQLdb.connect(...)cursor = connection.cursor()cursor.execute("INSERT INTO table VALUES ('test')") p..