in reply to sorta sorting fun
This is with MS SQL. It should work on other SQL servers, though the functions may be different...select FName, LName, MName, Surname from TABLE order by substring(MName,1,1), substring(FName,2,1), substring(LName,datalength(LName),1)
...roboticus
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: sorta sorting fun
by softworkz (Monk) on Feb 08, 2008 at 16:41 UTC | |
by softworkz (Monk) on Feb 08, 2008 at 21:29 UTC |