【一句话学习笔记SQL篇】表和列的扩展属性

时间:2023-01-24 19:18:48

闲言碎语不说,直接入主题。

表的扩展属性查询:

--'table_name'自己指定

 select * from sys.fn_listextendedproperty 
(default,'schema', 'dbo', 'table', 'table_name', null, null);

 

字段的扩展属性查询:

--'column_name'自己指定

select * from sys.fn_listextendedproperty 
(default,'schema', 'dbo', 'table', 'table_name', 'column', 'column_name');

 

修改,删除参照如下SP

sys.sp_addextendedproperty、

sys.sp_dropextendedproperty、

sys.sp_updateextendedproperty