Jump to content

How should I structure this code?


DeepakJ

Recommended Posts

Ok so I want to create an update in this table

 

productid invoicenum

xxx        yyy

xxy        yyz

 

But I want to change the productid from ""(initially entered before in teh script) to the actual key with this table.

There can be multiple invoice num in this table. How can I make a SQL instruction that will only update the FIRST "" string available. UPDATE productid SET productid='$productid' WHERE invoicenum=$invoicenum changes all the null strings at the particular invoice num.

 

Help would be greatly appreciated.

Link to comment
Share on other sites

What exactly are those fields? Is one of them your auto_increment?

As for only updating the first, you can use a LIMIT statement to confine your result to only one (or no) row. Ex:

$q="update `table` set `product_id`='$product_id' where `invoice_id`='$invoice_id' limit 0, 1";

I changed a couple of names there, just for the hell of it, also. Be sure that the variables you're putting in you MySQL query are formatted or restricted so that somebody can't make an injection attack against you.

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.