次の SQL クエリに基づいて生成されるドロップダウン リストがあります。
SELECT * FROM product WHERE
product.id NOT IN (SELECT customer_1.product_id FROM customer_1 WHERE (customer_1.product_id != '$x'))
AND product.id NOT IN (SELECT customer_2.product_id FROM customer_2 WHERE (customer_2.product_id != '$x'))
AND product.id NOT IN (SELECT customer_3.product_id FROM customer_3 WHERE (customer_3.product_id != '$x'));
ここで発生する問題は、実行時間です。このクエリ自体は、約 5.3 秒かかります。同じページに他の同様のクエリがいくつかあります。
私の質問は次のとおりです。同じ結果を達成するためのより良い、より速い方法はありますか?
前もって感謝します。