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中如何設定年月日,oracle 資料庫日期格式怎麼只要年月日
這個問題在專案中是一個很重要的細節,具體有兩種處理方式,主要取決於這個表是否需要進行資料交換,以及這個時間欄位如何使用,具體舉兩個例子吧 一 使用varchar2型 1 如果這張表對時間的精度要求不高,比如只是到日。2 該表需要經常與其他表進行資料互動,比較,查詢,並且其他表的時間精度不高於日 比如...
oracle如何建立使用者,Oracle如何建立使用者?
可按如下步驟建立使用者 1 開啟oracle第三方工具,如plsq,然後用一個具有dba許可權的使用者登入。2 然後開啟一個sql視窗。3 執行語句 create user 使用者名稱 identified by 密碼 其中使用者名稱需要為英文,密碼為數字或字母或英文符號或組合。4 執行完畢後,可按...
jquery中如何獲取textarea的值
可以使用val方法獲取textarea的值.val 方法主要用於獲取表單元素的值,比如 input,select 和 textarea。如果是select元素,當沒有選擇項被選中,它返回null 如果select元素有multiple 多選 屬性,並且至少一個選擇項被選中,val 方法返回一個陣列,...