Computer Science, asked by priya20, 1 year ago

To insert a field in an existing table

Answers

Answered by kszychooo
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
Similar questions