PDA

Click to See Complete Forum and Search --> : SQL Filtering In Access


tom.exley
Nov 3rd, 2000, 09:33 AM
I am using an Access database with a VB6 front-end. Does anyone know how I can save the results from a query on a table into a new table so I have just the filtered rows?

Thanks
Tom

paulw
Nov 3rd, 2000, 09:58 AM
Tom,

Just add "INTO NewTable" into your SQL query where NewTable is your new table name.

i.e. use SQL: SELECT Fields INTO NewTable FROM OldTable WHERE etc...

Cheers,

Paul.