Is there any neat way i can combine the following two statements to return me a single table of results with the columns:
lt2, lt3, id
select count(*) lt2,id
FROM TABLE
where Value<2
GROUP BY id
select count(*) lt3,id
FROM TABLE
where Value<3
GROUP BY id
Thanks for your help
tommot82
lt2, lt3, id
select count(*) lt2,id
FROM TABLE
where Value<2
GROUP BY id
select count(*) lt3,id
FROM TABLE
where Value<3
GROUP BY id
Thanks for your help
tommot82