Do I need to Cast the "0" in the following code to an integer. SortNbr is an integer column. Better question should I do it anyway?
Also, what about
Should that "0" be cast to an integer too if I want it to be an integer?
Auguy
Sylvania/Toledo Ohio
Code:
SELECT ISNULL(UPL.SortNbr, 0) AS SortNbr
Code:
SELECT 0 AS Counter
Auguy
Sylvania/Toledo Ohio