Confused on this one, I want to take the value given in a row (it is a bit value) and output a "Yes" or "No" instead of the representative 0 or -1 during a query.
Example:
Thanks!
Example:
Code:
SELECT AppName, Inactive
FROM ApplicantStatus
ORDER BY AppName
[b][COLOR=red]Current Output[/color][/b]
Name:
Billy Bob -1
Joe Bob 0
Silent Bob 0
[b][COLOR=blue]Desired Output[/color][/b]
Name:
Billy Bob Yes
Joe Bob No
Silent Bob No
Thanks!