I'm trying to match on band names in a DB by excluding 'The'
So a search for 'The Beatles' or 'Beatles' would both succeed.
This is too slow: select * from artists where artist_name LIKE '%beatles';
Better ways to do this? I'd like to avoid having an extra sorting/matching column with 'the' stripped out.
Thanks!