All,
I'm trying to write a query to pull the same parameter data from 10 different files. I've started the first two and am already stuck I get "SQL syntax error (missing operator) in query expression '(((T_CABS_USAG.....and so on. Here's what I have so far. TIA Brian
SELECT * FROM T_CABS_USAGE_SOC
WHERE ((((T_CABS_USAGE_SOC.BAN)like'*9533*')) OR (((T_CABS_USAGE_SOC.BAN)LIKE'*9533*')))
UNION ALL SELECT* FROM T_CABS_USAGE_SOC-2009Q3
WHERE ((((T_CABS_USAGE_SOC-2009Q3.BAN)LIKE'*9533*')) OR (((T_CABS_USAGE_SOC-2009Q3.BAN)LIKE'*9533*')));
I hate asking a basic question, but I'm stuck and nothing online I've found covers this. Thanks again.
I'm trying to write a query to pull the same parameter data from 10 different files. I've started the first two and am already stuck I get "SQL syntax error (missing operator) in query expression '(((T_CABS_USAG.....and so on. Here's what I have so far. TIA Brian
SELECT * FROM T_CABS_USAGE_SOC
WHERE ((((T_CABS_USAGE_SOC.BAN)like'*9533*')) OR (((T_CABS_USAGE_SOC.BAN)LIKE'*9533*')))
UNION ALL SELECT* FROM T_CABS_USAGE_SOC-2009Q3
WHERE ((((T_CABS_USAGE_SOC-2009Q3.BAN)LIKE'*9533*')) OR (((T_CABS_USAGE_SOC-2009Q3.BAN)LIKE'*9533*')));
I hate asking a basic question, but I'm stuck and nothing online I've found covers this. Thanks again.