Saturday, January 5, 2019

APPROX_COUNT_DISTINCT Function In SQL

We all have written queries that use COUNT DISTINCT to get the unique number of non-NULL values from a table. This process can generate a noticeable performance hit especially for larger tables with millions of rows. Many times, there is no way around this. To help mitigate this overhead SQL Server 2019 introduces us to approximating the distinct count with the new APPROX_COUNT_DISTINCT function.

source https://www.c-sharpcorner.com/article/approxcountdistinct-function-in-sql/

No comments:

Post a Comment