mysql – 在SELECT中重用别名

前端之家收集整理的这篇文章主要介绍了mysql – 在SELECT中重用别名前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想要做的是添加另一个计算的列(cr – dr)

看到你不能在SELECT子句中重用别名,你会怎么去计算总计

    SELECT SUM(b.bet_win * cy.fx_rate )as dr,SUM(b.bet_loss * cy.fx_rate ) as cr,cr+dr as total
    FROM ....
    WHERE ....
最佳答案
sql Server或Oracle中,我使用CTE,但由于您使用的是MysqL,因此您将使用子查询

SELECT dr,cr,cr + dr as total 
FROM (
    SELECT 
         SUM(b.bet_win * cy.fx_rate ) as dr,SUM(b.bet_loss * cy.fx_rate ) as cr
    FROM ....
    WHERE ....) t;
原文链接:https://www.f2er.com/mysql/434082.html

猜你在找的MySQL相关文章