How can we modify column/s of MySQL table?
Answers
Answered by
0
The syntax to drop a column in a table in MySQL (using the ALTER TABLE statement) is: ALTER TABLE table_name DROP COLUMN column_name; table_name. The name of the table to modify .
Similar questions