1.获得当前用户有权限的表的信息(ALL_TABLES ) (只要对某个表有任何权限,即可在此视图中看到表的相关信息) 表中各字段说明如下: 参考:https://www.iteye.com/blog/appleses-2280054 声明:此博客为个人学习之用,如与其他作品雷同,纯属巧合,转载请指明出处!
user_tables:TABLE_NAME,TABLESPACE_NAME,LAST_ANALYZED等 dba_tables:ower,table_name,tablespace_name,last_analyzed等 all_tables:ower,table_name,tablespace_name,last_analyzed等 all_objects:ower,object_name,subobject_name,object_id,created,last_ddl_time,timestamp,status等 2、获取表字段: user_tab_comm...
1、获取表: 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='用户名' ALL_OBJECTS describes all objects accessible to the current user. 描...
Oracle 中查看所有表和字段 获取表: 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='用户名'; // 当前用户的表...
就是ORACLE存放所有表信息的视图。ALL_TABLES ALL_TABLES describes the relational tables accessible to the current user. To gather statistics for this view, use the ANALYZE SQL statement.Related Views DBA_TABLES describes all relational tables in the database.USER_TABLES describes the ...
oracle 用户表、字段信息 1)dba_tab_columns/dba_tab_cols SELECT* FROMDba_Tab_Cols WHERETable_Name =Upper('test_table_01'); SELECT* FROMDba_Tab_Columns WHERETable_Name =Upper('test_table_01'); 1. 2. 3. 4. 5. 6. 7. 查询这两个视图需要dba权限,dba_tab_columns基于dba_tab_cols,比如...
all_tables:ower,table_name,tablespace_name,last_analyzed等 all_objects:ower,object_name,subobject_name,object_id,created,last_ddl_time,timestamp,status等 获取表字段 代码语言:javascript 复制 select*from user_tab_columns where Table_Name='用户表';select*from all_tab_columns where Table_Name='用...
select * from all_tab_columns --查询所有用户的表的列名等信息。 select * from [user]_tab_columns --查询本用户的表的列名等信息。 查询所有表名: select t.table_name from user_tables t; 查询所有字段名: select t.column_name from user_col_comments t; ...
1、用sql查表 查表的时候需要用到user_tables、all_tables,user_tables查出来的是该用户拥有的表,all_tables查出来的是所有用户的表。2、用sql查表的字段 查表的字段需要用到user_tab_columns、all_tab_columns,一样的前者只能查到该用户拥有的表,后者可以查询所有用户的表。3、其他 与上面类似...