oracle怎么查詢某一個月的數(shù)據(jù)?
你好:這個查詢方式有很多;
select * from tableName where DATEPART(mm, theDate)=DATEPART(mm, GETDATE()) and DATEPART(yy, theDate) = DATEPART(yy, GETDATE());-----------可以用以下方法查找select * from tableName t where t.dateTime =to_DATE('yyyy-mm','2014-12')