ETLでNULL処理

ETLでNULLが入っているカラムに関して、NULLを0に置換する処理をしようとしたのですが、

NULL文字を指定する方法が分かりませんでした。

 

どなたかご存知でしたら、ご教授頂けますと幸いです。

Best Answer

Answers

  • I find SQL has better capability processing such data.  Or you can try to use BeastMode when building cards.

     

    IFNULL($Col, $Value)

     

    I hope this helps.

  • Thank you for response.
    I also know the both methods (SQL, BeastMode) .

    Since the beast mode became complicated when the number of columns was large,
    I want to convert on ETL.

     

    返信ありがとうございます。

    その2つの方法(SQL、BeastMode)は、私も知っています。

     

    カラムが多いとBeastModeが煩雑になってしまうので、

    ETL上で変換したいのです。