gpt4 book ai didi

php - 在其他表上插入多行并进行条件检查..仅单个查询

转载 作者:行者123 更新时间:2023-11-29 19:26:10 25 4
gpt4 key购买 nike

表1:用户管理员

uid uname
1 abc
2 xyz
3 pqr
4 def

表2:交易主控

tid uid amount type
1 1 100 1
2 2 500 1
2 2 500 2
3 1 350 1
3 1 150 2

输入交易表:

1 for capital
2 for interest(5% of total capital)

现在,我想每月计算资本金额的利息和资本值(value)5%的广告利息。应传递查询:自动为拥有资金的用户在 transactionmaster 表中添加利息条目

transactionmaster 表中的结果应如下所示。

tid uid amount type
1 1 100 1
2 2 500 1
3 1 600 1
4 1 35 2
5 2 25 2

这里利息也自动计入5%。

最佳答案

要每月自动获取结果,您需要使用 MySQL 事件安排 SQL 查询。

这里是引用1) http://www.infotuts.com/schedule-sql-query-using-phpmyadmin-mysql-events/

从transactionmaster获取资金总和

select sum(amount) from transactionmaster where uid = 13 and type=1

现在计算利息

select sum(amount) * (5 / 100)  as interest from transactionmaster where uid=13 and type=1

简单!

关于php - 在其他表上插入多行并进行条件检查..仅单个查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42135914/

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