insert mutiple rows

  • Thread starter Thread starter Irfan
  • Start date Start date
I

Irfan

hi,

I tried to google 'sql to insert multiple row MSaccess' but coudnt get a
proper link.

This is roughly what i want to do.
..
I have Material, Load & filename as Columns in a table.All i want to do is
copy all the rows having filename as 'x' in the same table.

any help is appreciated
TIA
irfan
 
thanks, i have sorted it out.
It was simply appending the rows.

INSERT INTO tblName(r1,r2..)
SELECT tblName.r1,tblName.r2...
FROM tblName
WHERE ....
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top