转:怎么用Sql语句获取一个数据库中的所有表的名字
Posted shirleyxuezi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了转:怎么用Sql语句获取一个数据库中的所有表的名字相关的知识,希望对你有一定的参考价值。
用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语句获取一个数据库中的所有表的名字的主要内容,如果未能解决你的问题,请参考以下文章