My question is how to extract the time from a datetime field and compare it with another time extracted from GetDate() function?
I’m using SQL Server 2008.
Thanks in advance!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
SELECT CONVERT(TIME, GETDATE(), 101)will get you theTimefromGETDATE(). You’d need to store it in a variable in order for you to use in your comparison. Not elegant, but it works.