Hi,
I want to add a value to an already existing data in the table. For ex:
Table A:
a b c
10 20 30
40 50 60
I want to add 50 to column a and column b so that the result looks like this:
Table A:
a b c
60 70 30
90 100 60
Can anyone tell me if i can acheive this using one sql statement in perl DBI.
Thanks
I want to add a value to an already existing data in the table. For ex:
Table A:
a b c
10 20 30
40 50 60
I want to add 50 to column a and column b so that the result looks like this:
Table A:
a b c
60 70 30
90 100 60
Can anyone tell me if i can acheive this using one sql statement in perl DBI.
Thanks