The UPDATE statement is used to modify the existing record in a table.
Syntax: UPDATE tableName SET columnName1 = value1, columnName2 = value2,…, columnNameN = valueN WHERE [condition]
Use where condition if you want to update a specific record otherwise all records will update.
No comments:
Post a Comment