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中如何建立dblink
建立dblink一般有兩種方式,不過在建立dblink之前使用者必須有建立dblink的許可權。想知道有關dblink的許可權,以sys使用者登入到本地資料庫 select from user sys privs t where t.privilege like upper link 1 sys c...
Oracle模糊查詢中作用,oracle 模糊查詢問題
如 abc 表示以abc結尾的所有字串 abc 表示以abc 開頭的所有字串 abc 表示所有包含abc的字串 不考慮其所在位子 萬用字元 例子資料123 145 245 345 435 25 452 52如果查2 會查出245 25 如果查 2 會查出452 52 如果查 2 會查出123 245...
如何獲取網頁中的css
開啟 然後ctrl s儲存,有個資料夾,裡面就有css檔案 檢視本頁源 把css樣式地址複製下來 基本都是 template global.css 在地址輸入框例如 後面加上.template global.css即http zhidao.baidu.css 這個是參考別複製貼上 在網頁中如何新增c...