mysql查询表名是否存在和oracle查询表名是否存在

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查询表名是否存在

上一篇:Android SQLiteDatabase SQLiteSession SQLiteConnectionPool SQLiteConnection关系


下一篇:第一节 数据库脱出的一些常用方法