标签:info 查看 create describe 状态 des custom grants errors
使用客户机连接到MySQL后,使用use关键字选择可用的数据库
use databasename;
数据库、表、列、用户、权限等信息被存储在数据库和表中,show命令显示
1)显示数据库
SHOW DATABASES;
2)获得当前数据库的可用的表
show tables;
3)显示表列
show columns from customers; 等同于 describe customers;
4)其他show语句:
show status; 显示广泛的服务器状态信息
show create database xxx; show create table xxx;显示创建语句
show grants;显示授予用户的安全权限
show errors; show warnings;显示服务器错误或警告
标签:info 查看 create describe 状态 des custom grants errors
原文地址:https://www.cnblogs.com/july23333/p/11722031.html