Jump to content

Need Help constructing an INSERT statement


vincej

Recommended Posts

Hi - On the face of it this should be easy but it's not working.  I have products with prices and quantities. Multiplying these gives ordervalue.  However, because there are large numbers of products / prices / quantities these have to be brought in as an array and then I cycle through them with a for loop. This works great. However, now I want to store the order value for each combination. This is where it is failing. 

 

Let me show you the working code and then the NOT working code:

 

This works - But I don't get any *changes*  to ordervalue that the customer may require:

 

$sql ="
INSERT INTO `confirmedorder` (customerid, Prodid, Prodname, pricelb,quantity,price, ordervalue)
VALUES ($customerid,$prodid[$i], '$prodname[$i]','$pricelb[$i]', $quantity[$i],$price[$i], $ordervalue[$i] )
";

$this->db->query($sql);

 

 

If the customer changes his quantities I want a revised ordervalue. This DOES NOT work - the query just fails:

 

$sql ="
INSERT INTO `confirmedorder` (customerid, Prodid, Prodname, pricelb,quantity,price, ordervalue)
VALUES ($customerid,$prodid[$i], '$prodname[$i]','$pricelb[$i]', $quantity[$i],$price[$i], $quantity[$i] * $price[$i] AS  'ordervalue' )
";
$this->db->query($sql); 

 

Can any one PLEASE shine some light how to do this correctly ?

 

Many Thanks !

Link to comment
Share on other sites

You can't use AS in your VALUES clause for an INSERT statement.

 

$sql ="
INSERT INTO `confirmedorder` (customerid, Prodid, Prodname, pricelb,quantity,price, ordervalue)
VALUES ($customerid,$prodid[$i], '$prodname[$i]','$pricelb[$i]', $quantity[$i],$price[$i], " . $quantity[$i] * $price[$i] . " )
";
$this->db->query($sql); 

 

~awjudd

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.