在OE中的order_items和product_information資料表中,查詢產品單價>產品平均定價的產品名稱。
說明:
SELECT product_name
FROM order_items
JOIN product_information
USING (product_id)
WHERE unit_price>(SELECT AVG(list_price)
FROM product_information);
在HR的employees帳戶中,查詢薪水高於IT_PROG部門所有人的姓名和薪水
說明:
SELECT last_name, salary
FROM employees
WHERE salary >ALL(SELECT distinct salary
FROM employees
WHERE job_id='IT_PROG');