I apologize if this is super easy, I'm still new to SQL and learning everyday. What I'm trying to do is query
SELECT ProjectName,
RequestNumber,
ContactId,
ContactFirstName,
ContactLastName,
RequestReceivedDate,
RequestCloseDate,
Category,
SubCategory,
AssignedResourceId,
OwningResourceId,
RequestSource,
ClosedImmediatelyFlag,
RequestStatusCode
FROM dbo.system_requests;
BUT my RequestReceivedDate and RequestCloseDate, are off by 5 hours. I can't create a function as I'm working with a vendor database so looking to convert UTC to local time in my select statement and just not sure the best way of doing this?
Thoughts?