Home » MYSQL » Mysql miscellaneous » Question
  1. What will be the output of the following query?
    SELECT customerid, productid, availbalance
    FROM account
    WHERE availbalance BETWEEN 2000 AND 3000.
    1. Only those details will be shown whose available balance is less than 3000
    2. Only those details will be shown whose as available balance form 2000 to 3000
    3. Only those details will be shown whose available balance is more than 2000
    4. All of above
    5. None of these
Correct Option: B

Only those details will be shown whose as available balance form 2000 to 3000



Your comments will be displayed only after manual approval.