SQLSERVER查詢當前資料中的所有表
--切換資料庫
use c2
go
--查詢當前資料庫表名
select [name] from sysObjects where xtype='U' and [name] <> 'dtproperties' order by[name]
--查詢當前資料庫所有使用者檢視
Select [name] From sysObjects Where xtype='V' And [name]<>'syssegments' And [name]<>'sysconstraints' Order By [name]
--獲得指定表中所有的列和型別
Select
c.name As '列名',
t.name As '列型別'
From syscolumns c, systypes t, sysobjects o
Where c.xtype = t.xusertype
And c.id = o.id
And o.name='base_dict' --指定表名
Order By c.colorder
--獲取當前資料庫指定列名在那些表中 [ 在修改資料庫中的某個欄位,但這個欄位又有關聯其他表,用這種方式一幕瞭然就能看出哪張表用了我這個欄位 ]
Select
m.name AS '表名',
c.name As '列名',
t.name As '列型別'
From syscolumns c, systypes t, sysobjects o , ( select [name] from sysObjects where xtype='U' and [name] <> 'dtproperties' ) m
Where c.xtype = t.xusertype
And c.id = o.id
And o.name =m.name
And c.name='product_id' --指定列名
Order By m.name
--獲取當前資料庫所有表列名和表型別
Select
m.name AS '表名',
c.name As '列名',
t.name As '列型別'
From syscolumns c, systypes t, sysobjects o , ( select [name] from sysObjects where xtype='U' and [name] <> 'dtproperties' ) m
Where c.xtype = t.xusertype
And c.id = o.id
And o.name =m.name
Order By m.name
use c2
go
--查詢當前資料庫表名
select [name] from sysObjects where xtype='U' and [name] <> 'dtproperties' order by[name]
--查詢當前資料庫所有使用者檢視
Select [name] From sysObjects Where xtype='V' And [name]<>'syssegments' And [name]<>'sysconstraints' Order By [name]
--獲得指定表中所有的列和型別
Select
c.name As '列名',
t.name As '列型別'
From syscolumns c, systypes t, sysobjects o
Where c.xtype = t.xusertype
And c.id = o.id
And o.name='base_dict' --指定表名
Order By c.colorder
--獲取當前資料庫指定列名在那些表中 [ 在修改資料庫中的某個欄位,但這個欄位又有關聯其他表,用這種方式一幕瞭然就能看出哪張表用了我這個欄位 ]
Select
m.name AS '表名',
c.name As '列名',
t.name As '列型別'
From syscolumns c, systypes t, sysobjects o , ( select [name] from sysObjects where xtype='U' and [name] <> 'dtproperties' ) m
Where c.xtype = t.xusertype
And c.id = o.id
And o.name =m.name
And c.name='product_id' --指定列名
Order By m.name
--獲取當前資料庫所有表列名和表型別
Select
m.name AS '表名',
c.name As '列名',
t.name As '列型別'
From syscolumns c, systypes t, sysobjects o , ( select [name] from sysObjects where xtype='U' and [name] <> 'dtproperties' ) m
Where c.xtype = t.xusertype
And c.id = o.id
And o.name =m.name
Order By m.name
相關文章
- 查詢表中所有列名
- 查詢當前ubuntu版本號的命令Ubuntu
- SQL Server 查詢資料庫中所有表資料條數SQLServer資料庫
- 查詢mysql某張表中的所有資料(欄位)型別MySql型別
- 查詢時間從前7天到當前時間
- Laravel查詢 日期比當前時間早一個月的資料Laravel
- 查詢當前資料庫存在某個字串的儲存過程資料庫字串儲存過程
- 查詢前90%的資料值
- SQLServer查詢所有資料庫大小SQLServer資料庫
- 如何查詢某個資料表中除某個欄位的所有資訊???
- MySQL 查詢表所有列名,並用逗號分隔MySql
- 查詢表中倒數第三日期的所有資料
- SQL SERVER 2012查詢資料庫和所有表的大小方法彙總SQLServer資料庫
- 資料庫基礎查詢--單表查詢資料庫
- mysql中取系統當前時間,當前日期方便查詢判定的程式碼MySql
- openlayser 查詢wfs所有要素
- python 當中的模糊查詢Python
- 【Linux命令】在當前目錄下查詢出現特定字串的檔案位置資訊Linux字串
- Oracle查詢前100萬條資料Oracle
- 查詢資料庫中的所有的普通使用者資料庫
- 如何查詢Linux當機的原因?Linux
- Python 檢視當前環境所有變數的大小Python變數
- 查詢資料庫表及表欄位資料庫
- GBase 庫中查詢表的列資訊
- 查詢MySQL資料庫,MySQL表的大小MySql資料庫
- 資料庫全表查詢之-分頁查詢優化資料庫優化
- MySQL實現當前資料表的所有時間都增加或減少指定的時間間隔(推薦)MySql
- mysql查詢表基礎資訊MySql
- 資料庫中單表查詢資料庫
- Oracle OCP(22):查詢表資訊Oracle
- 如何查詢當前SAP使用者所屬的組織單元(organization unit)
- Python查詢包含指定字串的所有Office文件Python字串
- Python查詢包含指定字串的所有檔案Python字串
- 單表查詢
- 工作經驗: linux 壓縮當前資料夾下所有檔案Linux
- efcore 跨表查詢,實現一個介面內查詢兩個不同資料庫裡各自的表資料資料庫
- SAP RETAIL分配表的查詢報表AI
- 求各位前輩幫忙看看連表查詢字首問題
- int 被當作模糊查詢