gpt4 book ai didi

sql-server - 如何在 SQL Server 中向现有表列添加注释?

转载 作者:行者123 更新时间:2023-12-02 03:27:29 25 4
gpt4 key购买 nike

Possible Duplicate:
SQL Comments on Create Table on SQL Server 2008

我只是想知道如何向 SQL Server 中的现有表列添加注释?看起来很简单,但我在前 5 个结果中没有找到任何让我的搜索引擎抛出异常的内容。

编辑

我不想使用 UI,而是想知道 SQL 查询。

最佳答案

在 SQL Server Management Studio 中创建新表时,请参阅此屏幕截图以向列添加说明:

enter image description here

以编程方式执行此操作:

EXEC sp_updateextendedproperty 
@name = N'MS_Description', @value = 'Your description',
@level0type = N'Schema', @level0name = dbo,
@level1type = N'Table', @level1name = Your Table Name,
@level2type = N'Column', @level2name = Yuur Column Name;

关于sql-server - 如何在 SQL Server 中向现有表列添加注释?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9018518/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com