MySQL Forums
Forum List  »  Newbie

combined Insert/Select statement
Posted by: Jeroen Vandezande
Date: June 06, 2005 04:13AM

Hi all,

This is probably a stupid question but I am new to SQL so...

I want to insert data into a table coming from another table but also from Parameters that are filled by my program.
So I know I can do something like this:

INSERT INTO tbl_temp2 (fld_id)
SELECT tbl_temp1.fld_order_id
FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100;

But combined with that I want also insert some data with paramaters...
Can that be done in one statement?
Do I have to do it in an update statement later on?

Best Regards,

Jeroen Vandezande

Options: ReplyQuote


Subject
Written By
Posted
combined Insert/Select statement
June 06, 2005 04:13AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.