Invalid identifier when creating table
PATIENT
create table Patient
(patientid char(5) not null,
fname varchar(30) not null,
lname varchar(30) not null,
age number(3) not null,
phone_no number(11) not null,
primary key(patientid)
);
PATIENT
create table Patient
(patientid char(5) not null,
fname varchar(30) not null,
lname varchar(30) not null,
age number(3) not null,
phone_no number(11) not null,
primary key(patientid)
);