Choose the best answer.
Examine the data in the PRODUCTS table:(含图)
Examine these queries:
1. SELECT prod_name, prod_list
FROM products
WHERE prod_list = ANY (10, 20) AND category_id = 1;
2. SELECT prod_name, prod_list
FROM products
WHERE prod_list IN (10, 20) AND category_id = 1;
3. SELECT prod_name, prod_list
FROM products
WHERE prod_list = ALL (10, 20) AND category_id = 1;
Which queries generate the same output?