Computer Science, asked by Nabinbhatt, 2 months ago

Explain the steps and functions required to update records to a database table with appropriate example.

Answers

Answered by kingslint
2

Answer:

To update data in a table, you need to: First, specify the table name that you want to change data in the UPDATE clause. Second, assign a new value for the column that you want to update. In case you want to update data in multiple columns, each column = value pair is separated by a comma (,).

Explanation:

Similar questions