gpt4 book ai didi

sql - 在另一列中使用列别名

转载 作者:行者123 更新时间:2023-12-05 02:11:45 25 4
gpt4 key购买 nike

我想使用别名列作为 select 子句中的另一列。

select col_1/col_2+col_3 as new_col,
new_col+10 as new_col_2
from table

最佳答案

您可以使用子查询来实现:

select new_col, new_col + 10 as new_col_2
from (
select col_1 / col_2 + col_3 as new_col
from table
) t

关于sql - 在另一列中使用列别名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56964460/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com