我有一个应用程序,让用户输入数据,我想存储他们输入的时间,然后根据日/周/月过滤所有输入。 不知道我将如何做到这一点,特别是本周推出的filterind数据。
非常感谢任何帮助。
亲切的问候。
答案 0 :(得分:0)
假设你的表结构是这样的:
create table log (
id int,
text varchar(200),
value int,
recorded_at datetime
);
然后,例如在MySQL中,查找过去两周的记录:
select * from log
where recorded_at > now() - interval 2 week;