SQL Server 資料表欄位增加描述/註解

要在 [A資料表] 的 [B欄位] 加入 [C註解] 的語法如下:
    
exec sp_addextendedproperty 'MS_Description', N'C註解', 'SCHEMA', 'dbo', 'TABLE', 'A資料表', 'COLUMN', 'B欄位'
go
    

文章撰寫中...請稍後...

參考資料:
Microsoft.Learn - sp_addextendedproperty (Transact-SQL)

留言