SQL Server查询数据库表字段类型

select b.name,a.name,c.name,a.xprec,a.xscale
from  syscolumns a
left outer join sysobjects b ON a.id=b.id
left outer join systypes c ON c.xusertype=a.xusertype
where b.xtype='U' AND b.name LIKE '%CRM_PS%'
AND (select systypes.name+'('+cast(a.length/2  as varchar(10))+')' from systypes where a.xusertype=systypes.xusertype ) LIKE '%decimal%'
order by b.name,a.colid

posted @ 2019-09-03 15:46  滑溜溜的小热浪  阅读(1026)  评论(0编辑  收藏  举报