【网摘】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 希望对你有所帮助!^_^
写个博客不容易,请转载的时候备注下原文出处,谢谢
作者:keepnode
博客地址:http://www.cnblogs.com/woaic
每件事到最后都是好事,如果不是好事,说明还没有到最后
=========================
作者:keepnode
博客地址:http://www.cnblogs.com/woaic
每件事到最后都是好事,如果不是好事,说明还没有到最后
=========================