How to add +1 day to convert?
Statement :-
declare @dtend char (10)
select @dtend = '14.03.2014'
declare @sdtend datetime
select @sdtend = convert( datetime, @dtend, 104)
T-SQL Solution:
Use DATEADD
function on the converted datetime value.
Try this:
select @sdtend = dateadd( day, 1, convert( datetime, @dtend, 104)
Refer to: