Jump to content

SQL Query


suprsnipes

Recommended Posts

Hi,

 

I'm trying to perform the following SQL which is based on the following query that works fine;

 

SELECT * FROM `trades2` WHERE `type1` = 'b' AND `price`<=`price1`

 

What I am trying to do which I am stuck on is I want to label the result as an 's' and insert the result into another table where the column 'id' is the same, in saying that how do I allow for the 'id' column?

 

Basically I want to

INSERT INTO `day` (`class`)  VALUE ('s') in conjunction with the above SQL query...

 

But perhaps I need to include the id so they match, for example id=id

Link to comment
https://forums.phpfreaks.com/topic/159978-sql-query/
Share on other sites

Reading a bit i found an example similar to your request..

 

INSERT INTO `day` (`id`, `class`)  VALUE (SELECT `id`, `class`='S'  FROM `trades2` WHERE `type1` = 'b' AND `price`<=`price1`)

That's not valid... you mean

 

INSERT INTO `day` (`id`, `class`)  VALUE (SELECT `id`, 'S'  FROM `trades2` WHERE `type1` = 'b' AND `price`<=`price1`)

Link to comment
https://forums.phpfreaks.com/topic/159978-sql-query/#findComment-847740
Share on other sites

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.