wysiwygger
Programmer
Hi,
I'm trying to get a date value increased by 1 day.
The difficult part is the date is stored as a decimal datatype, e.g. 20070228. If I increase it by 1 using: SELECT MyDate + 1 would only give me 20070229 and not 20070301.
I have no influence on chaging the datatype.
Also if I try to convert my decimal value using:
SELECT CONVERT(datetime, MyDate + 1)
FROM cscrd
it comes of with an conversion error saying it can't convert this expression into datetime.
Any ideas?
Cheers
I'm trying to get a date value increased by 1 day.
The difficult part is the date is stored as a decimal datatype, e.g. 20070228. If I increase it by 1 using: SELECT MyDate + 1 would only give me 20070229 and not 20070301.
I have no influence on chaging the datatype.
Also if I try to convert my decimal value using:
SELECT CONVERT(datetime, MyDate + 1)
FROM cscrd
it comes of with an conversion error saying it can't convert this expression into datetime.
Any ideas?
Cheers