This should have read
Quote:
|
Originally Posted by georgev
Post yourQL/code
|
Post your SQL/code
Basically, I reckon you're using the following
Code:
INSERT INTO tableName(field1, field2) VALUES (value1, value2)
Which means you can only do one line at a time.
There is a lovely method you can use when transferring data from one table to another which goes a little something like this:
Code:
INSERT INTO tableName(field1, field2)
SELECT otherTable.field1
, otherTable.field2
FROM otherTable
<optional where clause(s) etc>