0 votes
in Sql by

How to update a database table using SQL?

1 Answer

0 votes
by
To update an existing Table we use SQL Command UPDATE: It will update the records as per user defined query/need.

Syntax:

Update TableName SET ColumnName = NewData where Condition

Update info Set City = 'Baroda' where id = 2
...