zoukankan      html  css  js  c++  java
  • 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)

  • 相关阅读:
    剑指offer系列40:构建乘积数组
    自学网站
    存储分析--- 转载
    程序员面试宝典第四版
    资源查找
    诗句
    fifo manage
    charlse抓包
    python基础之-----列表list工厂的仓库
    python内置函数积累
  • 原文地址:https://www.cnblogs.com/withoutaword/p/4208771.html
Copyright © 2011-2022 走看看