To insert a field in an existing table
Answers
Answered by
0
In order to change the structure of existing table you have to use ALTER TABLE in MySQL.
Example:
ALTER TABLE table_name ADD column_name column-definition
Example:
ALTER TABLE table_name ADD column_name column-definition
Similar questions