启动:mysql -u root -p 123456
命令不见分号 “;” 不执行,回车后也可以继续写没写完的语句
终止没写完的命令:ctrl+c 或 \c
查看mysql的版本号:select version();
查看当前使用的数据库:select database();
查看库:show databases;
查看库下有哪些表:show tables;
选择某个库:use xxx;
创建库:create database xxx;
导入数据:source 路径 例:source D:/data/xx.sql
查看表中数据:select * from 表名
只看表结构,不看表中数据:desc 表名;
退出:exit