Hi,
Please can you assist me, I'm trying to execute some SQL to update 1 column to a constant value (50) in multiple rows in Table A based on an associated 'SOURCE' value in table B
Table A joins to Table B based on the TableA.definiti on_id = TableB.Att_Def_ id
like..
update TableA
set value =50
where
TableA.definiti on_id = TableB.Att_Def_ id
and TABLEB.Source = 'NEWPRODUCT'
Any help would be appreciated.
Thanks
Dave
Please can you assist me, I'm trying to execute some SQL to update 1 column to a constant value (50) in multiple rows in Table A based on an associated 'SOURCE' value in table B
Table A joins to Table B based on the TableA.definiti on_id = TableB.Att_Def_ id
like..
update TableA
set value =50
where
TableA.definiti on_id = TableB.Att_Def_ id
and TABLEB.Source = 'NEWPRODUCT'
Any help would be appreciated.
Thanks
Dave
Comment