码迷,mamicode.com
首页 > 其他好文 > 详细

4.2 DDL 表的管理

时间:2020-04-03 23:38:32      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:alt   sts   fir   creat   字段   alter   exist   not   表名   

一、创建表 ★

create table 【if not exists】 表名(
   字段名 字段类型 【约束】,
   字段名 字段类型 【约束】,
   。。。。。。
   字段名 字段类型 【约束】
 
    )
 

二、修改表

 

1.添加列

alter table 表名 add column 列名 类型 【first|after 字段名】;

2.修改列的类型或约束

alter table 表名 modify column 列名 新类型 【新约束】;

3.修改列名

alter table 表名 change column 旧列名 新列名 类型;

4 .删除列

alter table 表名 drop column 列名;

5.修改表名

alter table 表名 rename 【to】 新表名;
 

三、删除表

drop table【if exists】 表名;
 

四、复制表

1、复制表的结构

create table 表名 like 旧表;

2、复制表的结构+数据

create table 表名
select 查询列表 from 旧表【where 筛选】;

4.2 DDL 表的管理

标签:alt   sts   fir   creat   字段   alter   exist   not   表名   

原文地址:https://www.cnblogs.com/huabro/p/12629575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!