文件名称:MySQL常用命令总结(二)
文件大小:49KB
文件格式:PDF
更新时间:2024-01-04 09:18:48
SQL 命令
一.表管理语句 1.查看表 查看所有表 show tables; 查看表的概要 show table status\G; 查看某张表的概要 show table status like 't1' \G; 查看某张表的结构 desc t1; 查看创建表时的sql语句 show create table t1; 2.创建表 简单的创建 create table t2(id int(5),name varchar(20)); 添加主键约束 方法一 create table t3(id int(11) key,name varchar(45) not null comment 'student');