时间:2021-07-01 10:21:17 帮助过:21人阅读
查询你想要的表名:
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
Mysql查询数据库中的表名/模糊查询
标签:csdn status tables bsp sele 查询 name tps 模糊查询