+ 2
How to update 2 records in SQL. Having different values
I want to update two different cells in table.
2 Respuestas
+ 1
Good answer Kostas
0
UPDATE your_table
SET your_column=your_NEW_value
WHERE condition (e.g. ID=10)
This is the basic syntax
I want to update two different cells in table.