WHERE without using CASE
Thanks.
"Tom Cooper" wrote in message
...
You could do
0WHERE MyField1 1 OR
(MyField1 Is Null AND MyField2 1)
Tom
"Mark B" wrote in message
...
I'm trying to edit a Filter in Outlook and it has a sort of SQL syntax.
The only thing is I don't know if it accepts CASE statements -- it's
giving a 'SQL parsing' error.
Is there another simple SQL way of doing this WHERE clause without using
case (e.g. using AND or OR)?:
WHERE (CASE WHEN (MyField1 IS NULL) THEN (MyField2) ELSE (MyField1))1
My Reference:
(CASE WHEN
("http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/MyField1"
IS NULL) THEN
("http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/MyField2")
ELSE
("http://schemas.microsoft.com/mapi/string/{00020329-0000-0000-C000-000000000046}/MyField1"))1
|