Hive null value judgment: if it is null, take "", otherwise take its value:
null
""
select if(column_test is null, "", column_test) as column_alias from table_name;