按时间归档文章统计
select count(id) as num, strftime('%Y-%m', createTime, 'unixepoch') as t from mder_contents group by t order by t desc;
-- 也可以使用
-- select count(id) as num, strftime('%Y-%m', date(createTime, 'unixepoch')) as t from mder_contents group by t order by t desc limit 10