|
|
ORDER BYThe ORDER BY Clause puts your recordset in a specific orderSELECT * FROM People ORDER BY LName The SQL Statement above will retrieve ALL fields: SELECT * From the table named People: FROM People With LName in alphabetical order: ORDER BY LName If this is the original table
Your recordset returned would be this:
| ||||||||||||||||||||||||||||||