The following commands used for adding new column and inserting values to the table.

1. For adding column to the table

ALTER TABLE emp
ADD ( EMP_NAME VARCHAR(30));

2. For inserting data into table

INSERT INTO emp(NAME)
VALUES ('VINAYAKA')

Regards

Nehru Mosuru