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

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.