sql values that contains certain multiple ids

Solutions on MaxInterview for sql values that contains certain multiple ids by the best coders in the world

showing results for - "sql values that contains certain multiple ids"
Valentín
09 Mar 2018
1SELECT i.Container
2FROM Inventory i
3WHERE i.Sku in (S1, S2)
4GROUP BY i.Container
5HAVING COUNT(DISTINCT i.Sku)=2
6
similar questions