What does WHERE name LIKE ‘A%’ return?

SQL Data Analyst Easy

SQL Data Analyst — Easy

What does WHERE name LIKE ‘A%’ return?

Key points

  • The 'LIKE' operator with 'A%' specifies that the name must start with A.
  • This query does not include names that end with A or contain A elsewhere.
  • It specifically filters for names that begin with the specified letter.

Ready to go further?

Related questions