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

基础语法-DDL

时间:2020-07-18 00:54:10      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:varchar   title   article   column   rop   odi   color   str   style   

1. 创建表——create

create table t_article(
       id int(11) primary key auto_increment,
       name varchar(255) not null
)engine=innodb default charset=utf8;

 

2. 修改表——alter

2.1  修改表名

两种方法:一种方法直接用 rename 关键字,另一种方法用 alter 修改表

rename table tt_user to t_user;
alter table t_user rename to tt_user;

2.2  修改列名 

alter table t_article change column name title varchar(255) not null;

2.3  修改列类型

alter table t_article modify column title varchar(255) not null;
--
alter table t_article change column title title varchar(255) not null;
--change修改时指定列名一致也可以修改列类型

 

3. 删除表——drop

drop table if exists t_article;

 

基础语法-DDL

标签:varchar   title   article   column   rop   odi   color   str   style   

原文地址:https://www.cnblogs.com/liuyiyuan/p/13333872.html

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