有两种方法:
一、
SELECT [value]
FROM ::fn_listextendedproperty (NULL, 'user', 'dbo', 'table', 'video','column', 'videoID')
二、
select (select value from sys.extended_properties
where name= 'MS_Description ' and
major_id=id
and minor_id=colorder)
from syscolumns where id=object_id( 'video') and name= 'videoID'
其中video是你的表名,videoID是你的列表。