I have a table called list and i have to extract the following. fields are id and date
- If date<20120401 then count on id >>>> give result
- If date>20120401 then count on id >>>> give result
if there are 20 items of date<20120401 and 30 items of date>20120401 of an idnumber xyz
then the result should be...
xyz 20 30
I have done like ...
select
(select count(id) from list where id='xyz' and date<20120401) as date1,
(select count(id) from list where id='xyz' and date>20120401) as date2;
the result is 20 30
but how to print the idnumber?