TIL

240723 TIL (파이썬 Pandas)

승따리 2024. 7. 23. 21:48

SQL

 

SELECT CART_ID
from cart_products
where name in ('Milk','Yogurt')
group by cart_id
having count(distinct name) >= 2
order by cart_id asc