Quote Originally Posted by myallsql_01 View Post
creat table myemployees_01
(firstname,lastname,title,age,salary);

then

insert into
myemployees_01
(firstname,lastname,title,age,salary)
values('john','smith','programmer',28,5800.00);
Try it without the ; semi colons AND be sure and spell CREATE correctly.