62.
What will be the output of the following MySQL statement?
SELECT customer_id, product_id, avail_balance
FROM account
WHERE avail_balance BETWEEN 3000 AND 5000.

67.
What will be the output of the following SQL statement?
SELECT person_id, fname, lname
FROM person
WHERE person_id=1;

68.
The following MySQL statement belongs to which "Condition Types"?
SELECT emp_id, fname, lname
FROM account
WHERE start_date<’2007-10-08’;