Login
Remember
Register
Ask a Question
How to update a database table using SQL?
0
votes
asked
Jun 12, 2023
in
Sql
by
Robin
How to update a database table using SQL?
sql-database
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 12, 2023
by
Robin
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
...