Table.ApproximateRowCount
语法
Table.ApproximateRowCount(table as table) as number
关于
返回 table
中的近似行数,或者如果数据源不支持近似值,则返回错误。
示例 1
估计大型表中城市和省/市/自治区的不同组合数,这可用作列的基数估计值。 基数估计值非常重要,因此各种数据源(如 SQL Server)通常使用名为 HyperLogLog 的算法支持此特殊近似值。
使用情况
Table.ApproximateRowCount(Table.Distinct(Table.SelectColumns(sqlTable, {"city", "state"})))
输出
number