F Pair the equivalent SQL statements (that give the same output) from the following:
i. SELECT * FROM club WHERE salary between 20000 and 30000;
ii. SELECT * FROM club WHERE salary IN (20000, 30000);
j. SELECT * FROM club WHERE salary >= 20000 and salary <=30000;
iv. SELECT * FROM club WHERE salary = 20000 OR salary = 30000;
Answers
Answered by
2
Answer:I think first and third give the same output
hope it helps accept my friend request!!
Explanation:
Similar questions