I have an interesting situation. my Table has a numeric field called "Discount". It's an integer. My table has another boolean field called "isPercent".
I would like to SELECT the discount field, let's assume the value is 50.
If isPercent is TRUE, I'd like to output it as "50%", else I'd like to output it cast to Money "$50".
How do I 'conditional select' this?