Results 1 to 2 of 2

Thread: SQL Course, Stuck at lesson 5 (Resolved)

Threaded View

  1. #1

    Thread Starter
    Frenzied Member longwolf's Avatar
    Join Date
    Oct 2002
    Posts
    1,343

    SQL Course, Stuck at lesson 5 (Resolved)

    I'm and just started doing an online SQL course at:
    http://sqlcourse.com/
    The site let's you interactively test SQL lines.
    They have a forum that I've posted to, but no-one seems to be 'home'

    In lesson 4 you make a table.
    I did that without a problem, and it showed me the table headers.
    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 this:
    "Error occured. Recheck your SQL statement"

    Here's my 1st Insertion string:

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

    Did I make a mistake?
    Or maybe their page isn't working right?
    Last edited by longwolf; May 30th, 2005 at 09:24 PM. Reason: Resolved

Posting Permissions

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



Click Here to Expand Forum to Full Width