1. 程式人生 > 其它 >MySQL 學習4

MySQL 學習4

技術標籤:自學mysql

一、表的加減法

  1. 集合運算
    集合 在資料庫領域表示記錄的集合
    在標準sql中,分別對檢索結果使用 UNION, INTERSECT, EXCEPT (集合運算子)來將檢索結果進行並,交和差運算
  2. 表的加法–union
    求並集,合併和去重,union 等集合運算子通常都會除去重複的記錄.
sELECT  product_id,product_name,product_type,sale_price,purchase_price
  FROM product 
  where sale_price<800
  union
  SELECT  product_id,product_name,
product_type ,sale_price,purchase_price FROM product WHERE sale_price>1.5*purchase_price;

在這裡插入圖片描述
union all合併不去重