如果这是重复的,我深表歉意,但是,我找不到我需要的答案。
考虑我的数据:
表 - report_detail
report_id |category |sub_category |report name
-------------------------------------------------------
1 |1 |1 |Donkey Report
2 |2 |2 |Grandma Report
3 |1 |1 |Poop Report
表 - report_subscriptions
user_id |report_id
--------------------------
1 |1
2 |2
1 |2
我的问题是,如何从report_detail 表中选择report_subscriptions 中未订阅user_id = 1 的所有report_id?
谢谢!