SQL Server用sql语句添加列,添加列注释文章来源:https://www.toymoban.com/news/detail-661802.html
微软文档:
https://learn.microsoft.com/zh-cn/sql/relational-databases/tables/add-columns-to-a-table-database-engine?view=sql-server-ver15文章来源地址https://www.toymoban.com/news/detail-661802.html
alter table article
add RedirectURL varchar(600) null
EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'融媒体引用新闻url' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'Article', @level2type=N'COLUMN',@level2name=N'RedirectURL'
GO
到了这里,关于SQL Server用sql语句添加列,添加列注释的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!