OldSlowDog
Programmer
Hello,
Is it possible to have sql to transalte a code to a text?
I have a PROPERTY table and it has an int field VACANT which is either 0 or 1.
SELECT Address, KepMap, VACANT
FROM PROPERTY
WHERE CITY = 'Dallas'
What I want to show is the word Vacant or Occupied rather than a 0 or 1. (0=Occupied, 1=Vacant)
Thanks for helping.
Is it possible to have sql to transalte a code to a text?
I have a PROPERTY table and it has an int field VACANT which is either 0 or 1.
SELECT Address, KepMap, VACANT
FROM PROPERTY
WHERE CITY = 'Dallas'
What I want to show is the word Vacant or Occupied rather than a 0 or 1. (0=Occupied, 1=Vacant)
Thanks for helping.