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
|
788 Discussions
|
Please Login in order to post a comment
select name from employee order by substr(name,1) ;
SELECT name from Employee ORDER BY name;
SELECT Name FROM EMPLOYEE ORDER BY NAME;
ngoccth_SQL SERVER: SELECT [name] FROM Employee ORDER BY name
select name from employee order by name asc