1.

How To Add Column In Apache Tajo?

Answer»

To INSERT new COLUMN in the “STUDENTS” table, TYPE the following syntax -

Alter table ADD COLUMN

 alter table students add column grade text;

To insert new column in the “students” table, type the following syntax -

Alter table ADD COLUMN

 alter table students add column grade text;



Discussion

No Comment Found