I am not sure what is wrong here, I have column 6 "Location varchar(50)" and as you can see in the VanWinkles table, column 6 is 'London', so why am I getting this error?
CREATE TABLE VanWinkleEmployee
(EmployeeID int,
Reservation varchar(50),
Checkin int,
Checkout int,
TotalDays int,
Location varchar(50),
Deposit int,
Rate int,
Discount int,
ExtraCharges int,
Reimbursement int
INSERT INTO VanWinkleEmployee VALUES
(104, null, null, null, 4, ‘London’, 20, 35, 15, null, null ),
(105, null, null, null, null, ‘London’, null, null, null, null, null )