标题: 使用CSV存储引擎的相关注意事项。 [打印本页] 作者: jikcheng 时间: 2014-11-6 09:06 标题: 使用CSV存储引擎的相关注意事项。 创建csv存储引擎。 mysql> create table t2 (i int) engine=csv; ERROR 1178 (42000): The storage engine for the table doesn't support nullable columns mysql> create table t2 (i int not null) engine=csv;