I have 2 tables I would like to update one column in table 1 with values from table 2 where id=id. However table 2 has many rows matching table 1 and all rows of table 2 would need to be updated to 1 row in table 1
Table_A
id | all_names |
---+-----------------+
1 |AB CD FG HI |
2 | |
** Table_B **
id | name |
---+-------+
1 | |
2 | Jon |
2 | Mike |
After the update Table 1 should look like
id | all_names |
---+-----------------+
1 |AB CD FG HI |
2 |Jon Mike |
I tried
update a
set a.all_names = TRIM(a.all_names) + b.name + ' '
from table_a a, table_b b
where a.id = b.id
All I end up getting is an empty all_names in table_a
Any idea?
What I ended up doing
This uses the least of lines and is elegant