select o.type_desc, o.name, c.name, t.name , c.max_length, c.precision from sys.columns c inner join sys.types t on c.system_type_id = t.system_type_id inner join sys.objects o on c.object_id = o.object_id where o.type_desc not like 'system%' and o.type_desc not like 'int%' order by 1,2,3,4
No comments:
Post a Comment