Consider the following table: TABLE1 val1 val2 val3…
Consider the following table: TABLE1 val1 val2 val3 3 129 10 2 391 30 12 89 30 5 129 20 90 12 10 12 10 20 What is the result of the query below? SELECT * FROM TABLE1 WHERE val2 BETWEEN (100, 400) AND val3 IN (10, 20)
Read Details