1 show show tables; 显示数据库的所有表 show databases; 显示所有数据库 show columns from table; 显示表的所有列 show grants for root@localhost; 查看当前用户的权限 show index from table; 查看当前表定义的索引 2 describe 获取关于列的信息 show columns的替换函数 describe table; describe columns; 3 explain 理解查询的…
MySQL中show语法 1. show tables或show tables from database_name; -- 显示当前数据库中所有表的名称. 2. show databases; -- 显示mysql中所有数据库的名称. 3. show columns from table_name from database_name; 或show columns from database_name.table_name; -- 显示表中列名称. 4. show grants for use…
MySQL中 show 语法的使用: 先查看MySQL版本信息: mysql> select version(); +------------+ | version() | +------------+ | 5.6.16-log | +------------+ 1 row in set (0.00 sec) 帮助查看: mysql> help show mysql> help SHOW TABLE; mysql> help SHOW WARNINGS 1.显示mysql中所有数据…
mysql基础知识语法汇总整理(一) insert /*insert*/ insert into 表名(字段列表) values(值列表); --蠕虫复制 (优点:快速复制数据,测试服务器压力) insert into 表名1_插入 select (字段列表) from 表名2_复制; 例如:create table copy( id ) unsigned not null comment 'id', name ) not null default '' comment '名字' )engine…