sql - ORA-00907: Missing right parenthesis -


i have code (for example)

 create table s(     id int,     y int not null unqiue,     x int not null,     z varchar(50) not null,     k varchar(50),     l varchar(50) not null,     m int not null,     v int not null,     c int not null,     r varchar(400),     constraint s_pk primary key (id)); 

but ora-00907: missing right parenthesis. made wrong?

create table s(     id int,     y int not null unique,     x int not null,     z varchar(50) not null,     k varchar(50),     l varchar(50) not null,     m int not null,     v int not null,     c int not null,     r varchar(400),     constraint s_pk primary key (id)); 

Comments

Popular posts from this blog

Hatching array of circles in AutoCAD using c# -

ios - UITEXTFIELD InputView Uipicker not working in swift -

Python Pig Latin Translator -