SELECT id,title,picture, 'A' AS module FROM A LIMIT 5
UNION
SELECT id,title,picture, 'B' AS module FROM B LIMIT 5
UNION
SELECT id,title,picture, 'C' AS module FROM C LIMIT 5
select goods "商品", case goods when 1 then price then price*1.2 when 2 then price*1.5 else 0 end
from talbe
缺點:程式碼可讀性差
select goods, price*1.2
from table where goods=1
union
select goods, price*1.5
from table where goods=2
union
select goods, 0
from table where goods not in (1, 2)
之前使用的例子,有多個資訊模組的數據,需要展示,每個模組表都有一個title,id,picture欄位。為減少多次的查詢SQL,使用union將這些表的資料合為一個結果集傳回。
比如說遇到一個項目,資料量超大,需要分錶,同樣的結構分了100多個表,那麼去查詢的時候需要這100個表中分別進行查詢並 union all 來獲取資料。
小技巧:
缺點:程式碼可讀性差
有時候利用union可以解決一些奇怪的判斷語句.例如將報表的合計一起回傳