本文主要是介绍sql查询n天前的数据,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
sql查询n天前的数据
- 查询 >3天的数据
- 查询3天前至今的数据
查询 >3天的数据
select created_at,vm_state,memory_mb,vcpus from nova.instances where created_at<curdate()-interval 3 day and vm_state!="deleted";
查询3天前至今的数据
select created_at,vm_state,memory_mb,vcpus from nova.instances where created_at>=curdate()-interval 3 day and vm_state!="deleted";
这篇关于sql查询n天前的数据的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!