Results 1 to 3 of 3

Thread: Stuck at lesson 5

Threaded View

  1. #1
    Join Date
    May 2005
    Posts
    2

    Stuck at lesson 5 (resolved)

    Hi, This is my first post to this forum.

    I haven't done much work with DBs and just started doing the http://sqlcourse.com/ online course.

    In lesson 4 you make a table.
    I did that without a problem.
    Here's my (masked) string

    Code:
    create table myemployees_jpXXX
    (first varchar(30),
     last varchar(30),
     title varchar(30)
     age number(3),
     salary number(8,2));
    In lesson 5 you start populating the table.

    No matter what I try, I get the error:
    "Error occured. Recheck your SQL statement"

    Here's my 1st Insert string:
    Code:
    insert into myemployees_jpXXX
      (first, last, title, age, salary)
      values ('Jonie', 'Weber', 'Secretary', 28, 19500.00);
    Can someone show me where the mistake is?
    Last edited by wolf182; 05-30-2005 at 09:26 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •