Is it possible to insert a new row in mysql, with just one value copied from the database, and the other values provided directly?
I want to be able to do something like this:
INSERT INTO table (col1,col2,col3) VALUES(val1,val2,(SELECT col3 FROM table WHERE col1=val11 AND col2=val22))
Any ideas?