cmd中查看MySQL数据库表数据及结构

时间:2021-05-18 03:23:18

0.

1 .cmd进入mysql安装的bin目录(C:\Program Files\XXXXXX\MySQL Server 5.6\bin) mysql -hlocalhost -uroot -p 回车 输入密码;

cmd中查看MySQL数据库表数据及结构

 

2 . 显示所有的数据库。show databases; 

cmd中查看MySQL数据库表数据及结构

3 . 选择数据库,use  xxx;

cmd中查看MySQL数据库表数据及结构

4 .  显示表。show tables;

cmd中查看MySQL数据库表数据及结构cmd中查看MySQL数据库表数据及结构

5 . 直接查询语句,显示表数据。select * from tbl_dept;

cmd中查看MySQL数据库表数据及结构

--------------------- 本文来自 英格雷士 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/weixin_40595244/article/details/80824488?utm_source=copy