order by子句
select [distinct] from table [order by ]
·order by
子句在整個
select
語句中,始終位於最後
·order by
後面可以接列名,列的別名,表示式,列出現在
select
關鍵字後列的序號
·order by
後面可以跟多列,表示先按第一列排序,如果第一列有相同的值,再按照第二列排序,如果前兩列均相同,則按照第三列排序。
·asc
表示公升序排列,可以省略。
desc
表示降序排列
按照salary * 12
這列的值來排序
select last_name, salary * 12
from s_emp
order by 2;
效果等同於:
按照salary * 12
這列的值來排序
Oracle入門必會(5)
81.內連線inner join?select a.from bsempms a,bsdptms b where a.dpt no b.dpt no 82.如何外連線?select a.from bsempms a,bsdptms b where a.dpt no b.dpt no select a...
學習zigbee入門 5
if defined soft start if readcoordinatorjumper zgdevicelogicaltype zg devicetype coordinator else zgdevicelogicaltype zg devicetype router endif soft ...
oracle學習筆記5
oracle中的transaction 在sqlplus中執行update insert delete等 只要不進行commit,事務都不會結束 除非遇到ddl dcl語句 事務會自動提交 當正常斷開連線的時候 事務自動提交 當非正常斷開的時候 事務自動回滾 建立表create table stu ...