Computer Science, asked by ankitbaruah6800, 1 year ago

How can we use MySQL ALTER TABLE command for adding comments on columns?

Answers

Answered by omegads04
0

First, specify the table name after the ALTER TABLE clause.

Second, put the new column and its definition after the ADD COLUMN clause. ...

Third, MySQL allows to add the new column as the first column of the table by specifying the FIRST keyword .

Similar questions