T
tolis
I have 3 identical (having same fields) tables with different names (FAST_1,
FAST_2, FAST_3).
I need to create a query (using SQL) in order to search the tables for a
specific record and when found to display all the fields of that record FROM
THAT PARTICULAR TABLE.
What I did so far is:
SELECT FAST_1.*, FAST_2.*, FAST_3.*
FROM FAST_1, FAST_2, FAST_3
WHERE (((FAST_1.NUMB_SUBSCR)=[NUMB])) Or (((FAST_2.)NUMB_SUBSCR=[NUMB])) Or
(((FAST_3.NUMB_SUBSCR)=[NUMB]));
but it returns all the records.
Anybody knows how to proceed?
Thank you for your help and time
FAST_2, FAST_3).
I need to create a query (using SQL) in order to search the tables for a
specific record and when found to display all the fields of that record FROM
THAT PARTICULAR TABLE.
What I did so far is:
SELECT FAST_1.*, FAST_2.*, FAST_3.*
FROM FAST_1, FAST_2, FAST_3
WHERE (((FAST_1.NUMB_SUBSCR)=[NUMB])) Or (((FAST_2.)NUMB_SUBSCR=[NUMB])) Or
(((FAST_3.NUMB_SUBSCR)=[NUMB]));
but it returns all the records.
Anybody knows how to proceed?
Thank you for your help and time