|
|
|
| В запросе используется функция DatePart для выделения дней недели, которая по умолчанию выдает в качестве первого дня - воскресение.
А нужно, чтобы понедельник.
При этом строка SET DATEFIRST 1 перед строкой SELECT DATEPART... не распознается компилятором. Последний выдает ошибку "Ошибочная инструкция SQL"
Это глюк или я что-то не правильно делаю? | |
|
| |
|
|
|
| help по DatePart
Syntax
DatePart(interval, date[,firstdayofweek[, firstweekofyear]])
The DatePart function syntax has these named arguments:
interval Required. String expression that is the interval of time you want to return.
date Required. Variant (Date) value that you want to evaluate.
firstdayofweek Optional. A constant that specifies the first day of the week.
If not specified, Sunday is assumed.
firstweekofyear Optional. A constant that specifies the first week of the year. If not specified,
the first week is assumed to be the week in which January 1 occurs.
|
| |
|
| |
|