select datecreated, count(*) from
(select datecreated from webblogs where userid='9'
union all
select datecreated from txtblogs where userid='9')
group by group by month(datecreated), year(datecreated)
order by datecreated desc
is there's a chance i could simplified this query or how can i make this work on mysql ver. 4.0
i not sure if the subquery for for version 4.0 coz it always gives me an error