products (products_id, name, type)
orderform (orderform_id, product_id, country_id, price)
我想获取某个 country_id 的订单表中不存在的所有产品。
以下是不正确的,我知道有更快的方法,速度并不是真正的问题,只是获得正确的结果集。
SELECT * FROM products p
left JOIN orderform o ON o.product_id = p.product_id
WHERe o.product_id is NULL AND o.jur_id = 10
谢谢男生女生