MySQL常用命令行

MySQL常用命令行

1、启动
net start mysql

2、停止
net stop mysql

3、登录
mysql -h 127.0.0.1 -u root -p

4、查看数据库
show databases;

5、使用数据库
use test;

6、查看表列表
show tables;

7、查看表结构
desc app_users

8、断开连接
quit

发表回复

您的电子邮箱地址不会被公开。