| 219
2 | 219
2 | 114
3 | 219
выбрать только те id_user у которых id_product только 219?
То есть id_user с именем 2 сюда не попадёт т.к. ему кроме id_product 219 соответствует ещё и id_product 114.
Where exists + not exists вроде пойдёт
спасибо, попробую
select a.id_user from userproduct as a where a.id_product = 219 and not exists (select b.id_product from userproduct as b where b.id_user = a.id_user and not b.id_product = a.id_product)
большое спасибо, то что нужно
Обсуждают сегодня