Mysql查询数据库中的表名/模糊查询

查询你想要的表名:
select  table_name,tablespace_name,status,temporary from user_tables where table_name like '%tab_name%';
tab_name 为要查表名的其中一部分。
如:你要查表名中有order的表名
select table_name,tablespace_name  from user_tables where table_name like '%order%';


原文链接:https://blog.csdn.net/qq_41797451/article/details/84301760

原文地址:https://www.cnblogs.com/T8888/p/14678027.html