I am just starting out and I cannot seem to find out what I have done wrong with my coding. Yes, this is novice stuff, but I cant move forward. Any help would be much appreciated.

My coding for creating my table:

create table hireinfo22
(first varchar(20), last varchar(20), title varchar(20), age number(2), salary number(6,2))

(table seems to have appeared correctly with column names)

Then, my problem, is trying to insert in to the table.

My coding:

insert into hireinfo22
(first, last, title, age, salary)
values ('Jonie', 'Weber', 'Secretary', 28, 19500.00);

All that I get in response is a "." What I am doing wrong? I cant seem to figure out where the code is bad.

Thanks!