sql语句的关键词:
create table tbl_mim_card(
id int not null auto_increment,
id_type char(20) colleate gbk_bin comment "证件类型",
)
collate:指定排序规则,可以写在任何sql语句的各个部分,比如:orderBy后,Group by后面等等,要直接写在字段后面,可以修改默认的字符排序。
comment:可以写表的注释信息和字段的注释信息,可以通过show full columns from test(数据库中的表的名称);来查看表的字段,权限,类型,默认值,排序规则以及注释信息。