Can I run a second query from within the current running query? I would like to run it this way:
WHERE (A Is Null or A="xx" And If Exits (A="yy" Or A="zz"
Then qry1. I'm not sure of the syntax, but is this doable? Thanks.
Hi, i'm not entirely sure on what you're askin to do, but i'm kind asure this might help you:
{SELECT A, B, C
FROM table1
WHERE A Is Null
OR A = "xx"
{SELECT A
FROM table1
WHERE A = "yy"
OR A = "zz"
}
}
Hope this helps... I have not failed; I merely found 100,000 different ways of not succeding...
I managed to figure out that this can't be done. You must paste that query at the end of each line. It is big and hard to read, but it works fine, now. Thanks anyway.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.