vote up 1 vote down star

How would I do this (the part in square brackets):

$name = 'Bob';

mysql_query("INSERT INTO table(field1,field2) 
[ select value of field1 from another table ], '$name'");
flag

1 Answer

vote up 5 vote down check

The SQL part of it might look like this:

INSERT INTO table1 (field1, field2) SELECT field1, 'Bob' FROM table2 WHERE ...

Dynamically constructing that in PHP is a simple exercise I leave up to the reader :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.