CREATE proc describe
@table_name Nvarchar(100)
as
select c.name as column_name,
case t.name
when 'numeric' then
t.name+'('+cast(c.precision as varchar(5))+','+cast(c.scale as varchar(5))+')'
when 'char' then
t.name+'('+cast(c.max_length as varchar(5))+')'
when 'varchar' then
t.name+'('+cast(c.max_length as varchar(5))+')'
else t.name
end as type,
case c.is_nullable when 1 then ' '
else 'NOT NULL'
end as nullable
from sys.all_columns as c, sys.types as t
where c.system_type_id=t.system_type_id
and c.object_id=object_id(@table_name)
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/37724/viewspace-152615/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/37724/viewspace-152615/
本文提供了一段SQL脚本,用于查询指定表的所有列名、数据类型及是否允许为空等详细信息。通过此脚本可以方便地了解表的结构特征。
1306

被折叠的 条评论
为什么被折叠?



