Oracle 和 MySQL 在显示数据库名和表名的区别
Oracle 显示数据库名和表名
Oracle 查看表名:
select table_name from user_tables; select table_name from dba_tables; select * from all_all_tables;
Oracle 查看数据库名:
select * from v$database;
MySQL 显示数据库名和表名
MySQL 查看表名:
show tables;
MySQL 查看数据库名:
show databases;
温馨提示: 本文由Jm博客推荐,转载请保留链接: https://www.jmwww.net/SQL/12859.html