'Error while creating database table with auto increment [closed]

I want to make auto increment here with the table creation but it gives an error. The database is an oracle database. The SQL is shown below.

CREATE TABLE Continents 
    ( 
      ConId   INT GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1) PRIMARY KEY, 
      Continent VARCHAR(25),
    );


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source