我有三张桌子:
tbl_customers
tbl_users
tbl_reviews
我有一个应用程序,客户在其中为用户提交评论。我想要做的不是同一客户对同一用户进行多次评论。这就是我想做的。
SELECT
*
FROM
tbl_customers
WHERE
tbl_customer.CustomerID != tbl_review.CustomerID
AND tbl_user.UserID != tbl_reviews.UserID
- CustomerID 是 tbl_customer 的 p_id
- UserID 是 tbl_users 的 p_id。
- tbl_review 中两者的外键关系。
提前致谢。
如果需要更多信息,请告诉我。