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
|
821 Discussions
|
Please Login in order to post a comment
SELECT NAME FROM EMPLOYEE ORDER BY NAME ASC;
MySQL solution: SELECT name FROM Employee ORDER BY name ASC
SELECT Name FROM Employee order by Name;
psql mysql sql
select name from Employee order by name asc;