sql 取2个日期之间的数据

    1. select * from table1 where larq between(to_date(‘2008-9-3‘,‘yyyy-mm-dd‘)) and (to_date(‘2008-9-5‘,‘yyyy-mm-dd‘)) 
      2.select * from table1 where larq>=to_date(‘2008-9-3‘,‘yyyy-mm-dd‘) and larq <=to_date(‘2008-9-5‘,‘yyyy-mm-dd‘)

select count(1) from T_VEHICLE t where t.createts between to_date(‘2015-7-7 17:13:00‘,‘yyyy/mm/dd hh24:mi:ss‘) and to_date(‘2015-7-7 20:55:00‘,‘yyyy/mm/dd hh24:mi:ss‘)

to_date(‘2015-7-7 17:13:00‘,‘yyyy/mm/dd hh24:mi:ss‘)

to_char(sysdate,‘yyyy/mm/dd hh24:mi:ss‘)

to_date是oracle的文本转日期函数,必须这样用
同样,日期转文本要用to_char函数
文本转数值要用to_number函数

时间: 2024-10-08 12:53:37

sql 取2个日期之间的数据的相关文章

sql返回两个日期之间的日期_函数实现

-- Description:返回两段日期之间的所有日期    <Description,,>-- =============================================CREATE FUNCTION [dbo].[GetBetweenDate] (        @StartTime DATETIME        --开始日期  ,@EndTime DATETIME        --结束日期)RETURNS  @TABLE table (BetweenDate DAT

SQL数据库与excel表格之间的数据 导入

MS SQL 取分组后的一条数据

select apkmd5,libraryid from apk as tem where apkid=(select top 1 apkid from apk where libraryid=tem.libraryid order by apkdate desc) 总感觉怪怪的

SQL Server 之 在数据库之间进行数据导入导出

第一步,启用Ad Hoc Distributed Queries: exec sp_configure 'show advanced options',1; reconfigure; exec sp_configure 'Ad Hoc Distributed Queries',1; reconfigure; 第二步,

SQL不同服务器数据库之间的数据操作整理(完整版)

---------------------------------------------------------------------------------- -- Author : htl258(Tony) -- Date : 2010-06-25 22:23:18 -- Version: Microsoft SQL Server 2008 (RTM) - 10.0.1600.22 (Intel X86) -- Jul 9 2008 14:43:34 -- Copyright (c) 1

SQL不同服务器数据库之间的数据操作整理(完整版)(转)

---------------------------------------------------------------------------------- -- Author : htl258(Tony) -- Date   : 2010-06-25 22:23:18 -- Version: Microsoft SQL Server 2008 (RTM) - 10.0.1600.22 (Intel X86) --          Jul  9 2008 14:43:34 --    

05. 取SQL分组中的某几行数据

原文:05. 取SQL分组中的某几行数据 对表中数据分组,有时只需要某列的聚合值:有时却需要返回整行数据,常用的方法有:子查询.ROW_NUMBER.APPLY,总体感觉还是ROW_NUMBER比较直观.测试数据: if OBJECT_ID('testGroup') is not null drop table testGroup GO create table testGroup ( ID int identity primary key, UserID int, OrderID int )

数据库sql联合查询mid类型的分页数据取不了全部的值错误

USE [Travel]GO/****** Object:  StoredProcedure [dbo].[NoticeGetPagedData]    Script Date: 06/13/2014 20:44:51 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOALTER PROCEDURE [dbo].[NoticeGetPagedData]@pageIndex int = 1,--页码@pageSize int =10,--页容量

【转载】SQL Server - 使用 Merge 语句实现表数据之间的对比同步

原文地址:SQL Server - 使用 Merge 语句实现表数据之间的对比同步 表数据之间的同步有很多种实现方式,比如删除然后重新 INSERT,或者写一些其它的分支条件判断再加以 INSERT 或者 UPDATE 等.包括在 SSIS Package 中也可以通过 Lookup, Condition Split 等多种 Task 的组合来实现表数据之间的同步.在这里 "同步" 的意思是指每次执行一段代码的时候能够确保 A 表的数据和 B 表的数据始终相同. 可以通过 SQL Se