基础语法-DDL

Posted liuyiyuan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基础语法-DDL相关的知识,希望对你有一定的参考价值。

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的主要内容,如果未能解决你的问题,请参考以下文章

SQL语句学习----通用语法,DDL,DML基础语句

HBASE基础:语法shell操作 DDL namespace/表的操作

JSP 基础语法

SQL基础笔记

MySQL—— 数据库操作基础 和 常用语法(DDL,DML,DQL,DCL)

JSP开发中的基础语法