|
|
Question : How to Subtract 14 hours from GetDate()
|
|
Hello -
I need to changed a stored procedure to subtract 14 hours from the GetDate() function to pick up the correct data. How do I do this? Thanks -
|
Answer : How to Subtract 14 hours from GetDate()
|
|
select dateadd(hh,-14, getdate())
|
|
|
|
|