πŸ“Š MySQL
Q. What does this query do?
Code:
SELECT name FROM students WHERE name LIKE 'A%';
  • (A) Selects students with names starting with A
  • (B) Selects students with names ending in A
  • (C) Selects students with names containing A
  • (D) Selects all students
πŸ’¬ Discuss
βœ… Correct Answer: (A) Selects students with names starting with A

Explanation: `'A%'` matches strings that start with 'A'.

Explanation by: Mr. Dubey
`'A%'` matches strings that start with 'A'.

πŸ’¬ Discussion


πŸ“Š Question Analytics

πŸ‘οΈ
66
Total Visits
πŸ“½οΈ
9 mo ago
Published
πŸŽ–οΈ
Mr. Dubey
Publisher
πŸ“ˆ
81%
Success Rate