MSSQL查詢所有數據庫表,指定數據庫的字段、索引


--查詢所有數據庫
USE master
go
select [name] from [sysdatabases] order by [name]

--查詢其中一個數據庫test,就可以得到這個數據庫中的所有的表名了,語句如下:
USE test
go
select [id], [name] from [sysobjects] where [type] = 'u' order by [name]

--查出v_lyb這個表中所有的字段
select [name] from [syscolumns] where [id] = 21575115 order by [colid]

--得到該表中的記錄條數前提這個表中要建立索引

select [o].[id], [o].[name], [i].[rows] from [sysindexes] [i], [sysobjects] [o] where [i].[first]>0 and [o].[id]=[i].[id] and [o].[type]='u' and [o].[id]=21575115

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM