Jump to content

[SOLVED] Is it possible to create an extra field during a select query


derrick24

Recommended Posts

Hi, is it possible to create an extra field during a select query and set the values of that field. ie: fakeField does not exist in the database, but I need it to be part of the returned array for manipulation in php

 

SELECT table.*, table.fakeField=10 FROM table

 

thanks

IF I could do the as posted above, I would not have to write something like below.

 

if(count($newArray) > 0)

{

// Combine products with number or orders

foreach($newArray as $key => $value)

{

foreach($array as $subKey => $subValue)

{

if ($newArray[$key]['id'] == $subKey)

{

$newArray[$key]['amount'] = $subValue;

}

}

}

return $newArray;

}

Hi, is it possible to create an extra field during a select query and set the values of that field. ie: fakeField does not exist in the database, but I need it to be part of the returned array for manipulation in php

 

SELECT table.*, table.fakeField=10 FROM table

 

thanks

 

Sure... use this:

 

SELECT table.*, '10' as fakeField FROM table

 

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.