时间:2021-07-01 10:21:17 帮助过:17人阅读
用来创建定义表的结构,由列名(col_name)、列的定义(column_definition)以及可能的空值说明、完整性约束或表索引组成。
1 create table test ( 2 id int(11) not null comment ‘编号‘, 3 name varchar(50) default null comment ‘姓名‘, 4 address varchar(50) default null comment ‘地址‘, 5 status int(2) default null comment ‘状态‘, 6 createtime date default null comment ‘创建时间‘, 7 updatetime date default null comment ‘修改时间‘, 8 primary key (id) 9 ) engine=innodb default charset=utf8mb4 comment=‘测试‘;
1 describe 表名;
1 mysql> describe test; 2 +------------+-------------+------+-----+---------+-------+ 3 | Field | Type | Null | Key | Default | Extra | 4 +------------+-------------+------+-----+---------+-------+ 5 | id | int(11) | NO | PRI | NULL | | 6 | name | varchar(50) | YES | | NULL | | 7 | address | varchar(50) | YES | | NULL | | 8 | status | int(2) | YES | | NULL | | 9 | createtime | date | YES | | NULL | | 10 | updatetime | date | YES | | NULL | | 11 +------------+-------------+------+-----+---------+-------+ 12 6 rows in set (0.00 sec) 13 14 mysql>
Null:表示该列是否可以存储NULL值。
Key:表示该列是否已编制索引。PRI表示该列是表主键的一部分,UNI表示该列是UNIQUE索引的一部分,MUL表示在列中某个给定值允许出现多次。
Default:表示该列是否有默认值,如果有,值是多少。
Extra:表示可以获取的与给定列有关的附加信息,如:AUTO_INCREMENT等。
1 show tables;
1 mysql> show tables; 2 +----------------+ 3 | Tables_in_demo | 4 +----------------+ 5 | test | 6 +----------------+ 7 1 row in set (0.00 sec) 8 9 mysql>
1 show create table 表名 \G;
1 mysql> show create table test \G; 2 *************************** 1. row *************************** 3 Table: test 4 Create Table: CREATE TABLE `test` ( 5 `id` int(11) NOT NULL COMMENT ‘编号‘, 6 `name` varchar(50) DEFAULT NULL COMMENT ‘姓名‘, 7 `address` varchar(50) DEFAULT NULL COMMENT ‘地址‘, 8 `status` int(2) DEFAULT NULL COMMENT ‘状态‘, 9 `createtime` date DEFAULT NULL COMMENT ‘创建时间‘, 10 `updatetime` date DEFAULT NULL COMMENT ‘修改时间‘, 11 PRIMARY KEY (`id`) 12 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT=‘测试‘ 13 1 row in set (0.00 sec) 14 15 ERROR: 16 No query specified 17 18 mysql>
1 show table status like from 数据库 [like ‘模糊查询表名‘] \G;
1 mysql> show table status from demo \G ; 2 *************************** 1. row *************************** 3 Name: test 4 Engine: InnoDB 5 Version: 10 6 Row_format: Compact 7 Rows: 0 8 Avg_row_length: 0 9 Data_length: 16384 10 Max_data_length: 0 11 Index_length: 0 12 Data_free: 0 13 Auto_increment: NULL 14 Create_time: 2019-09-02 17:21:06 15 Update_time: NULL 16 Check_time: NULL 17 Collation: utf8mb4_general_ci 18 Checksum: NULL 19 Create_options: 20 Comment: 测试 21 1 row in set (0.00 sec) 22 23 ERROR: 24 No query specified 25 26 mysql>
1 alter table 表名 add column 新字段名 [数据类型] [约束条件] [first | after 已存在的字段名];
1 mysql> alter table test add column age int(3) null comment ‘年龄‘ after name; 2 Query OK, 0 rows affected (0.01 sec) 3 Records: 0 Duplicates: 0 Warnings: 0 4 5 mysql>
1 alter table 表名 change column 旧字段名 新字段名 [新数据类型];
1 mysql> alter table test change column username name varchar(30) not null default ‘none‘ comment ‘姓名‘; 2 Query OK, 0 rows affected (0.01 sec) 3 Records: 0 Duplicates: 0 Warnings: 0 4 5 mysql>
1 alter table 表名 drop 字段名;
1 mysql> alter table test drop age; 2 Query OK, 0 rows affected (0.01 sec) 3 Records: 0 Duplicates: 0 Warnings: 0 4 5 mysql>
1 drop table [if exists] 表名;
1 mysql> drop table demo; 2 Query OK, 0 rows affected (0.01 sec) 3 4 mysql>
MySQL学习——有关表的操作语句
标签:warnings 创建表 pre set for form font 删除表 ble