我正在使用一个图表程序来显示每月的库存总额。到目前为止,我只有 5 月的数据(6 月的数据将在 6 月 1 日自动插入到表中并加盖时间戳)。
我正在使用以下查询,它返回 1 行,显示 5 月份的 375 台设备,如下所示:
devices created_month
------- -------------
375 5/1/2012
此查询设置是否正确,以便在 6 月 1 日,如果我有 380 台设备,我将收到以下输出?
devices created_month
------- -------------
375 5/1/2012
380 6/1/2012
我只是想确认我正确地解释了这个查询。
SELECT count(device_type) as devices, description, ip_address, user_tag,
DATE_FORMAT(LAST_UPDATE,"%Y-%m") as created_month
FROM ahrq_inventory_internal
GROUP BY created_month