I'm trying to figure out if there's a way to insert muliple records into a database but only use one (large?) SQL statement?
For example:
if I have this data to insert:
Table1 schema Example:
Date
Time
Number
Yes_no
Question
Answer
Data Example:
01/13/05 00:13:34 12 1 "will this work?" "perhaps"
01/12/05 00:13:36 12 1 "will this work?" "No"
01/11/05 00:13:37 12 1 "will this work?" "yes"
01/09/05 00:13:38 12 1 "will this work?" "Maybe"
01/13/05 00:13:56 12 1 "will this work?" "No clue"
How can I instert all of this data with ONE insert statement?
The PogoWolf
For example:
if I have this data to insert:
Table1 schema Example:
Date
Time
Number
Yes_no
Question
Answer
Data Example:
01/13/05 00:13:34 12 1 "will this work?" "perhaps"
01/12/05 00:13:36 12 1 "will this work?" "No"
01/11/05 00:13:37 12 1 "will this work?" "yes"
01/09/05 00:13:38 12 1 "will this work?" "Maybe"
01/13/05 00:13:56 12 1 "will this work?" "No clue"
How can I instert all of this data with ONE insert statement?
The PogoWolf