How exactly is the value of count(*) determined in BigQuery?

后端 未结 2 1540
[愿得一人]
[愿得一人] 2021-01-13 03:14

I am joining a table of about 70000 rows with a slightly bigger second table through inner join each. Now count(a.business_column) and count(*) give different results. The f

2条回答
  •  感情败类
    2021-01-13 04:10

    COUNT(*) counts most repeated field in your query, if you want to count full records - use COUNT(0).

提交回复
热议问题