Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
1 つの MYSQL クエリだけで、買い手と売り手がお互いに購入したかどうかを確認するにはどうすればよいですか?
表:購入
purchase_id | seller | buyer 12 | 2 | 5 29 | 5 | 2
クエリが結果を返す場合 (ここではそうです)、特定の div がページに表示されます。
SELECT (COUNT(*) >= 2) AS Result FROM purchase a INNER JOIN purchase b ON a.seller = b.buyer AND a.buyer = b.seller WHERE (a.seller = 2 AND a.buyer = 5) OR (a.seller = 5 AND a.buyer = 2)
2と5を変数に置き換えるだけです。
2
5