【网摘】sql 语句修改字段名称以及字段类型

网上摘抄,备份使用:
修改字段名:
下例将表 customers 中的列 contact title 重命名为 title。

EXEC sp_rename 'customers.[contact title]', 'title', 'COLUMN'
修改字段属性:
alter table tab_info alter column thisname varchar(200) not null;

修改默认值
alter table tabinfo add constraint df default('嘿嘿') for thisname;
原文出处:http://zhidao.baidu.com/question/183404624.html
希望对你有所帮助!^_^
posted @ 2013-08-14 10:06  keepnode  阅读(956)  评论(0编辑  收藏  举报