if I have the following result sets:
id, name
1, The Popper
2, Brittany
3, Fledgler
4, The Nightingale
How do I sort them by name so that it disregards the "The" word and sorts the as follows:
id, name
1, Britanny
2, Fledler
3, The Nightingale
4, The Popper
Thanks in advance. I am using MySQL