G
Guoqi Zheng
We have a table which save the value of week of year.
tblWeekOfYear
autoid int
Year int
week
This we use to identify a week. However how can covert the week into a date?
For example, for row.
year = 2000
week = 34
I need to get the date of first day at week 34 on year 2000. Howe can I do this?
tblWeekOfYear
autoid int
Year int
week
This we use to identify a week. However how can covert the week into a date?
For example, for row.
year = 2000
week = 34
I need to get the date of first day at week 34 on year 2000. Howe can I do this?