The following example produces a list of employees, sorted by years of work experience. Note that the ORDER BY sort column, yrs_exp, is also specified in the select list of the statement.
SELECT name, jobtitle, yrs_exp FROM employee ORDER BY yrsexp;