I'm planning on building a mySQL table that requires a student's name which looks like this:
Last Name + Father's First Name Initials + First Name
Example:
Beavers L. Scott James (father has one first name, son has two first names)
Beavers L. D. Scott (father has two first names)
Instead of requiring to fill in 3 input fields, I only want one. But the question is, how do I sort it? I want to sort by "Last Name" first, then by "First Name" and then by the "Father's Initials". So two students with similar names would sort like so:
1. Beavers F. Christian
2. Beavers V. Scott James
3. Beavers L. Scott Paul
4. Beavers K. Sean
5. Beavers Q. Sean
Any ideas?