当前位置: 代码迷 >> Oracle开发 >> order by 1,2这个是什么意思,该如何解决
  详细解决方案

order by 1,2这个是什么意思,该如何解决

热度:22   发布时间:2016-04-24 07:55:04.0
order by 1,2这个是什么意思
select   owner,table_name,tablespace_name,blocks,last_analyzed
from   all_tables   order   by   1,2;
想问问这个是什么意思??
order   by   1,2

------解决方案--------------------
根据第一列和第二列排序
相当于
order by owner,table_name

------解决方案--------------------
就是order by owner,table_name
  相关解决方案