首页 > 数据库技术 > 详细

SQL Server 查询时间段内数据

时间:2015-01-12 15:59:51      阅读:228      评论:0      收藏:0      [点我收藏+]

方式一:

ALTER Proc [dbo].[usp_Rpt_AcctTypeAudit]
@FromDate        datetime=null,    -- yyyy-mm-dd  (may change in the future!)
@ToDate            datetime=null,    -- yyyy-mm-dd  (may change in the future!)
@UserID            nvarchar(50) = ALL
as
BEGIN
   set nocount on
   if @ToDate is not null
    begin
        set @ToDate=convert(varchar,@ToDate,112)+ 23:59:59:998
    end

       select 
       AcctType,AcctDesc,HostAcctType,AcctNumLength,
       case [Action] when A then Add when D then Delete when M then Before-Modify when N then After-Modify else ‘‘ end as [Action]
       ,UserID,WsID,CrtTime
       from AcctTypeMasterHist with(nolock)
       where (CrtTime >= @FromDate or @FromDate is null)
         and (CrtTime <= @ToDate or @ToDate is null)
         and (UserID = @UserID or @UserID=ALL or isnull(@UserID,‘‘)=‘‘)
       order by crttime,LogID
END

 

 

方式二:

create  PROCEDURE [dbo].[Sp_CCBA_ProcessLogRpt] 
@FromDate datetime,
@ToDate datetime,
@UserID varchar(27),
@Workstation  varchar(28)
AS

Select * from ProcessLogInf
WHERE DATEDIFF(day, @FromDate, AcDate)>= 0
    ANd DATEDIFF(day, AcDate, @ToDate)>= 0
    AND LogUser = CASE RTRIM(@UserID) WHEN ALL THEN LogUser WHEN ‘‘ THEN LogUser ELSE @UserID END
    AND LogWs = CASE RTRIM(@Workstation) WHEN ALL THEN LogWs WHEN ‘‘ THEN LogWs ELSE @Workstation END

 

SQL Server 查询时间段内数据

原文:http://www.cnblogs.com/tylertang/p/4218291.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!