我如何计算差异

发布于 2024-11-07 19:43:59 字数 197 浏览 0 评论 0原文

我有两列数据。我需要编写一个查询,仅显示超出信用额度的客户以及超出了多少:

customer balance         credit limit  
418.75                   500
10.75                    200
200.1                    100

I have data in two columns. I need to write a query that only shows the customers that have gone over their credit limit and by how much:

customer balance         credit limit  
418.75                   500
10.75                    200
200.1                    100

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我们只是彼此的过ke 2024-11-14 19:43:59

当然,这不会考虑客户信息,因为您没有提及任何客户表,但这应该可以让您获得客户余额和超额:

SELECT customer_balance, credit_limit, customer_balance - credit_limit as overage
FROM your_table
WHERE customer_balance > credit_limit

这非常简单;您选择余额超过限额的客户,然后只需选择差额作为第三列。

Of course this doesn't take customer information into account since you didn't mention any customer tables, but this should get you the customer balance and overage:

SELECT customer_balance, credit_limit, customer_balance - credit_limit as overage
FROM your_table
WHERE customer_balance > credit_limit

It's pretty straight-forward; you select customers with a balance over their limit, and just select the difference as a third column.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文