πŸ“Š MySQL
Q. What will be the output of the following MySQL statement?
SELECT emp_id, fname, lname
FROM employee
WHERE LEFT (lname, 1) =’F’;
  • (A) Only those employees are selected whose last name started with 'F'
  • (B) Only those employees are selected whose last name started with other than 'F'
  • (C) All of the mentioned
  • (D) None of the mentioned
πŸ’¬ Discuss
βœ… Correct Answer: (A) Only those employees are selected whose last name started with 'F'

Explanation: This MySQL statement is used to retrieve information about employees from a table called "employee".

Explanation by: Sandhya Thakur
This MySQL statement is used to retrieve information about employees from a table called "employee".

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
75
Total Visits
πŸ“½οΈ
12 mo ago
Published
πŸŽ–οΈ
Sandhya Thakur
Publisher
πŸ“ˆ
86%
Success Rate