zoukankan      html  css  js  c++  java
  • 获取数据库表的字段信息

    SELECT
    表名 = Case When A.colorder=1 Then D.name Else '' End,
    表说明 = Case When A.colorder=1 Then isnull(F.value,'') Else '' End,
    字段序号 = A.colorder,
    字段名 = A.name,
    字段说明 = isnull(G.[value],''),
    标识 = Case When COLUMNPROPERTY( A.id,A.name,'IsIdentity')=1 Then '√'Else '' End,
    主键 = Case When exists(SELECT 1 FROM sysobjects Where xtype='PK' and parent_obj=A.id and name in (
    SELECT name FROM sysindexes WHERE indid in( SELECT indid FROM sysindexkeys WHERE id = A.id AND colid=A.colid))) then '√' else '' end,
    类型 = B.name,
    占用字节数 = A.Length,
    长度 = COLUMNPROPERTY(A.id,A.name,'PRECISION'),
    小数位数 = isnull(COLUMNPROPERTY(A.id,A.name,'Scale'),0),
    允许空 = Case When A.isnullable=1 Then '√'Else '' End,
    默认值 = isnull(E.Text,'')
    FROM
    syscolumns A
    Left Join
    systypes B
    On
    A.xusertype=B.xusertype
    Inner Join
    sysobjects D
    On
    A.id=D.id and D.xtype='U' and D.name<>'dtproperties'
    Left Join
    syscomments E
    on
    A.cdefault=E.id
    Left Join
    sys.extended_properties G
    on
    A.id=G.major_id and A.colid=G.minor_id
    Left Join

    sys.extended_properties F
    On
    D.id=F.major_id and F.minor_id=0
    --where d.name='OrderInfo' --如果只查询指定表,加上此条件
    Order By
    A.id,A.colorder


    //mysql
    SELECT
    TABLE_NAME,
    column_name,
    DATA_TYPE,
    column_comment,
    (case when COLUMN_KEY='PRI' then 1 else 0 end) as IsPK,
    (case when IS_NULLABLE = 'NO' then 0 else 1 end)as CanNull
    FROM
    information_schema. COLUMNS
    WHERE
    TABLE_SCHEMA = '数据库';

    再将结果复制到excel中,修改为自己需要的样子。

  • 相关阅读:
    MIT Linear Algebra#4 Determinants
    MIT Linear Algebra#3 Orthogonality
    MIT Linear Algebra#2 Vector Spaces and Subspaces
    MIT Linear Algebra#1 Solving Linear Equations
    MIT Linear Algebra#0 Introduction to Vectors
    Image Filter and Recover
    Computational Geometry
    TOP-K Problems
    pat 1151 LCA in a Binary Tree
    上传文件到git仓库中
  • 原文地址:https://www.cnblogs.com/joyandjoys/p/10889290.html
Copyright © 2011-2022 走看看