One further thing. In the SQL statement below :
Code:
INSERT INTO Table
SELECT
NULL,
Field,
1,
1
FROM Table1
WHERE [clause];
can I also tell MySQL that I only want the
Insert to proceed if
Field does not already exist in
Table. Otherwise only the offending record should be discarded and MySQL should proceed to
Insert the next record in Table1.
Can this be done with one statement?