Computer Science, asked by rockgirijesh4777, 1 year ago

What is the purpose of ALTER TABLE command in MySQL? How is it different from UPDATE command?

Answers

Answered by shreyashi99
4

Alter table changes the structure of table in database. It is used to change/add a column defination.

But update command only updates the data row in the table as per the conditions specified in where clause.

Similar questions