P
Primepixie
I have a database that has several tables in it. Each table contains each
years information. I want to be able to search all the tables for one certain
record. This record is a unquie number, but is not in numeric order. I want
to be able to put in the number, and have it search all the tables. How can I
do this?
This is what I have for one table, but I would like to have only one query
and have it search all the tables. These are tables that contain 250,000
records.
SELECT [2006].*
FROM 2006
WHERE (([2006].[fieldname]) Like [Enter number(Ex: 03-B0-C-000012851-0001) ])
years information. I want to be able to search all the tables for one certain
record. This record is a unquie number, but is not in numeric order. I want
to be able to put in the number, and have it search all the tables. How can I
do this?
This is what I have for one table, but I would like to have only one query
and have it search all the tables. These are tables that contain 250,000
records.
SELECT [2006].*
FROM 2006
WHERE (([2006].[fieldname]) Like [Enter number(Ex: 03-B0-C-000012851-0001) ])