mysql某個字段自動為另兩個字段相加的值?
如果剛開始里面就有數據,需要update table set c=a+b然后可以 創建個觸發器不過這里又有個問題,就是你之后a或者b字段 是插入呢還是更新呢每種情況都要建立一個觸發器舉例 更新acreate trigger xxx after update on tablefor each rowupdate table set c=a+b這樣就實現你的功能了插入表的create trigger xxx after insert on tablefor each rowupdate table set c=a+b