|
#275. Evaluate these two SQL statements: SELECT last_name, salary, hire_dateFROM EMPLOYEES ORDER BY salary DESC; SELECT last_name, salary, hire_dateFROM EMPLOYEES ORDER BY 2 DESC;
What is true about them?
Show comments for this question (1)
Add comments
Link to this question
|