-
What will be the output of the following query?
SELECT customerid, productid, availbalance
FROM account
WHERE availbalance BETWEEN 2000 AND 3000.
-
- Only those details will be shown whose available balance is less than 3000
- Only those details will be shown whose as available balance form 2000 to 3000
- Only those details will be shown whose available balance is more than 2000
- All of above
- None of these
Correct Option: B
Only those details will be shown whose as available balance form 2000 to 3000