1、oracle下:select
table_name
from
all_tables
2、MySQL下:select
table_name
from
information_schema.tables
where
table_schema='csdb'
and
table_type='base
table'
3、sql
server下:select
name
from
sys.tables
go
用SQL语句显示数据库中所有表的名称:select 表名=name,类型=case xtype when 'S' then '系统表' else '用户表' end
from sysobjects
where xtype in('U','S')
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)