postgresql别名并在select中使用别名

时间:2018-05-06 06:58:53

标签: postgresql

我想做

SELECT column1 + column2 as add_of_two_columns
    , add_of_two_columns + column3 as another_add_of_two_columns 
FROM table1 
ORDER BY (add_of_two_columns * 2) / another_add_of_two_columns;

不幸的是,我的SELECT子句和我的ORDER子句中的错误都是列(我的别名)不存在。

我该如何做到这一点?

0 个答案:

没有答案