Possible Duplicate:
Create a date with T-SQL
Hi,
I've a data table that stores each year, month and day value as ints:
year | month | day
2009 | 1 | 1
2008 | 12 | 2
2007 | 5 | 5
I need to convert it to datetime value, because I need to use it in a datetime between operation. How could I do this?
Thanks,
b.