Home » MYSQL » Mysql miscellaneous » Question
  1. What will be the result of the following query?
    WHERE TITLE=’teller’ OR start_date=’2008-02-02’
    1. The employee is something other than a teller but was employed prior to 2008
    2. The employee is a teller and was employed prior to 2008
    3. The employee is a teller and was employed after February 2, 2008
    4. All of above
    5. None of these
Correct Option: D

The operator “OR” will evaluate all result which satisfy either side of the query.



Your comments will be displayed only after manual approval.