oracle中查询表名是否存在
select table_name from user_tables where table_name=‘B_IN_DETAIL‘;
mysql中查询表名是否存在
select table_name from information_schema.`TABLES` where table_name = ‘b_in‘
mysql查询表名是否存在和oracle查询表名是否存在
原文:https://www.cnblogs.com/zwh0910/p/15169758.html