order by asc低级错误

问题 : 查询EMP表,显示部门号为10的所有雇员的NAME 、JOB、SAL和 DEPTNO,并以工资升序进行排序。

14:30:24 SQL> select ename,job,sal,deptno from emp order by asc;
select ename,job,sal,deptno from emp order by asc
                                              *
第 1 行出现错误:

ORA-00936: 缺失表达式

错误原因:order by后面没有跟字段 也就是本题要求按照工资排序的 (⊙﹏⊙)b


修改后:
select ename,job,sal,deptno from emp order by sal desc;




你可能感兴趣的:(Oracle)