Store 1000 values in singlecolumn of single table in MySQL
I am very new开发者_运维问答 to MySQL. I want to store 1000 or more values into a table of single column. After saving 100 values I got this:
mysql 139 storage engine error..
Are you using the InnoDB or MyISAM engine? This error normally means that you exceeded the allowed row length. Please post your table structure here.
You can do that from a command line client by issuing the command:
SHOW CREATE TABLE yourtable;
精彩评论