Computer Science, asked by Rafel7917, 1 year ago

How can we modify column/s of MySQL table?

Answers

Answered by omegads04
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