Viewing 5 posts - 1 through 5 (of 5 total)
Thanks for the reply John.
It was an issue with the concurrent connections.
The person who owns the server had set the value to 1.
It has been reset to Zero using...
June 2, 2009 at 12:08 am
Hi,
Try this...
Select A.Eno,Datepart(Month,JoinDate),Datepart(Year,JoinDate),count(*)
From Emp1 A
Left Outer Join Dept B on A.DeptNo = B.DeptNo
where A.Eno = '101'
GROUP BY A.Eno,Datepart(Month,JoinDate),Datepart(Year,JoinDate)
May 2, 2008 at 5:47 am
Viewing 5 posts - 1 through 5 (of 5 total)