Results 1 to 10 of 10

Thread: insert into

Hybrid View

  1. #1
    Join Date
    Jul 2011
    Posts
    8
    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);

  2. #2
    Join Date
    Apr 2011
    Location
    Largo, FL.
    Posts
    79
    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.

Posting Permissions

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