程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> mysql仿oracle的decode效果查詢

mysql仿oracle的decode效果查詢

編輯:關於MYSQL數據庫

以下代碼在MYSQL中測試通過,MSSQL應該能跑通,未測試。
復制代碼 代碼如下:
#創建表如下
create temporary table tmp (a int, b int ,c int);
insert into tmp VALUES (1,10,1),(10,10,2),(10,100,2);
#mysql執行
select sum(case when c = '1' then A else B end) from tmp
#oracle執行
select sum(decode(c,'1',a,b)) from tmp
#普通聯合查詢
select sum(d) from
(
select a as d from tmp where c=1
union
select b as d from tmp where c=2
)

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved