MYSQL SET ENUM字段类型
时间:2014-07-09 13:20:02
收藏:0
阅读:591
show create table stu;//显示建表语句
create table t1(t enum(‘a‘,‘b‘,‘c‘));
insert into t1 values(‘a‘);
create table t2(t set(‘a‘,‘b‘,‘c‘));
insert into t2 values(‘a,b‘);
MYSQL SET ENUM字段类型,布布扣,bubuko.com
原文:http://www.cnblogs.com/datastack/p/3832605.html
评论(0)