0 votes
in Sql by
How do you add a column to a table?

1 Answer

0 votes
by

To add another column in the table, use the following command:

ALTER TABLE table_name ADD (column_name);

...