MySQL Copying row from table to table, using PHP at same time -


i know can this:

insert anothertable (a, b, c, d) select a, b, c, d sometable somecolumn = 1 

but if instead of select a, b, c, d need update columns a, b, c, "string"

so put plainly want statement says:

insert anothertable (a, b, c, d) select a, b sometable somecolumn = 1 // , put  "string" d 

update

so ran this:

insert anothertable (a, b, c, d) select a, b, c, 'string' sometable somecolumn = 1 

it selected 3 rows different entries in 'c' column , updates 'anothertable' inserting 3 rows exact same. should different values though...

insert anothertable (a, b, c, d) select a, b,"some vale","somevalue2" sometable somecolumn = 1 

Popular posts from this blog

Php - Delimiter must not be alphanumeric or backslash -

c# - How to change the "Applies To" field under folder auditing options programatically (.NET) -

c++ - Ambiguity when using boost::assign::list_of to construct a std::vector -