怎么用Sql语句获取一个数据库中的所有表的名字

怎么用Sql语句获取一个数据库中的所有表的名字,第1张

用sql获取数据库中有的表名的方法:

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')


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6759771.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-27
下一篇 2023-03-27

发表评论

登录后才能评论

评论列表(0条)

保存