Home / CSE MCQs / MySQL Database MCQs :: Discussion

Discussion :: MySQL Database MCQs

  1. What will be the output of the following query?

    SELECT emp_id, fname, lname
    FROM employee
    WHERE LEFT (fname, 1) ='F' OR LEFT (lname, 1) ='F';
  2. A.
    Only those employees are selected whose first name and last name started with 'F'
    B.
    Only those employees are selected whose first name started with 'F' but last name can be starts with any other letter
    C.
    Only those employees are selected whose first name and last name started with any other letter except 'F'
    D.
    None of the mentioned

    View Answer

    Workspace

    Answer : Option A

    Explanation :



Be The First To Comment