I have two tables
Table 1 Table 2
‘column1’ ‘column3_column1’
‘column2’ ‘column4’
column 3 is foreign key related to column1 which is primary key of Table1
I want to change value of column4 based on the value given in the query of column2
Example of Select Query
select
t1.column2,
t2.column4
from Table2 t2
join Table1 t1 on t2.column3 = t1.column1 and column2 = '551996-0';