Order by index : Order By « Select Query « Oracle PL / SQL






Order by index

  

SQL>
SQL>
SQL>
SQL> create table t (
  2   item number,
  3   bin number,
  4   primary key (bin , item)
  5  );

Table created.

SQL>
SQL> insert into t values(2, 34353);

1 row created.

SQL> insert into t values(45,34353);

1 row created.

SQL> insert into t values(76,34353);

1 row created.

SQL> insert into t values(76,35667);

1 row created.

SQL> insert into t values(89,35667);

1 row created.

SQL>
SQL>
SQL> select * from t order by 1,2;

      ITEM        BIN
---------- ----------
         2      34353
        45      34353
        76      34353
        76      35667
        89      35667

5 rows selected.

SQL>
SQL> select bin, count(*), count(*)/cnt
  2  from ( select bin, count(distinct item) over () AS cnt
  3         from t
  4         where item in (2,45,76,89) )
  5  group by bin, cnt
  6  /

       BIN   COUNT(*) COUNT(*)/CNT
---------- ---------- ------------
     34353          3          .75
     35667          2           .5

2 rows selected.

SQL>
SQL>
SQL> drop table t;

Table dropped.

SQL>

   
    
  








Related examples in the same category

1.Ordering data in the SELECT statement ascending
2.Order two columns
3.Query a number type column with order by desc
4.ORDER BY clause with more than one column:by the first column, and within that column, orders by the second
5.Specify ascending or descending for each column
6.Ordering data in the SELECT statement descending
7.Order the results by the average salary
8.Query specific columns with order by clause
9.Use aggregate function in order by clause
10.Query the same column in where statement and order by clause
11.order by 3, 2, 1
12.Get order number by using rownum column
13.DESC for descending
14.ORDER BY with all logic operators
15.Order by date value then by number value
16.Order by columns from different tables
17.Order by job title ascending but birthday descending
18.Order by name and department number for salary higher than 1500
19.Order by price which is more than 50
20.Order by renamed column
21.Order by renamed column descendingly
22.Order by three columns
23.Order by, range unbounded preceding
24.Order date value by only year field with extract() function
25.Order for one column descendingly