Oracle 一些工具語句

2021-06-22 03:40:55 字數 505 閱讀 6300

待續...

select * from user_tables  -- select current user's owned tables

select * from all_tables  -- -- select current user's can be visited tables

select * from v$version; -- select current version

select * from product_component_version; -- select current version

select user from dual;  -- 檢視當前登陸的使用者名稱:

select * from user_users; -- 檢視當前登陸的使用者名稱:

select * from user_role_privs; -- 檢視當前使用者擁有的角色和許可權:

select * from session_privs; -- 檢視當前使用者擁有的角色和許可權:

ORACLE 一些操作語句

查詢表的外來鍵 包括名稱,引用表的表名和對應的鍵名,下面是分成多步查詢 select from user constraints c where c.constraint type r and c.table name 要查詢的表 查詢外來鍵約束的列名 select from user cons c...

Oracle 最基礎的一些語句

oracle中如何顯示當前的所有使用者表 顯示某使用者所有表 例如scott,必須大寫 select table name from all tables where owner scott 顯示當前的所有使用者表 select from user tables 顯示當前資料庫的所有表 select...

Oracle一些DML語句簡例

1.資料型別 varchar2,char,number,date,timestamp 2.建表create table stuinfo sid number primary key,sanme varchar2 20 not null,score number 5,2 五位小數,小數點後兩位 bir...