Hi,
Any advice on the problem below? I have a 4 digit string representing a date which I can sucessfully convert when the year is prior to 2000. But, after 2000, I get a syntax error.
select convert(datetime,(substring(@date,1,2) + '01' + substring(@date,3,2)),101100)
1999-01-08...