Viewing 15 posts - 16 through 30 (of 66 total)
thank you. Can you please tell me which string is bound by an extra quote?
April 27, 2011 at 11:34 am
Thanks for the prompt reply. I thought about this solution myself. However, my boss said the answer was in using cursors. I used outer Join and reformatted the entire join...
March 29, 2011 at 9:51 am
Basically all I had to change was to add 'All' in front of Group BY, this would list all the reports even if the count associated with them was 0.
Group...
December 4, 2009 at 5:58 am
I found the solution.
the secret was to use the Group By All clause, then one would see the zeros for the Count if there are no records that meet the...
December 3, 2009 at 11:14 am
I tried with left join and group by and it did not work.
December 3, 2009 at 9:55 am
I want this to return 0 when there is no records found.
Select IsNULL(Count(*), 0) As Count, RT.Report_ID, ReportName, ReportCategory From
tTracking_tblReportsUsage tbTracking
Right Join tblReportsNew RT On tbTracking.Report_ID =...
December 3, 2009 at 9:55 am
Actually Cast(@issuedate As DateTime) worked.
November 19, 2009 at 6:39 am
Thanks. I will try it Convert function did not work.
November 18, 2009 at 6:09 pm
Thanks for the prompt reply. I will test the Cast, Convert function did not work.
November 18, 2009 at 6:08 pm
Generally speaking when the count is zero that record is skipped. I found a way to return the zero value by using Group by All and picking the column used...
November 2, 2009 at 9:47 am
Thank you so much. it worked.
September 2, 2009 at 9:16 am
Viewing 15 posts - 16 through 30 (of 66 total)