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

修改数据库字段类型(alter table alter column)

时间:2014-11-26 01:13:31      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:style   http   ar   color   sp   strong   数据   on   div   

MySQL:

ALTER TABLE Customer MODIFY Address char(100);

Oracle:

ALTER TABLE Customer MODIFY Address char(100);

SQL Server:

ALTER TABLE Customer ALTER COLUMN Address char(100);
 

修改数据库字段类型(alter table alter column)

标签:style   http   ar   color   sp   strong   数据   on   div   

原文地址:http://www.cnblogs.com/listened/p/4122251.html

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