14
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

GoogleBigQueryで÷0を回避する方法

Last updated at Posted at 2018-12-05

目的

  • GoogleBigQueryで÷0の回避方法です。非エンジニア向けです。
  • 細かくセグメントを切って分析をしていくと、÷0などが発生します。
  • なぜ0で割ってはいけないかはこちらを見てください。
    IMAGE ALT TEXT HERE

Query

SELECT
	IFNULL(SAFE_DIVIDE(1, 0), 0),
	SAFE_DIVIDE(1, 0)
FROM hoge

結果

image.png

考え方

SAFE_DIVIDE

計算できない際に NULL が返されます。
NULLのままで良い場合は下記のIFNULLは不要です。

IFNULL

NULL のときに任意に書き換えができます。
最終アウトプットはグラフをイメージしているので今回は0に書き換えます。
カテゴリ別の売上を人数で割るとこんな感じですかね。

SELECT
	category,
	IFNULL(SAFE_DIVIDE(sum(revenue), COUNT(distinct user_id), 0) as per
FROM hoge

公式ドキュメント

14
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?