CabbageCake
New member
- Local time
- Today, 15:34
- Joined
- Dec 29, 2011
- Messages
- 3
Hi guys,
I have a following table:
I would like to fill it with lots of records which I want to insert into at time. But I don't know how I can start it
Here is my records to insert:
insert into animal (animal_id, name, species)
values ( (1,'Foxi Maxi', 'dog'), (2, 'Dodo',' duck') , (3, 'Garfield', 'cat' ) )
I've found a kind of solution with these problem using the Union All keyword, but it isn't work for me (I use Access 2003)
Is there any way to insert multiple rows with MS Access?
Any help would be greatly appreciated!
Very thanks.
I have a following table:
Code:
create table animal
(
animal_id integer not null primary key,
name varchar(40) not null,
spieces varchar(40) not null
)
I would like to fill it with lots of records which I want to insert into at time. But I don't know how I can start it

Here is my records to insert:
insert into animal (animal_id, name, species)
values ( (1,'Foxi Maxi', 'dog'), (2, 'Dodo',' duck') , (3, 'Garfield', 'cat' ) )
I've found a kind of solution with these problem using the Union All keyword, but it isn't work for me (I use Access 2003)
INSERT INTO
SELECT 'x1','y1'
UNION ALL
Is there any way to insert multiple rows with MS Access?
Any help would be greatly appreciated!
Very thanks.