• SQL查询SQLSERVER数据库中的临时表结构脚本


    --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)

  • 相关阅读:
    安卓之视图View的基本属性
    安卓之颜色
    安卓之屏幕显示
    sockfd_to_family函数
    family_to_level函数
    mcast_get_ttl函数
    mcast_get_loop函数
    mcast_set_ttl函数
    mcast_set_loop函数
    20200730 尚硅谷 JVM 16
  • 原文地址:https://www.cnblogs.com/xqf222/p/3306726.html
Copyright © 2020-2023  润新知