Home / CSE MCQs / MySQL Database MCQs :: Discussion

Discussion :: MySQL Database MCQs

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

    SELECT *
    FROM employee
    WHERE start_date BETWEEN '2007-01-01' AND '2008-01-01';

  2. A.
    All employees details between 2007 and 2008
    B.
    All employees details before 2008
    C.
    All employees details from 2007 to 2008
    D.
    None of the mentioned

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    "BETWEEN operator is used for upper “ upper limit.


Be The First To Comment