IF Condition in an SQL query

前端 未结 8 1635
长发绾君心
长发绾君心 2021-01-04 20:23

I\'m a newbie to SQL Server. Please help me to write the following Logic in a query.

If getnow() > today 4 PM
Then
    SELECT *
    FROM table
    WHERE M         


        
8条回答
  •  一整个雨季
    2021-01-04 20:38

    select *
    from table
    where DATEDIFF(day, GETDATE(), maildate) = case when
        DATEPART(hour, GETDATE()) >= 16 then 1 else 0
    end
    

提交回复
热议问题