欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SQL单表查询:查询某年某月数据实例教程

程序员文章站 2022-07-06 11:55:57
对sales.orders表查询,返回2007年6月的订单 返回结果 参考 select orderid,orderdate,custid,empid from sales.orders...

对sales.orders表查询,返回2007年6月的订单

返回结果

SQL单表查询:查询某年某月数据实例教程

参考

select orderid,orderdate,custid,empid
from sales.orders 
where year(orderdate)=2007 and day(orderdate)=6

如果操作的是索引列,建议使用范围筛选

select orderid,orderdate,custid,empid
from sales.orders 
where orderdate>='20070601' and orderdate<'20070701'