How can I get certain rows from a table in order? For Example I have the following rows:
EmpID Name
81 Albert
22 Ashley
71 John
42 Jack
55 Bob
Primary Key is EmpID. I want to get only: John, Albert, Bob IN ORDER. Result should be:
71 John
81 Albert
55 Bob
How can I do that using MySQL query? Thanks heaps !
Try this one, it use custom sort