Viewing 4 posts - 31 through 34 (of 34 total)
Thanks Jeff and David
It works.
Seems I was trying char(10) and char(13) in the wrong order.
It works only in a specific order
First char(13) and then char(10)
Thanks again
Sunny
October 29, 2004 at 2:25 am
Thanks Jeff
I had actually tried using char(13) and char(10) nut it didnt help
Regards
October 26, 2004 at 2:48 am
Please let me know if this works
Select distinct A.StatusDate,
(select Count(Distinct B.AssetID) from dbo.Tbl_EMStatusHistory B where B.DeviceType = 'Monitor' and B.StatusDate = A.StatusDate and B.AssetStatus = 'IN') Monitors,
(select Count(Distinct...
June 7, 2004 at 8:20 am
But Count(fieldName) is required in case you want to eliminate Nulls from the count. Am I right?
May 31, 2004 at 7:19 am
Viewing 4 posts - 31 through 34 (of 34 total)