4.字符集方面的命令: 4.1.显示数据库可用的字符集: SHOW CHARACTER SET; 4.2.显示latin1的COLLATION SHOW COLLATION LIKE 'latin1%'; utf8_general_ci 大小写不敏感。 4.3.显示数据库和表的字符集: show create database db1 ; show create table tbl1 ; show full columns from tbl_tst ; 5.修改表的注释命令:
alter table`tbl_name` modify column `colname`intUNSIGNEDDEFAULT'0'NOTNULL COMMENT '注释';