How can we use MySQL ALTER TABLE command for adding comments on columns?
Answers
Answered by
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