码迷,mamicode.com
首页 > 数据库 > 详细

sql获取mysql所有数据库,表名

时间:2020-07-15 23:31:13      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:basic   取数据   type   mys   数据库备份   where   into   分表   ora   

当面对可能存在的大数据,不能把所有数据放在一张表里,否则会影响到查询效率,那么我们需要对数据库进行分表分区,例如一天一张表,当插入数据时,判断表是否存在,不存在则创建新表,并进行数据插入。

如果我们需要在程序中通过sql语句查询来获得存在的数据库,以及某个数据库的所有表名,可以这样写:

#查询所有的数据库名称
SELECT SCHEMA_NAME AS `Database` FROM INFORMATION_SCHEMA.SCHEMATA;

#查询指定数据库下的所有表名(例如sw_wbdlp_basic_db_v1数据库下的所有表名)

select table_name from information_schema.TABLES where TABLE_SCHEMA=sw_wbdlp_basic_db_v1 and TABLE_TYPE = base table;

执行结果:

获取数据库名:

技术图片

 

 表名:

技术图片

 不同数据库备份复制表的sql

Sql server :
select * into table_new from table_old ; 复制结构和数据
select * into table_new from table_old where 1=2;只复制结构
Oracle:
create table table_new as select * from table_old;复制结构和数据
create table table_new as select * from table_old where 1=0;只复制结构
DB2:
--复制表结构
create table table_name_new as (select * from table_name_old) definition only;

 

sql获取mysql所有数据库,表名

标签:basic   取数据   type   mys   数据库备份   where   into   分表   ora   

原文地址:https://www.cnblogs.com/likui-bookHouse/p/12795995.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!