Sort retrieved rows with the ORDER BY clause ASC : ascending order, default DESC : descending order The ORDER BY clause comes last in the SELECT statement SELECT last_name,job_id,department_id,hire_date FROM employees ORDER BY hire_date; Syntax SELECT expr FROMtable [WHEREcondition(s)] [ORDER BY{column, expr, numeric_position} [ASC|DESC]};