I need to make an alphabetical listing of movie titles, so I need to show only items that begin with a chosen letter. To make this slightly more complicated, many titles start with "the" or "a", which needs to be ignored.
How would the mysql query look to achieve such a task?
I could simply have an extra column with the search letter stored for every title, since its quite easy to do with php, but Im hoping for a cleaner solution than that.