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