I have created a mysql table with the following columns...
item_price, discount, delivery_charge, grand_total
The value of item_price
, discount
, and delivery_charge
all vary depending on the item under consideration, and these would be filled into the table manually.
I would like to have mysql populate the value in the grand_total
column based on the values of item_price
, discount
, and delivery_charge
, using the formula below...
grand_total = item_price - discount + delivery_charge
Can I somehow specify a formula for this column while creating the table structure in mysql? I know this can be done using php, but I prefer the database doing this for me automatically, if possible.