diff --git a/data-explorer/kusto/query/ago-function.md b/data-explorer/kusto/query/ago-function.md index bf3a779b4a..fe3a49904c 100644 --- a/data-explorer/kusto/query/ago-function.md +++ b/data-explorer/kusto/query/ago-function.md @@ -43,3 +43,11 @@ T | where Timestamp > ago(1h) * [timespan datatype](scalar-data-types/timespan.md) * [totimespan datatype](./totimespan-function.md) * [make-timespan function](make-timespan-function.md) +* [startofday function](./startofday-function.md) +* [startofweek function](./startofweek-function.md) +* [startofmonth function](./startofmonth-function.md) +* [startofyear function](./startofyear-function.md) +* [endofday function](./endofday-function.md) +* [endofweek function](./endofweek-function.md) +* [endofmonth function](./endofmonth-function.md) +* [endofyear function](./endofyear-function.md) \ No newline at end of file diff --git a/data-explorer/kusto/query/day-of-week-function.md b/data-explorer/kusto/query/day-of-week-function.md index b4c1f50c95..8ab5e3291c 100644 --- a/data-explorer/kusto/query/day-of-week-function.md +++ b/data-explorer/kusto/query/day-of-week-function.md @@ -89,4 +89,8 @@ print Timespan = dow, Integer = toint(dow/1d) ## Related content -[The timespan data type](scalar-data-types/timespan.md) +* [The timespan data type](scalar-data-types/timespan.md) +* [startofweek function](./startofweek-function.md) +* [endofweek function](./endofweek-function.md) +* [week_of_year function](./week-of-year-function.md) +* [ago function](./ago-function.md) diff --git a/data-explorer/kusto/query/endofday-function.md b/data-explorer/kusto/query/endofday-function.md index 3faf953a02..e61a134a8c 100644 --- a/data-explorer/kusto/query/endofday-function.md +++ b/data-explorer/kusto/query/endofday-function.md @@ -49,3 +49,10 @@ The following example returns the end of the day for the specified date. |2016-12-31 23:59:59.9999999| |2017-01-01 23:59:59.9999999| |2017-01-02 23:59:59.9999999| + +## Related content + +* [startofday function](./startofday-function.md) +* [endofweek function](./endofweek-function.md) +* [endofmonth function](./endofmonth-function.md) +* [endofyear function](./endofyear-function.md) \ No newline at end of file diff --git a/data-explorer/kusto/query/endofmonth-function.md b/data-explorer/kusto/query/endofmonth-function.md index 6353728fa4..49addfed05 100644 --- a/data-explorer/kusto/query/endofmonth-function.md +++ b/data-explorer/kusto/query/endofmonth-function.md @@ -49,3 +49,10 @@ The following example returns the end of the month for the specified date. |2016-12-31 23:59:59.9999999| |2017-01-31 23:59:59.9999999| |2017-02-28 23:59:59.9999999| + +## Related content + +* [startofmonth function](./startofmonth-function.md) +* [endofday function](./endofday-function.md) +* [endofweek function](./endofweek-function.md) +* [endofyear function](./endofyear-function.md) \ No newline at end of file diff --git a/data-explorer/kusto/query/endofweek-function.md b/data-explorer/kusto/query/endofweek-function.md index 45a4b16251..c45bf09e26 100644 --- a/data-explorer/kusto/query/endofweek-function.md +++ b/data-explorer/kusto/query/endofweek-function.md @@ -51,3 +51,13 @@ The following example returns the end of the week for the specified date. |2016-12-31 23:59:59.9999999| |2017-01-07 23:59:59.9999999| |2017-01-14 23:59:59.9999999| + +## Related content + +* [startofweek function](./startofweek-function.md) +* [endofday function](./endofday-function.md) +* [endofmonth function](./endofmonth-function.md) +* [endofyear function](./endofyear-function.md) +* [dayofweek function](./day-of-week-function.md) +* [week_of_year function](./week-of-year-function.md) +* [ago function](./ago-function.md) \ No newline at end of file diff --git a/data-explorer/kusto/query/endofyear-function.md b/data-explorer/kusto/query/endofyear-function.md index b0f380a553..daa669d8a8 100644 --- a/data-explorer/kusto/query/endofyear-function.md +++ b/data-explorer/kusto/query/endofyear-function.md @@ -49,3 +49,10 @@ The following example returns the end of the year for the specified date. |2016-12-31 23:59:59.9999999| |2017-12-31 23:59:59.9999999| |2018-12-31 23:59:59.9999999| + +## Related content + +* [startofyear function](./startofyear-function.md) +* [endofday function](./endofday-function.md) +* [endofweek function](./endofweek-function.md) +* [endofmonth function](./endofmonth-function.md) \ No newline at end of file diff --git a/data-explorer/kusto/query/startofday-function.md b/data-explorer/kusto/query/startofday-function.md index 2cff722953..d41cadd0b9 100644 --- a/data-explorer/kusto/query/startofday-function.md +++ b/data-explorer/kusto/query/startofday-function.md @@ -47,3 +47,13 @@ range offset from -1 to 1 step 1 |2016-12-31 00:00:00.0000000| |2017-01-01 00:00:00.0000000| |2017-01-02 00:00:00.0000000| + +## Related content + +* [startofweek function](./startofweek-function.md) +* [startofmonth function](./startofmonth-function.md) +* [startofyear function](./startofyear-function.md) +* [endofday function](./endofday-function.md) +* [endofweek function](./endofweek-function.md) +* [endofmonth function](./endofmonth-function.md) +* [endofyear function](./endofyear-function.md) \ No newline at end of file diff --git a/data-explorer/kusto/query/startofmonth-function.md b/data-explorer/kusto/query/startofmonth-function.md index dff5a3c4f7..591dfab67f 100644 --- a/data-explorer/kusto/query/startofmonth-function.md +++ b/data-explorer/kusto/query/startofmonth-function.md @@ -47,3 +47,13 @@ range offset from -1 to 1 step 1 |2016-12-01 00:00:00.0000000| |2017-01-01 00:00:00.0000000| |2017-02-01 00:00:00.0000000| + +## Related content + +* [startofday function](./startofday-function.md) +* [startofweek function](./startofweek-function.md) +* [startofyear function](./startofyear-function.md) +* [endofday function](./endofday-function.md) +* [endofweek function](./endofweek-function.md) +* [endofmonth function](./endofmonth-function.md) +* [endofyear function](./endofyear-function.md) \ No newline at end of file diff --git a/data-explorer/kusto/query/startofweek-function.md b/data-explorer/kusto/query/startofweek-function.md index 80c0aa32e8..110b39c894 100644 --- a/data-explorer/kusto/query/startofweek-function.md +++ b/data-explorer/kusto/query/startofweek-function.md @@ -49,3 +49,10 @@ range offset from -1 to 1 step 1 |2016-12-25 00:00:00.0000000| |2017-01-01 00:00:00.0000000| |2017-01-08 00:00:00.0000000| + +## Related content + +* [dayofweek function](./day-of-week-function.md) +* [endofweek function](./endofweek-function.md) +* [week_of_year function](./week-of-year-function.md) +* [ago function](./ago-function.md) \ No newline at end of file diff --git a/data-explorer/kusto/query/startofyear-function.md b/data-explorer/kusto/query/startofyear-function.md index 17c2f7b15f..a183b9f91f 100644 --- a/data-explorer/kusto/query/startofyear-function.md +++ b/data-explorer/kusto/query/startofyear-function.md @@ -47,3 +47,13 @@ range offset from -1 to 1 step 1 |2016-01-01 00:00:00.0000000| |2017-01-01 00:00:00.0000000| |2018-01-01 00:00:00.0000000| + +## Related content + +* [startofday function](./startofday-function.md) +* [startofweek function](./startofweek-function.md) +* [startofmonth function](./startofmonth-function.md) +* [endofday function](./endofday-function.md) +* [endofweek function](./endofweek-function.md) +* [endofmonth function](./endofmonth-function.md) +* [endofyear function](./endofyear-function.md) \ No newline at end of file diff --git a/data-explorer/kusto/query/week-of-year-function.md b/data-explorer/kusto/query/week-of-year-function.md index f4e5b00401..caf308eaa9 100644 --- a/data-explorer/kusto/query/week-of-year-function.md +++ b/data-explorer/kusto/query/week-of-year-function.md @@ -43,4 +43,11 @@ Returns an integer that represents the week number. The week number is calculate > [!NOTE] > `weekofyear()` is an obsolete variant of this function. `weekofyear()` was not ISO 8601 compliant; the first week of a year was defined as the week with the year's first Wednesday in it. -The current version of this function, `week_of_year()`, is ISO 8601 compliant; the first week of a year is defined as the week with the year's first Thursday in it. \ No newline at end of file +The current version of this function, `week_of_year()`, is ISO 8601 compliant; the first week of a year is defined as the week with the year's first Thursday in it. + +## Related content + +* [startofweek function](./startofweek-function.md) +* [endofweek function](./endofweek-function.md) +* [dayofweek function](./day-of-week-function.md) +* [ago function](./ago-function.md) \ No newline at end of file