zoukankan      html  css  js  c++  java
  • 枚举 sql server 中的表名 (zz)

    //z 2012-3-16 11:34:36 AM IS2120@CSDN

    SQL Server 2005 or 2008:

    SELECT * FROM information_schema.tables
    

    SQL Server 2000:

    SELECT * FROM sysobjects WHERE xtype='U'
    


    SELECT sobjects.name
    FROM sysobjects sobjects
    WHERE sobjects.xtype = 'U'
    

    Here is a list of other object types you can search for as well:

    • C: Check constraint
    • D: Default constraint
    • F: Foreign Key constraint
    • L: Log
    • P: Stored procedure
    • PK: Primary Key constraint
    • RF: Replication Filter storedprocedure
    • S: System table
    • TR: Trigger
    • U: User table
    • UQ: Unique constraint
    • V: View
    • X: Extended stored procedure
    //z 2012-3-16 11:34:36 AM IS2120@CSDN

    SELECT * FROM INFORMATION_SCHEMA.TABLES 
    

    or Sys.Tables



    exec sp_msforeachtable 'print ''?'''
    
    //z 2012-3-16 11:34:36 AM IS2120@CSDN
  • 相关阅读:
    SQL之CASE WHEN用法详解
    MySQL笔记汇总
    Linux常用命令
    TCP/IP速记
    数据结构和算法速记
    多线程相关概念
    线程安全&Java内存模型
    线程通讯wait&notify
    创建多线程的4种方式
    重写ThreadPoolTaskExecutor
  • 原文地址:https://www.cnblogs.com/IS2120/p/6745924.html
Copyright © 2011-2022 走看看