Hello,SELECT count(*), months.m_disp FROM people p, (SELECT '01' as m, 'Jan' as m_dispUNIONSELECT '02' as m, 'Feb' as m_dispUNIONSELECT '03' as m, 'Mar' as m_dispUNION SELECT '04' as m, 'Apr' as m_dispUNION SELECT '05' as m, 'May' as m_dispUNION SELECT '06' as m, 'Jun' as m_dispUNION SELECT '07' as m, 'Jul' as m_dispUNION SELECT '08' as m, 'Aug' as m_dispUNION SELECT '09' as m, 'Sep' as m_dispUNION SELECT '10' as m, 'Oct' as m_dispUNION SELECT '11' as m, 'Nov' as m_dispUNION SELECT '12' as m, 'Dec' as m_disp) monthsGROUP BY months.m
where clause determines which people to select;All works well but months where there are no people maching criteria don't appear.So now I get:4,Jan19,Mar2,Jul6,Aug7,Oct85,Nov92,Dec
and I'm working on getting:4,Jan0,Feb19,Mar0,Apr0,Maj0,Jun2,Jul6,Aug0,Sep7,Oct85,Nov92,Dec
Share ideas, pleaseRegards