码迷,mamicode.com
首页 > 数据库 > 详细

SQL alter table 语法

时间:2015-11-27 15:11:41      阅读:811      评论:0      收藏:0      [点我收藏+]

标签:sql alter table

如需在表中添加列,请使用下列语法:

alter table table_name
Add column_name datatype
要删除表中的列,请使用下列语法:

ALTER TABLE table_name 
DROP COLUMN column_name
要改变表中列的数据类型,请使用下列语法:

ALTER TABLE table_name
ALTER COLUMN column_name datatype

如果想在一个已经建好的表中添加一列,可以用诸如:

alter table t1 add column addr varchar(20) not null;

这条语句会向已有的表t1中加入一列addr,这一列在表的最后一列位置。如果我们希望添加在指定的一列,可以用:

alter table t1 add column addr varchar(20) not null after user1;

注意,上面这个命令的意思是说添加addr列到user1这一列后面。如果想添加到第一列的话,可以用:

alter table t1 add column addr varchar(20) not null first;



本文出自 “文化流感” 博客,请务必保留此出处http://10846974.blog.51cto.com/10836974/1717437

SQL alter table 语法

标签:sql alter table

原文地址:http://10846974.blog.51cto.com/10836974/1717437

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