Hi there I need to create a Table that will allow me to input
using
insert into booking values(bookings.NEXTVAL,'Chung Gon','(08) 8983 1840','S',
'27-MAY-04',5,'Baby bassinet');
I've created the table below
Create Table booking
(Name CHAR(20),
Phone VARCHAR(20),
RoomType VARCHAR(2),
BookingDate Date,
NightsStaying VARCHAR(20),
REQUIREMENTS CHAR(20));
And when I use the Insert command I get to many values any suggestions on how to fix this? (Fairly new to SQL and Oracle)
Thx.