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
|
886 Discussions
|
Please Login in order to post a comment
MySQL
This problem is a simple and effective way to practice basic SQL skills, especially selecting specific columns and sorting results alphabetically using ORDER BY. Exercises like this help build strong query foundations—just like clearly organized information on the KfcMenuAustralia Website makes it easier for users to find what they’re looking for.
SELECT name FROM Employee ORDER BY name;
SELECT NAME FROM EMPLOYEE ORDER BY (NAME) ASC;
SELECT Name FROM Employee ORDER BY Name ASC;
be careful write to employee rather than employeer