在這裏,我的表像這樣從另一列插入數據 「後觸發插入」
目的地:
|id_dest | price |
| 1 |2000 |
| 2 |100 |
| 3 |1000 |
項目:
|id_item | weight | id_dest |total(weight*destination.price) |
| 1 | 3 | 2 |
觸發應該
|id_item | weight | id_dest |sum(weight*destination.price) total |
| 1 | 3 | 2 |300
查詢如何觸發應該是?
爲什麼不使用生成的列? https://dev.mysql.com/doc/refman/5.7/en/create-table-generated-columns.html – Barmar
SO不是免費的編碼服務。你必須嘗試自己解決問題。如果無法正常工作,請發佈您嘗試的內容,我們會幫助您解決問題。 – Barmar
生成的列不起作用,因爲只能使用來自同一行的列。 –