1. 连接
mysql -u username -p -h 127.0.0.1 -P 6666
-u:用户名 -p:密码 -h:主机名 -P:端口
2. 选择数据库
use userdata;
选择名为“userdata”的数据库
3. 显示数据库
show databases;
显示所有数据库
4. 显示数据库内的表
show tables;
显示数据库内所有的表
5. 显示表的列及其属性
show columns from tables;
或
describe tables;
6. 其他
show status;
显示MySQL运行状态;
参数详解:https://www.cnblogs.com/zuxing/articles/7761262.html
show create database database_name;
show create table table_name;
显示create语句是否能够创建指定的数据库和表
show grants;
显示授予用户的安全权限
其他:https://www.cnblogs.com/andy6/p/6171945.html