gpt4 book ai didi

mysql - mysql中两列之间的区别

转载 作者:行者123 更新时间:2023-11-29 06:35:32 25 4
gpt4 key购买 nike

我有两列(creditdebited_amount),我想计算它们之间的差值。

只需要检索大于零的记录或者如果 debited_amount 字段为 Null。

如果值为零也没关系。

这是我试过的 SQL 查询。请帮忙

SELECT
`p_Id`,
`user_id`,
`doc_id`,
`credit`,
`app_date`,
`expires_on`,(credit - debited_amount) AS credit
FROM
`wp_loyalty_credits`
WHERE
`expires_on` > now();

最佳答案

您只需将逻辑添加到where 子句中:

SELECT `p_Id`,`user_id`,`doc_id`,`credit` ,`app_date`,`expires_on`,
(credit -debited_amount) AS credit
FROM `wp_loyalty_credits`
WHERE `expires_on`>now() and (credit > debited_amount or debited_amount is null);

您的查询在 select 中重新定义了 credit。但是,这无关紧要,因为您不能在 where 子句中引用列别名。因此,列 credit 就是它所使用的。如果加上表别名就更清楚了:

SELECT lc.p_Id, lc.user_id, lc.doc_id, lc.credit, lc.app_date, lc.expires_on,
(lc.credit - lc.debited_amount) AS credit
FROM `wp_loyalty_credits` lc
WHERE lc.expires_on > now() and
(lc.credit > lc.debited_amount or lc.debited_amount is null);

关于mysql - mysql中两列之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25077898/

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