I have made a Database development in eclipse and i have made the connection and it's working fine.
But when i try a basic query, i'm getting this ORA-00907: missing right parenthesis error.
Here's my simple query;
CREATE TABLE app.posts (
post_id INTEGER PRIMARY KEY GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1),
postname VARCHAR(50),
comments VARCHAR(512) NOT NULL
);
I don't know what's exactly missing here. Someone please help. !!