mysql如何查询一周内表格数据的值

2025-03-07 02:11:30
推荐回答(1个)
回答1:

select column from table_name where 时间 between date_sub(某一天, interval 7 day) and 某一天;

应该明白吧