I have two tables:
`user1`
- full_name
- headline # this is empty
`user2`
- full_name
- headline # this has content
I want to insert the headline from user2 table into user1 table. This is what I have so far:
insert into user1 set headline = (select headline from user2 where headline=headline)
However, I get an error message from this saying the select returns more than one row. How would I correctly issue this insert statement?