✏️ Explanatory Question

How to update a database table using SQL?

👁 450 Views
📘 Detailed Answer
No previous question
No next question
💡

Answer with Explanation

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

Update TableName SET ColumnName = NewData where Condition   
Update info Set City = 'Baroda' where id = 2
No previous question
No next question