使用命令行操作mysql的一些简单步骤:
//进入MySQL数据库
> mysql -hlocalhost -uroot -p
//显示 所有数据库
> show databases;
//进入 指定 数据库
> use 数据库名;
//显示 所有表
> show tables;
/*
crud。。。;
*/
//中文显示乱码
> set names gbk;
如果出现这个 mysql: Character set 'UTF-8' is not a compiled character set and is not specified in the ‘文件路径‘;
一般进入MySQL文件中,找出my.ini文件找找到 ’UTF-8‘ 改为utf8即可。