Skip to content

I got error on column with identity(1,1)?

Sql developer gives an error of: ORA-00907: missing right parenthesis, for next table : create table customer ( CUSTOMER_ID number identity (1,1) not null, CUSTOMER_PHONE char(13) not null …

How to build sql query from two tables?

Members is a table of persons who are members of a club. Various details of each member are included in this table through various columns such as ID, name, address, email, etc. Now, any two members …