I would like to show the value "NONE" if the value in the field is null or its value if the field is not null from the table using the select statement. The statement may be similar to the following:
select iif(isnull(spouse),"NONE",spouse) as spouse from biodata
source
share