Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit dadb7af

Browse files
committed
update URLs and monikers
1 parent 0a5dc0e commit dadb7af

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

docs/t-sql/functions/approx-percentile-cont-transact-sql.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ author: blakhani-msft
1616
ms.author: blakhani
1717
ms.reviewer: "maghan"
1818
ms.custom: ""
19-
ms.date: "05/24/2022"
20-
monikerRange: ">=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-server-2016||>=sql-server-linux-2017||=azuresqldb-mi-current"
19+
ms.date: "04/24/2022"
20+
monikerRange: "azuresqldb-current || = azuresqldb-mi-current || >= sql-server-2016 || >= sql-server-linux-2017 || = azuresqledge-current"
2121
---
2222

2323
# APPROX_PERCENTILE_CONT (Transact-SQL)
@@ -26,7 +26,7 @@ monikerRange: ">=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-s
2626

2727
This function returns an approximate interpolated value from the set of values in a group based on percentile value and sort specification. Since this is an approximate function, the output would be within rank based error bound with certain confidence. The percentile value returned by this function is based on a continuous distribution of the column values and the result would be interpolated. Due to this, the output might not be one of values in the data set. One of the common use cases for this function is to avoid the data outliers. This function can be used as an alternative to PERCENTILE_CONT for large datasets where negligible error with faster response is acceptable as compared to accurate percentile value with slow response time.
2828

29-
[Transact-SQL Syntax Conventions](https://docs.microsoft.com/en-us/sql/t-sql/language-elements/transact-sql-syntax-conventions-transact-sql)
29+
[Transact-SQL Syntax Conventions](/sql/t-sql/language-elements/transact-sql-syntax-conventions-transact-sql)
3030

3131
## Syntax
3232

@@ -61,7 +61,7 @@ Any nulls in the data set are ignored.
6161
Approximate percentile functions use KLL sketch. The sketch is built by
6262
reading the stream of data. Due to the algorithm used, this function
6363
requires less memory than its non-approximate counterpart
64-
([PERCENTILE_CONT](https://docs.microsoft.com/en-us/sql/t-sql/functions/percentile-cont-transact-sql))
64+
([PERCENTILE_CONT](/sql/t-sql/functions/percentile-cont-transact-sql))
6565

6666
This function provides rank-based error guarantees not value based. The
6767
function implementation guarantees up to a 1.33% error.
@@ -83,7 +83,7 @@ function implementation guarantees up to a 1.33% error bounds within a 99% confi
8383

8484
Under compatibility level 110 and higher, WITHIN GROUP is a reserved
8585
keyword. For more information, see [ALTER DATABASE Compatibility Level
86-
(Transact-SQL).](https://docs.microsoft.com/en-us/sql/t-sql/statements/alter-database-transact-sql-compatibility-level)
86+
(Transact-SQL).](/sql/t-sql/statements/alter-database-transact-sql-compatibility-level)
8787

8888
## Examples
8989

docs/t-sql/functions/approx-percentile-disc-transact-sql.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ author: blakhani-msft
1616
ms.author: blakhani
1717
ms.reviewer: "maghan"
1818
ms.custom: ""
19-
ms.date: "05/24/2022"
20-
monikerRange: ">=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-server-2016||>=sql-server-linux-2017||=azuresqldb-mi-current"
19+
ms.date: "04/24/2022"
20+
monikerRange: "azuresqldb-current || = azuresqldb-mi-current || >= sql-server-2016 || >= sql-server-linux-2017 || = azuresqledge-current"
2121
---
2222

2323
# APPROX_PERCENTILE_DISC (Transact-SQL)
@@ -26,7 +26,7 @@ monikerRange: ">=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-s
2626

2727
This function returns the value from the set of values in a group based on the provided percentile and sort specification. Since this is an approximate function, the output would be within rank based error bound with certain confidence. As this approximate percentile is based on a discrete distribution of the column values, the output value would be equal to one of the specific values in the column. This function can be used as an alternative to PERCENTILE_DISC for large datasets where negligible error with faster response is acceptable as compared to accurate percentile value with slow response time.
2828

29-
[Transact-SQL Syntax Conventions](https://docs.microsoft.com/en-us/sql/t-sql/language-elements/transact-sql-syntax-conventions-transact-sql)
29+
[Transact-SQL Syntax Conventions](/sql/t-sql/language-elements/transact-sql-syntax-conventions-transact-sql)
3030

3131
## Syntax
3232

@@ -88,7 +88,7 @@ function implementation guarantees up to a 1.33% error bounds within a 99% confi
8888

8989
Under compatibility level 110 and higher, WITHIN GROUP is a reserved
9090
keyword. For more information, see [ALTER DATABASE Compatibility Level
91-
(Transact-SQL).](https://docs.microsoft.com/en-us/sql/t-sql/statements/alter-database-transact-sql-compatibility-level)
91+
(Transact-SQL).](/sql/t-sql/statements/alter-database-transact-sql-compatibility-level)
9292

9393
## Examples
9494

0 commit comments

Comments
 (0)