I need to update a column using the update statement.
SELECT *
FROM tng_managedobject
WHERE severity <> 0
AND class_name like 'Plaza_VES_Junction_Box'
AND propagate_status <> 0
I need to update the propagate_status for all these classes to 0. How can I use the SQL update statement to do this?