database
[mysql] SQL Error [1118] [42000]: Row size too large 에러
오류 메시지 MySQL을 사용할 때 아래의 오류가 발생하는 경우가 있다. SQL Error [1118] [42000]: Row size too large. The maximum row size for the used table type, not counting BLOBs, is 65535. This includes storage overhead, check the manual. You have to change some columns to TEXT or BLOBs 아래와 같은 경우에 발생한다. CREATE TABLE large_table ( col1 VARCHAR(10000), col2 VARCHAR(10000), col3 VARCHAR(1843) ) ENGINE=InnoDB CHARACTER SET u..
2023. 1. 25. 15:05