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
|
852 Discussions
|
Please Login in order to post a comment
Write a query that prints a list of employee names (i.e.: the name attribute) from the Employee table in alphabetical order.
MYSQL
SELECT name from Employee order by name ASC;
select name from employee order by name ASC;
select name from employee order by name asc;
Select Name From Employee Order by Name Asc