ORACLE中如何獲取SUM

時間 2021-08-11 17:04:12

1樓:

select

(select sum(value) from a where type=1)+

(select sum(value) from b where type=1) as total

from dual;

2樓:匿名使用者

將2個表的結果集合起來(union all),再對結果集統計,其他還有很多方法

select sum(k.value) from (select type,value from a where type=1

union all

select type,value from b where type=1

) k沒有時,就分組,看看效果

select type, sum(k.value) from (select type,value from aunion all

select type,value from b) k group by k.type

3樓:匿名使用者

select sum(value) from

(select * from a where type=1 union all select * from b where type=1)

你試試看上面的sql

如何獲取oracle資料庫中sql語句的執行時間

rs s.executequery sql 到這一句,根本沒有fetch資料。整個時間應該是,到迴圈取完結果集為止。 杜爺1號 通過oracle執行計畫可以看到sql的執行時間。explain plan for select from table select from table dbms xpl...

如何獲取Oracle的當前負載情況

查詢sql語句如下 select from select a.instance number,a.snap id,b.begin interval time 0 begin time,b.end interval time 0 end time,round value lag value,1 0 o...

如何找回Oracle中system,sys使用者的密碼

千鋒教育 sys 口令是在存放在口令檔案中的,一般在資料庫伺服器上採用作業系統驗證。sys口令遺忘可以採用 手工重建口令檔案方式。重建命令 orapwd file oracle home dbs orapw.ora passwd 比如oracle sid 是orcl,想設定sys口令 oracle ...