I
illustrator1
How can i make query from a list of field values?
I have a database with a few 1000 records.
I have also an excel file with values of fields.
How can i make a query that shows just the records that are in my excel
file?
I made something like this:
SELECT *
FROM table1
WHERE ((
(table1.field1)="example1" Or
(table1.field1)="example2"
))
ORDER BY table1.field1;
The excel document has in this example 2 cells like this:
"example1"
"example2"
The problem with this is, there are 100's or 1000's of those fields in
the excel file, so access says the query is too big.
Also i have to place everything in the file, this isn't such a big
problem but maybe there is a way to just let i search in an external
file like my excel file.
My real problem is that i have to split everything up in a lot of small
queries and that takes too much time.
I have a database with a few 1000 records.
I have also an excel file with values of fields.
How can i make a query that shows just the records that are in my excel
file?
I made something like this:
SELECT *
FROM table1
WHERE ((
(table1.field1)="example1" Or
(table1.field1)="example2"
))
ORDER BY table1.field1;
The excel document has in this example 2 cells like this:
"example1"
"example2"
The problem with this is, there are 100's or 1000's of those fields in
the excel file, so access says the query is too big.
Also i have to place everything in the file, this isn't such a big
problem but maybe there is a way to just let i search in an external
file like my excel file.
My real problem is that i have to split everything up in a lot of small
queries and that takes too much time.