Hi all,
The query below is not compiling. Please help:
The query below is not compiling. Please help:
Code:
Select case when isNull(a.[USER_ID],0)=0 Then char(43) when isNull(t.[USER_ID],0)=0 Then char(45) else char(160) end as ind, count(*) from T1 t left outer join T2 a on t.ASSIGNMENT_ID = a.ASSIGNMENT_ID group by ind order by ind
Comment