创表出错。错误代码:1101
创表代码如下:
create table bar1 ( i int, abc text not null default '' );
错误提示如下:
error 1101 (42000):blob/text column 'abc' can't have a default value
不明白为什么会出错。
------解决方案--------------------
text 实质上类似于BLOB,不能添加默认值!
你的abc 字段准备放些什么?如果想添加默认值则使用varchar
------解决方案--------------------
blob/text column 'abc' can't have a default value
BLOB 或者TEXT 的 COLUM 不能有默认值