我想創建一個查詢,返回沒有收到offerIs的用戶ID。例如,我想向我的用戶提供productId 1019
,但我不想將產品提供給已經收到它的用戶。但下面的查詢不斷返回userId = 1054
,它應該只返回userId=3333
。我會感謝任何幫助。指導創建一個SQL查詢
用戶:
Id Status
-----------------
1054 Active
2222 Active
3333 Active
信息:
userId ProductId
--------------------
1054 1019
1054 1026
2222 1019
3333 1026
查詢
3210
只是爲了澄清。你的預期結果只有'3333',但你實際上同時得到'3333 1054'? – ryanyuyu 2015-04-03 19:56:56
ryanyuyu,謝謝你的回覆,是的,我只應得到3333 – Carlos 2015-04-03 20:00:36