Viewing 3 posts - 1 through 3 (of 3 total)
Thanks you for the correction regarding COUNT(NULL). I found that in T-SQL it is not valid, but I think it works in some other dialects (I think it is valid...
April 23, 2013 at 7:50 am
#1609061
kapil_kk (4/15/2013)
select COUNT(convert(int,NULL)) from #temp
It will return 0 because when you execute the query:
SELECT CONVERT(int,NULL) it will return NULL and as the return type of COUNT is...
April 18, 2013 at 12:04 am
#1607541
If you are using SSRS 2008 you can use indicators. The link is for a video that demonstrates how to use them:
http://youtu.be/Krz120kooGc
December 3, 2011 at 6:13 pm
#1416362