SQL Alphabetical Sorting Without "The"
Hey Lazyweb, is there some clever pattern that addresses passing an ‘order by’ to a database and getting an alphabetically sorted list where “the” doesn’t factor into the sort?
Look at this gigantic list of bands. It’s annoying to have to remember that “The” screws everything up.
Do I create a field “name_without_the” and select * from bands order by name_without_the? I’m assuming this is a common alpha-issue that’s been solved millions of times, but I can’t find a best-practice suggestion via two minutes of Googling.
Please suggest clever ways to do this without sorting in-memory or some junk like that. Let’s keep it in the database folks.

Pingback: Alphabetical Sorting SQL Without “The” - Push cx