sql - Get specific time from getdate() -


i'm facing issue when trying add condition in sql request
want add condition i.e date between dateadd(day, datediff(day, 0, getdate()), 0) , current date until 23:59:59.
how can specify second part of condition?
thank you.

you can predicate:

somedate < dateadd(dd, 1, cast(getdate() date)) 

Comments

Popular posts from this blog

xml - Extract substrings with XSLT -

math - "ELO Rating" and how does "TSR Rating" work? -

How can do a tuple comparison in coffeescript similar to that in python? -