如何利用SQL语句查询数据库中所有表的名称?

时间:2022-05-16 05:16:10
如何利用SQL语句查询数据库中所有表的名称?
有没有这种语句?

28 个解决方案

#1


use test--數據庫名
go
select * from sysobjects where xtype='U'

#2


SELECT NAME,* FROM SYSOBJECTS WHERE XTYPE='U' 

#4


http://blog.csdn.net/Internetroot/archive/2007/11/07/1871704.aspx http://blog.csdn.net/Internetroot/archive/2007/11/07/1871704.aspx

#5


select * from sys.objects where xtype ='U'

#6


引用 5 楼 hery2002 的回复:
SQL codeselect * from sys.objects where xtype ='U'

应该是1楼那样的吧sys.objects中间没有"."

#7


select * from sysobjects where xtype='U'

#8


SQL2005:

select name From sys.tables

#9


引用 7 楼 lgxyz 的回复:
SQL codeselect * from sysobjects where xtype='U'

#10


引用 1 楼 roy_88 的回复:
SQL codeuse test--數據庫名
go
select * from sysobjects where xtype='U'

#11


select * from sysobjects where type='U'

#12


select * from sysobjects

#13


select * from sysobjects where xtype='U'

#14


select * from sysobjects where xtype='U'

#15


引用 1 楼 roy_88 的回复:
SQL codeuse test--數據庫名
go
select * from sysobjects where xtype='U'

#16


select * from sysobjects where xtype = 'u'

#17


select * from sys.objects where  type ='U'

#18


select * from sysobjects where xtype='U'

#19


select * from sys.objects where xtype ='U'

#20


select * from sysobjects where type='U'


#21



select name from sysobjects where type='U'

#22


select * from sysobjects where xtype='U'

#23


select * from sysobjects where xtype='U'

#24


--用这个也是可以的,但不如前面大多数人提到的简单:sp_tables @table_type ='''TABLE'''
--只取表名
create table #a(a varchar(50),b varchar(50),c varchar(100),d varchar(50),e varchar(50))
insert #A exec sp_tables @table_type ='''TABLE'''
select c name from #a

#25


select * from sysobjects where xtype='U'

#26


select * from sysobjects where xtype='U'

#27


不错……………………回帖,加分

#28


select * from sysobjects where xtype='U'为什么说找不到database?菜鸟了

#1


use test--數據庫名
go
select * from sysobjects where xtype='U'

#2


SELECT NAME,* FROM SYSOBJECTS WHERE XTYPE='U' 

#3


#4


http://blog.csdn.net/Internetroot/archive/2007/11/07/1871704.aspx http://blog.csdn.net/Internetroot/archive/2007/11/07/1871704.aspx

#5


select * from sys.objects where xtype ='U'

#6


引用 5 楼 hery2002 的回复:
SQL codeselect * from sys.objects where xtype ='U'

应该是1楼那样的吧sys.objects中间没有"."

#7


select * from sysobjects where xtype='U'

#8


SQL2005:

select name From sys.tables

#9


引用 7 楼 lgxyz 的回复:
SQL codeselect * from sysobjects where xtype='U'

#10


引用 1 楼 roy_88 的回复:
SQL codeuse test--數據庫名
go
select * from sysobjects where xtype='U'

#11


select * from sysobjects where type='U'

#12


select * from sysobjects

#13


select * from sysobjects where xtype='U'

#14


select * from sysobjects where xtype='U'

#15


引用 1 楼 roy_88 的回复:
SQL codeuse test--數據庫名
go
select * from sysobjects where xtype='U'

#16


select * from sysobjects where xtype = 'u'

#17


select * from sys.objects where  type ='U'

#18


select * from sysobjects where xtype='U'

#19


select * from sys.objects where xtype ='U'

#20


select * from sysobjects where type='U'


#21



select name from sysobjects where type='U'

#22


select * from sysobjects where xtype='U'

#23


select * from sysobjects where xtype='U'

#24


--用这个也是可以的,但不如前面大多数人提到的简单:sp_tables @table_type ='''TABLE'''
--只取表名
create table #a(a varchar(50),b varchar(50),c varchar(100),d varchar(50),e varchar(50))
insert #A exec sp_tables @table_type ='''TABLE'''
select c name from #a

#25


select * from sysobjects where xtype='U'

#26


select * from sysobjects where xtype='U'

#27


不错……………………回帖,加分

#28


select * from sysobjects where xtype='U'为什么说找不到database?菜鸟了