select 
    c.name as 字段名,
    isnull(g.[value],'') as 备注 
from 
    syscolumns c,sysproperties p 
where 
    c.id = object_id('表名')
    and
    c.id=p.id and c.colid=p.smallid