I'm working on a MySQL db and I was just curious what type of query was
faster.

e.g.
I have this table1
id (auto# primary key) |  date| Name | address | email

I want to insert a new name into the DB.
Which method would be faster?
1.
INSERT INTO table1 VALUES(null,null,'Bryan',null,null);

2.
INSERT INTO table1( name ) VALUES('Bryan');

Thanks,
Bryan


---------------------------------------------------------------------
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