We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- SQL
- Basic Select
- Employee Names
- Discussions
Employee Names
Employee Names
Sort by
recency
|
812 Discussions
|
Please Login in order to post a comment
Solution SELECT NAME FROM EMPLOYEE ORDER BY NAME;
A simple approach :
select name from employee order by name asc;
select name from employee order by name asc;
select name from employee order by name ;
SELECT NAME FROM EMPLOYEE ORDER BY 1;