Answer the question
In order to leave comments, you need to log in
How to formulate a query involving arrays?
The query is:
Select all records with columns PRODUCT ID, STORE ID and RESIDUE from the STOCK table where PRODUCT ID and STORE ID match the pairs from the array [ [1, 4], [2,10], [1,2], [5,1] ] .
How to formulate such a query in SQL?
Answer the question
In order to leave comments, you need to log in
SELECT city FROM user WHERE (firstName, lastName) IN (('a', 'b'), ('c', 'd'));
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question