The subject should explain my question, to reiterate I have a field say FieldA that is 1's and 0's (True or False)
AN Example
Select IIf(FieldA = 0,'Yes','No') From TableName;
I have tried using double quotes too. I always get this error:
ORA-00907: missing right parenthesis, and it points to the equals sign in the test parameter. I decided to try a C style equality test ( == ) but that didnt work either.
Anyway, this should be a quick one. Thanks!
--Aaron
AN Example
Select IIf(FieldA = 0,'Yes','No') From TableName;
I have tried using double quotes too. I always get this error:
ORA-00907: missing right parenthesis, and it points to the equals sign in the test parameter. I decided to try a C style equality test ( == ) but that didnt work either.
Anyway, this should be a quick one. Thanks!
--Aaron