Michael Fesser wrote:
> .oO(Rabastan99)
>
>> I have a binary entry in my database I am using it
as 0 for No and 1 for
>> yes. How do I get it to display Yes and No on the
website instead of 0
>> & 1.
>
> Some code please. What scripting language? Or do it in
SQL, but even
> then it would help to see the query.
>
> Micha
I like doing it in SQL
SELECT CASE binaryEntry WHEN 0 THEN 'No' WHEN 1 THEN 'Yes'
END AS
NewBinaryEntryName
Dooza