首页 > 代码库 > mysql show 语句

mysql show 语句

help show;显示show语句语法

show databases;显示可用数据库 
show tables;显示可用数据表 
show columns from tb_name;显示表的列 
describe tb_name;显示表的列 
show status;显示广泛的服务器状态信息 
show create database;显示创建特定数据库的语句 
show create table;显示创建特定数据表的语句 
show errors;显示服务器错误信息 
show warning;显示服务器警告信息

    

mysql show 语句