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

上一篇:Java静态内部类详解


下一篇:grunt搭建自动化的web前端开发环境(转)