Jump to content

How should I structure 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/62539-how-should-i-structure-code/
Share on other sites

Hi DeepakJ,

 

I hope I'm understanding you rightly... how about something like this:

<?php
UPDATE productid SET productid='$productid' WHERE invoicenum = '' LIMIT 1
?>

 

or

 

<?php
UPDATE productid SET productid='$productid' WHERE invoicenum != '' LIMIT 1
?>

 

Does that make any sense or help at all?

Iceman

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.