Tried searching previous posts but to no avail.
Is it possible to use the Order By clause to sort by more than one field? If so, what is the syntax for this?
The simplest example that gets my point across:
Thanks for your time.
Is it possible to use the Order By clause to sort by more than one field? If so, what is the syntax for this?
The simplest example that gets my point across:
Code:
SELECT * FROM [Customers]
[i]ORDER BY [Last Name], [First Name][/i]
Thanks for your time.