I have From date in my table but I want to add fix time to it
I'm trying like this
select cast(FromDate as date) + cast('18:00:00' as time(3)) as StartDT
from WsWmpLeaveReason
but this is causing an error:
Operand data type date is invalid for add operator.