vote up 4 vote down star
1

If this is possible, please provide a sample query or two so I can see how it would work. Both tables will be in the same database.

Thanks!

flag

53% accept rate

2 Answers

vote up 12 vote down check

Pseudo code:

insert into <target-table>
( <column-list> )
select <columns>
  from <source-table>
link|flag
vote up 1 vote down

INSERT...SELECT is the answer; see http://dev.mysql.com/doc/refman/5.1/en/insert-select.html.

For example:

INSERT INTO names
SELECT last_name, first_name
FROM people
link|flag

Your Answer

Get an OpenID
or

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