我有两张桌子,一张是feestructure
,第二张是feedetails
feedetails
将feestructure
表 id 作为外键和一个amount
字段
所以我的问题是,当我在字段中输入重复的外键feedetails
和任何值时,应该计算amount
对应总和的重复 id 的数量,并且该总和应该显示在表中的字段中。 amount
amount
amount
feestructure
我在我的项目中使用 spring、hibernate 和 MySQL。
我不知道为什么当你可以从一个简单的查询中导出它时,你需要存储feedetails
a的总量。但是,如果您有理由这样做,您可以尝试使用 a来处理表中的插入过程。feestructure
GROUP
TRIGGER
feedetails
此链接可能有助于插入触发器之前