I need to update one column value in a specific row with the value of the same column in a different row.
I don't know the syntax for this, but my brain is thinking something like this (just to show what I need):
UPDATE temp_users SET notes = (SELECT notes FROM temp_users WHERE id = 1) WHERE id = 2