In T-SQL what is the best way to convert a month name into a number?
E.g:
\'January\' -> 1 \'February\' -> 2 \'March\' -> 3
select Convert(datetime, '01 ' + Replace('OCT-12', '-', ' '),6)