hammertounge
Programmer
I have tried the following code and it seems to only sork for one record.
update table_1 set table_1.value1 = table_2.value2 where table_1.ID_1 = table_2.ID_2
update table_1 set table_1.value1 = table_2.value2 where table_1.ID_1 in (select ID_2 from table_2)
The queries above do not seem to work. Does anyone have any ideas
It should be noted that these tables are fairly large, table_1 has over 1 million records and table_2 has about 50,000 records.
Thanks in advance.
update table_1 set table_1.value1 = table_2.value2 where table_1.ID_1 = table_2.ID_2
update table_1 set table_1.value1 = table_2.value2 where table_1.ID_1 in (select ID_2 from table_2)
The queries above do not seem to work. Does anyone have any ideas
Thanks in advance.