Reputation: 9928
We can convert a boolean field in MySql with
select if(bool_field_name, 'yes', 'no') ...
How can I do something like this in Access?
Upvotes: 2
Views: 565
Reputation: 1270191
The function is iif()
:
select iif(bool_field_name, 'yes', 'no')
Upvotes: 2