首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

Oracle里查看全部表的SQL

2012-08-24 
Oracle里查看所有表的SQLselect?? table_name?? from?? user_tables???? //当前用户的表?? ??? select??

Oracle里查看所有表的SQL

select?? table_name?? from?? user_tables;???? //当前用户的表??
???
select?? table_name?? from?? all_tables;???? //所有用户的表??
???
select?? table_name?? from?? dba_tables;?????? //包括系统表

select?? table_name?? from?? dba_tables?? where?? owner='用户名'

热点排行