; isnull(g.[value],'') as 字段说明
58
59
from syscolumns a left join systypes b
60
61
on a.xtype=b.xusertype
62
63
inner join sysobjects d
64
65
on a.id=d.id and d.xtype='u' and d.name<>'dtproperties'
66
67
left join syscomments e
68
69
on a.cdefault=e.id
70
71
left join sysproperties g
72