首页 > 代码库 > SQL查询表结构
SQL查询表结构
--1 查看实体表结构
sp_MShelpcolumns ‘tablename‘
--2 SQL查询SQLSERVER数据库中的临时表结构脚本
use [tempdb]
go
select a.name,
case a.precision
when 0 then
case a.is_ansi_padded
when 1 then
convert(nvarchar(15),b.name+ ‘(‘+convert(nvarchar(10),a.max_length)+‘)‘) --字符
when 0 then
b.name + ‘(‘+convert(nvarchar(10),a.max_length)+‘)‘ --字符
end
else
case a.scale
when 0 then
b.name --整形
else
b.name+ ‘(‘+convert(nvarchar(10),a.precision)+‘,‘+convert(nvarchar(10),a.scale)+‘)‘ --实数
end
end
as typelength from sys.columns a left join sys.types b on a.system_type_id=b.system_type_id and a.user_type_id=b.user_type_id
where a.object_id =(select top 1 object_id from sys.objects where type=‘U‘ and name like ‘%jzcg_djmx%‘);
go
--上述脚本中的jzcg_djmx为临时表名称,请替换成您的数据库中临时表名称后运行测试
--查询结果类似下面的结构
--djbh char(15)
--dj_sn int
--fdbs char(3)
--spid char(11)
--dw char(10)
--baozhshl int
--lingsshl decimal(14,2)
SQL查询表结构