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


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM