MySQL命令实例

显示数据表结构

1、desc(describe) tablename;
2、show columns from tablename;
3、use information_schema;
    select * from  columns where  table_name='tablename';
4、show create table tabelname;

修改字符编码

1、alter database mydb character set utf8 ;//修改数据库字符编码

2、create database mydb character set utf8 ;//创建数据库时,制定数据库的字符编码

3、show variables like 'character%'; //查询当前mysql数据库的所有属性的字符编码

上一篇:openwrt设置uboot环境变量在flash上的存储地址


下一篇:Notepad++ 使用步骤,熟练掌握notepad++的使用技巧,无疑会大大提升专业技能。以及快捷键操作