Hi,
I have a query. Is there possibility of we convert our create table statements which we write in our normal SQL into .HDBTABLE aprt from writing it manually.
We have below statements.
CREATE COLUMN TABLE "SYSTEM"."TABLE10" (
"FIELD1" VARCHAR(128),
"FIELD2" VARCHAR(64),
"FIELD3" VARCHAR(128))
ALTER TABLE "SYSTEM"."TABLE10" ADD ("FIELD4_DATE" date default current_date );
I want these to be done in normal .HDBTABLE statement.
Br
Sumeet