sqlserver 查询一个表的所有字段代码

select   c.*   from   syscolumns   c,   sysobjects   t   where   c.id   =   t.id   and   t.type='U'   and   t.name='Expros'
原文地址:https://www.cnblogs.com/bestsaler/p/1835733.html