oracle常用語句

2021-07-24 19:39:48 字數 376 閱讀 1490

查詢登入使用者下的所有表 :

select * from user_tables;

兩張相同結構表,查詢不同資料(應用場景,臨時表定時獲取資料,總表有所有資料,臨時表增量往總表插入資料)

select *

from table_temp tp              --臨時表

where not exists (select *

from table_total ta     --主表

where tp.key1 = ta.key1  --主鍵關聯

and tp.key2 = ta.key2

and tp.key3 = ta.key3)

---這樣就會查詢出tp表中比ta表中多出來的資料

oracle 常用語句

oracle 產看表空間 select total.name tablespace name free space,total space free space used space,total space from select tablespace name,sum bytes 1024 102...

oracle常用語句

drop tablespace crm online space including contents and datafiles 刪除表空間 drop user wuliu01 cascade 刪除使用者 exp orcl file d dmp 匯出資料庫 imp orcl file e alen...

oracle 常用語句

oracle 常用語句 查詢表的大小 select t.owner,t.segment name,sum t.blocks 8 1024 m as s,t.segment type from dba segments t where t.owner user name group by t.owne...