zoukankan      html  css  js  c++  java
  • SQL查询所有表,所有列

    1.查询实例中所有数据库

    select name,database_id from sys.databases

    2.查询数据库中所有表
    select TABLE_TYPE,TABLE_NAME from information_schema.tables order by TABLE_NAME

    select * from sysobjects where type='U' order by name(所有表)
    select * from sysobjects where type='SQ' order by name
    select * from sysobjects where type='FN' order by name
    select * from sysobjects where type='S' order by name
    select * from sysobjects where type='D' order by name
    select * from sysobjects where type='IT' order by name
    select * from sysobjects where type='F' order by name
    select * from sysobjects where type='F' order by name
    select * from sysobjects where type='PK' order by name(所有主键)
    select * from sysobjects where type='P' order by name
    select * from sysobjects where type='TF' order by name
    select * from sysobjects where type='C' order by name
    select * from sysobjects where type='UQ' order by name
    select * from sysobjects where type='V' order by name(所有视图)

  • 相关阅读:
    JSP学习-JSP访问数据库-JavaBean封装
    JSP学习-sessionDemo
    第十次随笔
    第九次随笔
    第八次随笔
    第七次随笔
    第六次随笔
    第五次随笔
    第四次随笔
    第三次随笔
  • 原文地址:https://www.cnblogs.com/sunbingqiang/p/6237871.html
Copyright © 2011-2022 走看看