Final answer:
Query results are sorted in ascending order based upon the column specified in the ORDER BY clause.
Step-by-step explanation:
By default, query results are sorted in ascending order based upon the column specified in the ORDER BY clause. This means that the results will be arranged in the order from smallest to largest, or from A to Z, depending on the data type of the column being sorted.
For example, if you have a column named 'age' and you use the ORDER BY clause to sort the results by 'age', the query will return the rows in increasing order of age.