Hi,

if you have 6 colums, you are inserting only 5 in table

INSERT INTO songs VALUES (' 1, blah', ' ***', ' 45', ' 2', ' ')
                         [1th       ] [2nd]   [3rd]  [4th] [5th]

i think that first apostrophe is shifted to left side
should be:
INSERT INTO songs VALUES (1, 'blah', ' ***', 45, 2, ' ');

hint: numeric fields don't required to be in apostrophes


   Michal Dvoracek                           [EMAIL PROTECTED]

   database, table, query



---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to