Updating specific fields in SQL database

Use following instructions and if you don't want to change all records remember to include the where statement.

UPDATE table_name
SET column1=value, column2=value2,...
WHERE some_column=some_value

Leave a comment