A customer is looking for bands that start with "The" (like "The Beatles", "The Rolling Stones", etc.). You need to search the artist catalog for matching names.
Write a SQL query to find all artists whose Name starts with the word 'The'. Return only the artist names.
| Column | Type |
|---|---|
| ArtistId | INTEGER (Primary Key) |
| Name | TEXT |
The LIKE operator uses wildcards: % matches any sequence of characters, _ matches any single character.
Ready to take your skills to the next level? Enroll in our comprehensive Data Analyst Career Track to master SQL, Python, Excel, and Power BI.
Run your code to see the result here.