RE: Copying rows based on query result to another table?

2004-09-15 Thread Eve Atley
(r.Section_Value) AGAINST ('+BAAN' IN BOOLEAN MODE) AND c.Candidate_ID = r.Candidate_ID -Original Message- From: Peter Lovatt [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 14, 2004 1:29 PM To: [EMAIL PROTECTED]; Mysql Subject: RE: Copying rows based on query result to another table

RE: Copying rows based on query result to another table?

2004-09-14 Thread Peter Lovatt
try INSERT INTO other_table ( field1, field2, etc) SELECT SQL_CALC_FOUND_ROWS * FROM wow.resume r INNER JOIN wow.candidate c WHERE r.Section_ID = '1' AND MATCH (r.Section_Value) AGAINST ('+BAAN' IN BOOLEAN MODE) AND c.Candidate_ID = r.Candidate_ID Peter -Original Message- From: Eve