Jump to content

[SOLVED] Does field order matter???


jwwceo

Recommended Posts

I jsut posted a few minutes ago with a syntax error was getting. Now, when I insert the query, it works, but only about 2/3rds of my fields insert. The others don't. Does the order that I list the fields in my INSERT query, have to be same as the field order in the database??

 

This is seriously all I can think of. The data looks identical, but some is being inserted and some isn't. The last 1/3 just stays blank.

 

JW

Link to comment
Share on other sites

You want to make sure you define what columns they go in and not the order they appear.

 

So always specify

 

INSERT INTO table (column1, column2, column3) VALUES ('$data1', '$data2', '$data3');

 

This will insert $data1 into column1, and so on.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.