I have the following SQL statement which check for the presence of 000. But what if I want to check the presence of either 000 or 666? I tried using | but no luck.....
IIF(Field='000','TRUE','FALSE')
Use in
.
IIF(Field in ('000','666'),'TRUE','FALSE')