gpt4 book ai didi

hadoop - pig : filtering out empty string

转载 作者:可可西里 更新时间:2023-11-01 14:37:20 24 4
gpt4 key购买 nike

我正在尝试从我的数据中过滤掉 NULL 和空字符串

data_filtered = FILTER raw_data by COLUMN_NAME is not null and COLUMN_NAME != '' ;

当我运行它时,出现以下错误:

ERROR org.apache.pig.tools.grunt.Grunt - ERROR 1200: <file jhoughton/temp/temp_script.pig, line 43, column 46>  Unexpected character ' '

如何解决此错误并过滤掉 NULLS 和空白字符串?

最佳答案

可以使用TRIM函数过滤空格

data_filtered = FILTER raw_data by ( COLUMN_NAME is not null and TRIM(COLUMN_NAME) != '' );

关于hadoop - pig : filtering out empty string,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32981573/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com