主頁 > 知識庫 > sql腳本查詢數(shù)據(jù)庫表,數(shù)據(jù),結構,約束等操作的方法

sql腳本查詢數(shù)據(jù)庫表,數(shù)據(jù),結構,約束等操作的方法

熱門標簽:電銷外呼系統(tǒng)軟件功能 承德地圖標注公司名需要花錢嗎 慶陽地圖標注 北京400電話辦理多少錢 咸陽電腦外呼系統(tǒng)運營商 浙江穩(wěn)定外呼系統(tǒng)供應商 怎么給高德做地圖標注 美團地圖標注商戶認證注冊 榕城市地圖標注

1.查詢當前數(shù)據(jù)庫所有表

復制代碼 代碼如下:

SELECT
    O.object_id AS TableId,
    TableName=O.name  ,
    TableDesc= O.type
FROM sys.columns C
    INNER JOIN sys.objects O
        ON C.[object_id]=O.[object_id]
            AND O.type='U'
            AND O.is_ms_shipped=0
    INNER JOIN sys.types T
        ON C.user_type_id=T.user_type_id
    LEFT JOIN sys.extended_properties PTB
        ON PTB.class=1
            AND PTB.minor_id=0
            AND C.[object_id]=PTB.major_id
WHERE C.column_id=1
ORDER BY TableName

2.查詢當前表所有字段,數(shù)據(jù),約束

復制代碼 代碼如下:

select   
tabName=O.NAME,
columnLine=C.column_id,
columnName=C.name,
typeNum=T.name,
typeLength=C.max_length,
fState=ISNULL(G.value,N''),
isAbleNull=CASE WHEN C.is_nullable=1 THEN N'√'ELSE N'' END,
defaultData=ISNULL(D.definition,N''),
isIdentity=CASE WHEN C.is_identity=1 THEN N'√'ELSE N'' END,
isPrimary=case when exists(SELECT 1 FROM sysobjects where xtype='PK' and parent_obj=c.[object_id] and name in (
             SELECT name FROM sysindexes WHERE indid in( SELECT indid FROM sysindexkeys WHERE id = c.[object_id] AND colid=c.column_id))) then '√' else '' end,
isForeign=case when exists(select * from sysforeignkeys fk where C.[object_id]=FK.fkeyid AND C.column_id=FK.fkey)then '√' else '' end,
TabForeignName=ISNULL(IDX.FKName,N''),
OutNameCol=ISNULL(IDX.ns,N'')
FROM sys.columns C
INNER JOIN sys.objects O
ON C.[object_id]=O.[object_id]
            AND O.type='U'
            AND O.is_ms_shipped=0
INNER JOIN sys.types T
        ON C.user_type_id=T.user_type_id
left JOIN sys.extended_properties G
        ON C.[object_id]=G.major_id and c.column_id=g.minor_id
LEFT JOIN sys.default_constraints D  
        ON C.[object_id]=D.parent_object_id
            AND C.column_id=D.parent_column_id
            AND C.default_object_id=D.[object_id]
left join sysforeignkeys fk
        on C.[object_id]=FK.fkeyid
            and C.column_id=FK.fkey
 LEFT JOIN                       -- 索引及主鍵信息
    (
        SELECT
            IDX.fkeyid,
            IDX.fkey,
            FKName=o.name,
            ns=ss.name
        FROM sysforeignkeys IDX
        INNER JOIN sys.objects O
        ON IDX.rkeyid=O.[object_id]
            AND O.type='U'
            AND O.is_ms_shipped=0
        left join syscolumns ss
        on IDX.rkeyid=ss.id
            and IDX.RKEY=SS.COLID
    )IDX
        ON C.[object_id]=IDX.fkeyid
            AND C.column_id=IDX.fkey

WHERE O.name=N'{0}'        ------要查詢的表名
ORDER BY O.name,C.column_id

3.字段

要加單引號varchar,char,nvarchar,nchar,text,ntext,datetime
不需要加int,numeric,bit 不需要加

帶長度:[binary],[char],[decimal],[nchar],[numeric],[nvarchar],[varbinary][varchar]
不用帶:[bigint],[bit],[datetime],[float],[image],[int],[xml],[timestamp],[tinyint],
[uniqueidentifier],[money],[ntext],[real],[smalldatetime],[smallint],[smallmoney],
[sql_variant],[text]

您可能感興趣的文章:
  • mysql創(chuàng)建Bitmap_Join_Indexes中的約束與索引
  • SQL Server約束增強的兩點建議
  • Mysql中返回一個數(shù)據(jù)庫的所有表名,列名數(shù)據(jù)類型備注
  • sql語句查詢數(shù)據(jù)庫中的表名/列名/主鍵/自動增長值實例
  • sqlserver 修改列名及表名的sql語句
  • MySQL學習筆記4:完整性約束限制字段
  • MySQL 添加、修改、刪除表的列及約束等表的定義
  • 使用sql語句創(chuàng)建和刪除約束示例代碼
  • MySQL導出所有Index和約束的方法
  • SQLSERVER實現(xiàn)更改表名,更改列名,更改約束代碼

標簽:新鄉(xiāng) 重慶 貴州 拉薩 呼和浩特 江蘇 昭通 上海

巨人網(wǎng)絡通訊聲明:本文標題《sql腳本查詢數(shù)據(jù)庫表,數(shù)據(jù),結構,約束等操作的方法》,本文關鍵詞  sql,腳本,查詢,數(shù)據(jù)庫,表,;如發(fā)現(xiàn)本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《sql腳本查詢數(shù)據(jù)庫表,數(shù)據(jù),結構,約束等操作的方法》相關的同類信息!
  • 本頁收集關于sql腳本查詢數(shù)據(jù)庫表,數(shù)據(jù),結構,約束等操作的方法的相關信息資訊供網(wǎng)民參考!
  • 推薦文章