Appearance
BigQueryで欠損値補完を実施します
SELECT col1, col2, col3, IFNULL(col1,col2) as f FROM test.null_sample
BigQueryで値がNULLだったら別のカラム値を使う方法