表结构的创建 比如:
create table userinfo (id int unsigned comment id号name varchar(60) comment 用户名password char(32),birthday date
) character set utf8 engine MyISAM;comment 表示注释的意思 不同的存储引擎,创建的表的文件不一样
数值类型: a. 整数类型: 注意事项: 举例:某个整型字段 ,不为空,且有默认值
create table test (age int unisigned not null default 1);zerofill的使用
b. bit类型的使用 c.小数类型 小数类型占用…