What can another keyword be used instead of MODIFY to modify the column/s of MySQL table?
Answers
Answered by
0
"ALTER TABLE `table_name`" is the command that tells MySQL server to modify the table named `table_name`.
"ADD COLUMN `column_name` `data_type`" is the command that tells MySQL server to add a new column named `column_name` with data type `data_type'.
Similar questions