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
https://forums.phpfreaks.com/topic/62541-how-should-i-structure-this-code/
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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.