how to create new column and add tow coulmn in it code example
Example 1: Add a new column into table
ALTER TABLE table ADD [COLUMN] column_name;
Example 2: add new column in table
ALTER TABLE vendors
ADD COLUMN phone VARCHAR(15) AFTER name;
Code language: SQL (Structured Query Language) (sql)