Multiple choice technology databases "select E_Name,E_Number from EMP order by 2" This Query is True False Reveal answer Fill a bubble to check yourself A Correct answer Explanation The ORDER BY clause can use column position numbers. 'ORDER BY 2' sorts by the second column in the SELECT list (E_Number). This is valid SQL syntax.