Home » MYSQL » Mysql miscellaneous » Question
  1. What will be the output of the following query?
    SELECT stu_id, first_name, last_name
    FROM student
    WHERE LEFT (last_name, 1) =’T’;
    1. Only those student are selected whose last name started with other than ‘T’
    2. Only those student are selected
    3. Only those student are selected whose last name started with ‘T’
    4. All of above
    5. None of these
Correct Option: C

Only those student are selected whose last name started with ‘T’



Your comments will be displayed only after manual approval.