表结构:
id name createtime1 张三 14785722638142 李四 14785726948433 王五 14785732161364 赵六 1478574227256
统计当前月份新增记录的数量,sql语句该怎么写呢
select id, name from table where date_format(FROM_UNIXTIME(createtime) ,'%Y-%m')=date_format(now(),'%Y-%m')