c# - How to sum two column & save in database -


i have table in database 3 columns, there's grid associated database, want sum first 2 columns , display total in third column , save total sum in database. how can that? if please provide me example.

you use following query show result

select first_column,second_column,first_column+second_column yourtable 

Comments