⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 orderby.out

📁 derby database source code.good for you.
💻 OUT
📖 第 1 页 / 共 4 页
字号:
------------1         0          1          2          3          100        1000       ij> select * from test_number order by 1 - value;VALUE      -----------1000       100        3          2          1          0          -1         ij> select * from test_number order by 1 * value;VALUE      ------------1         0          1          2          3          100        1000       ij> select * from test_number where value <> 0 order by 6000 / value;VALUE      ------------1         1000       100        3          2          1          ij> select * from test_number order by -1 + value;VALUE      ------------1         0          1          2          3          100        1000       ij> select * from test_number order by -1 - value;VALUE      -----------1000       100        3          2          1          0          -1         ij> select * from test_number order by - 1 * value;VALUE      -----------1000       100        3          2          1          0          -1         ij> select * from test_number where value <> 0 order by - 6000 / value;VALUE      -----------1          2          3          100        1000       -1         ij> select * from test_number order by abs(value);VALUE      -----------0          1          -1         2          3          100        1000       ij> select * from test_number order by value desc;VALUE      -----------1000       100        3          2          1          0          -1         ij> select * from test_number order by value + 1 desc;VALUE      -----------1000       100        3          2          1          0          -1         ij> select * from test_number order by value - 1 desc;VALUE      -----------1000       100        3          2          1          0          -1         ij> select * from test_number order by value * 1 desc;VALUE      -----------1000       100        3          2          1          0          -1         ij> select * from test_number order by value / 1 desc;VALUE      -----------1000       100        3          2          1          0          -1         ij> select * from test_number order by 1 + value desc;VALUE      -----------1000       100        3          2          1          0          -1         ij> select * from test_number order by 1 - value desc;VALUE      ------------1         0          1          2          3          100        1000       ij> select * from test_number order by 1 * value desc;VALUE      -----------1000       100        3          2          1          0          -1         ij> select * from test_number where value <> 0 order by 6000 / value desc;VALUE      -----------1          2          3          100        1000       -1         ij> select * from test_number order by -1 + value desc;VALUE      -----------1000       100        3          2          1          0          -1         ij> select * from test_number order by -1 - value desc;VALUE      ------------1         0          1          2          3          100        1000       ij> select * from test_number order by - 1 * value desc;VALUE      ------------1         0          1          2          3          100        1000       ij> select * from test_number where value <> 0 order by - 6000 / value desc;VALUE      ------------1         1000       100        3          2          1          ij> select * from test_number order by abs(value) desc;VALUE      -----------1000       100        3          2          1          -1         0          ij> drop table test_number;0 rows inserted/updated/deletedij> create table test_number2(value1 integer,value2 integer);0 rows inserted/updated/deletedij> insert into test_number2(value1,value2) values(-2,2);1 row inserted/updated/deletedij> insert into test_number2(value1,value2) values(-1,2);1 row inserted/updated/deletedij> insert into test_number2(value1,value2) values(0,1);1 row inserted/updated/deletedij> insert into test_number2(value1,value2) values(0,2);1 row inserted/updated/deletedij> insert into test_number2(value1,value2) values(1,1);1 row inserted/updated/deletedij> insert into test_number2(value1,value2) values(2,1);1 row inserted/updated/deletedij> select * from test_number2 order by abs(value1),mod(value2,2);VALUE1     |VALUE2     -----------------------0          |2          0          |1          -1         |2          1          |1          -2         |2          2          |1          ij> drop table test_number2;0 rows inserted/updated/deletedij> -- error caseselect * from t order by d;ERROR 42X04: Column 'D' is either not in any table in the FROM list or appears within a join specification and is outside the scope of the join specification or appears in a HAVING clause and is not in the GROUP BY list. If this is a CREATE or ALTER TABLE  statement then 'D' is not a column in the target table.ij> select t.* from t order by d;ERROR 42X04: Column 'D' is either not in any table in the FROM list or appears within a join specification and is outside the scope of the join specification or appears in a HAVING clause and is not in the GROUP BY list. If this is a CREATE or ALTER TABLE  statement then 'D' is not a column in the target table.ij> select t.* from t order by t.d;ERROR 42X04: Column 'T.D' is either not in any table in the FROM list or appears within a join specification and is outside the scope of the join specification or appears in a HAVING clause and is not in the GROUP BY list. If this is a CREATE or ALTER TABLE  statement then 'T.D' is not a column in the target table.ij> select s.* from t s order by s.d;ERROR 42X04: Column 'S.D' is either not in any table in the FROM list or appears within a join specification and is outside the scope of the join specification or appears in a HAVING clause and is not in the GROUP BY list. If this is a CREATE or ALTER TABLE  statement then 'S.D' is not a column in the target table.ij> select *, d from t order by d;ERROR 42X01: Syntax error: Encountered "," at line 1, column 9.ij> select t.*, d from t order by d;ERROR 42X04: Column 'D' is either not in any table in the FROM list or appears within a join specification and is outside the scope of the join specification or appears in a HAVING clause and is not in the GROUP BY list. If this is a CREATE or ALTER TABLE  statement then 'D' is not a column in the target table.ij> select t.*, d from t order by t.d;ERROR 42X04: Column 'D' is either not in any table in the FROM list or appears within a join specification and is outside the scope of the join specification or appears in a HAVING clause and is not in the GROUP BY list. If this is a CREATE or ALTER TABLE  statement then 'D' is not a column in the target table.ij> select t.*, d from t order by app.t.d;ERROR 42X04: Column 'D' is either not in any table in the FROM list or appears within a join specification and is outside the scope of the join specification or appears in a HAVING clause and is not in the GROUP BY list. If this is a CREATE or ALTER TABLE  statement then 'D' is not a column in the target table.ij> select s.*, d from t s order by s.d;ERROR 42X04: Column 'D' is either not in any table in the FROM list or appears within a join specification and is outside the scope of the join specification or appears in a HAVING clause and is not in the GROUP BY list. If this is a CREATE or ALTER TABLE  statement then 'D' is not a column in the target table.ij> select t.*, t.d from t order by t.d;ERROR 42X04: Column 'T.D' is either not in any table in the FROM list or appears within a join specification and is outside the scope of the join specification or appears in a HAVING clause and is not in the GROUP BY list. If this is a CREATE or ALTER TABLE  statement then 'T.D' is not a column in the target table.ij> select s.*, s.d from t s order by s.d;ERROR 42X04: Column 'S.D' is either not in any table in the FROM list or appears within a join specification and is outside the scope of the join specification or appears in a HAVING clause and is not in the GROUP BY list. If this is a CREATE or ALTER TABLE  statement then 'S.D' is not a column in the target table.ij> select a, b, c from t order by d;ERROR 42X04: Column 'D' is either not in any table in the FROM list or appears within a join specification and is outside the scope of the join specification or appears in a HAVING clause and is not in the GROUP BY list. If this is a CREATE or ALTER TABLE  statement then 'D' is not a column in the target table.ij> select a from t order by d;ERROR 42X04: Column 'D' is either not in any table in the FROM list or appears within a join specification and is outside the scope of the join specification or appears in a HAVING clause and is not in the GROUP BY list. If this is a CREATE or ALTER TABLE  statement then 'D' is not a column in the target table.ij> select t.a from t order by t.d;ERROR 42X04: Column 'T.D' is either not in any table in the FROM list or appears within a join specification and is outside the scope of the join specification or appears in a HAVING clause and is not in the GROUP BY list. If this is a CREATE or ALTER TABLE  statement then 'T.D' is not a column in the target table.ij> select s.a from t s order by s.d;ERROR 42X04: Column 'S.D' is either not in any table in the FROM list or appears within a join specification and is outside the scope of the join specification or appears in a HAVING clause and is not in the GROUP BY list. If this is a CREATE or ALTER TABLE  statement then 'S.D' is not a column in the target table.ij> drop table t;0 rows inserted/updated/deletedij> -- test fof using table correlation names select * from (values (2),(1)) as t(x) order by t.x;X          -----------1          2          ij> create table ta(id int);0 rows inserted/updated/deletedij> create table tb(id int,c1 int,c2 int);0 rows inserted/updated/deletedij> insert into ta(id)  values(1);1 row inserted/updated/deletedij> insert into ta(id)  values(2);1 row inserted/updated/deletedij> insert into ta(id)  values(3);1 row inserted/updated/deletedij> insert into ta(id)  values(4);1 row inserted/updated/deletedij> insert into ta(id)  values(5);1 row inserted/updated/deletedij> insert into tb(id,c1,c2) values(1,5,3);1 row inserted/updated/deletedij> insert into tb(id,c1,c2) values(2,4,3);1 row inserted/updated/deletedij> insert into tb(id,c1,c2) values(3,4,2);1 row inserted/updated/deletedij> insert into tb(id,c1,c2) values(4,4,1);1 row inserted/updated/deletedij> insert into tb(id,c1,c2) values(5,4,2);1 row inserted/updated/deletedij> select t1.id,t2.c1 from ta as t1 join tb as t2 on t1.id = t2.id order by t2.c1,t2.c2,t1.id;ID         |C1         -----------------------4          |4          3          |4          5          |4          2          |4          1          |5          ij> drop table ta;0 rows inserted/updated/deletedij> drop table tb;0 rows inserted/updated/deletedij> 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -