Here is the statement to add a column to a table.
ALTER TABLE SAMPLE_TABLE ADDÂ ANOTHER_DATE DATE;
Here is the statement to add multiple columns to a table.
ALTER TABLE SAMPLE_TABLE ADD (
ANOTHER_STRING VARCHAR2(100 CHAR),
ANOTHER_NUMBER NUMBER(32,12)
);