UPDATE member_copy
SET locked_date = CURRENT_DATE,
notes = (
SELECT
notes
FROM
member_copy
WHERE
ID = 17579
) || ' CLOSED'
WHERE
ID = 17579
I am trying to run a database update just like this in PostgreSQL 8.1.23. I need to do this update with about 800 ids at the same time. Any help would be appreciated.