1.查看数据库版本
登陆状态:select version ();
未登录状态:mysql --version
2.查询所有数据库:show databases;
3.使用某个数据库:use 库名;
4.查询当前库中所有的表:show tables;
5.查询其他库的所有表:show tables from 库名;
6.查看表的创建语句:show create table table_name;
1.查看数据库版本
登陆状态:select version ();
未登录状态:mysql --version
2.查询所有数据库:show databases;
3.使用某个数据库:use 库名;
4.查询当前库中所有的表:show tables;
5.查询其他库的所有表:show tables from 库名;
6.查看表的创建语句:show create table table_name;