in reply to sorta sorting fun

That simply shows that they don't know SQL. There's no particular trick to it.
select FName, LName, MName, Surname from TABLE order by substring(MName,1,1), substring(FName,2,1), substring(LName,datalength(LName),1)
This is with MS SQL. It should work on other SQL servers, though the functions may be different...

...roboticus

Replies are listed 'Best First'.
Re^2: sorta sorting fun
by softworkz (Monk) on Feb 08, 2008 at 16:41 UTC
    ++Excellent help!! Thanks!! ++ for the example using MySQL