I would personally just bring them back as is from the table and not worry about trying to do that in SQL. Mapped something like decimal? or rate? (assuming C#) and then do a null check in the code. You could do something like
public int Rate { get { return _rate ?? 0; } }
|
Edited by smi-mark - 04-Feb-2014 at 10:13am