SQL Server 2000 - 如何通过 SQL 向字段添加描述?
我知道如何通过服务器管理工作室添加描述。我在某个地方遇到了一些 EXEC 的事情,添加字段描述看起来过于复杂。
在 mysql 中,我可以将 COMMENT 'field comment here' 选项添加到表创建语句中的每个字段... SQL Server 2000 有这样的东西吗?
I know how to add the description through the server management studio. And i came across some EXEC thing someplace that looked overly complex to add a field description.
in mysql i can just add the COMMENT 'field comment here' option to each field in the table create statement... does SQL Server 2000 have such a thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
不幸的是,过于复杂的 exec 是向 MS SQL DB 中的列添加描述的唯一“正确”方法。
该过程是:
一旦您了解了它,就会发现这是一个相当简单的过程。
这是一个例子
Unfortunately that overly complicated exec is the only "proper" way to add a description to a column in a MS SQL DB.
The procedure is:
Once you get your head around it it is a fairly simple procedure to use.
here's an example
如果您想使用 TSQL 语句向表中的列添加描述,请尝试以下操作:
If you want to use a TSQL statement to add a description to a column on a table, try this:
请参阅:使用 SQL Server 2000 扩展属性。
See: Using SQL Server 2000 Extended Properties.
如果您愿意,您可以不厌其烦地使用此处提到的扩展属性,但为什么不直接创建一个包含所有这些信息的表 - 一个“数据字典”呢?
You can go through the trouble to use extended properties as mentioned here if you want, but why not just create a table that contains all of that information - a "data dictionary"?