πŸ“Š MySQL
Q. What will be the output of the following MySQL statement?
SELECT *
FROM employee
WHERE start_date BETWEEN ‘2007-01-01’ AND ‘2008-01-01’;
  • (A) All employees details between 2007 and 2008
  • (B) BALANCE TABLE
  • (C) All employees details from 2007 to 2008
  • (D) None of the mentioned
πŸ’¬ Discuss
βœ… Correct Answer: (A) All employees details between 2007 and 2008

Explanation: This MySQL statement uses the BETWEEN operator to filter data from the 'employee' table.

Explanation by: Rakesh Kumar
This MySQL statement uses the BETWEEN operator to filter data from the 'employee' table.

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
64
Total Visits
πŸ“½οΈ
12 mo ago
Published
πŸŽ–οΈ
Rakesh Kumar
Publisher
πŸ“ˆ
85%
Success Rate