76.3k views
18 votes
When a SQL query is written so as to display the results in a specific order, this order is determined by the _____.

1 Answer

12 votes
Not sure of the name but
You could use the following code as an example

SELECT *
FROM table
ORDER BY field1 ASC
User KeithP
by
5.3k points