如何查询dremio中的'empty text'字段?
How to query 'empty text' field in dremio?
我在 dremio 中的 table 单元格中的某些列中有短语 'empty text'。
当我尝试查询时:
select col1 from table1 where col1 is null
对于其中包含文本 'empty text' 的行,我没有返回任何结果。
如何在dremio中查询'empty text'字段或将空字段的数据类型更改为'null'?
像这样使用 case 语句将空单元格转换为 null:
CASE WHEN column1= '' THEN NULL ELSE column1 END AS column1
我在 dremio 中的 table 单元格中的某些列中有短语 'empty text'。
当我尝试查询时:
select col1 from table1 where col1 is null
对于其中包含文本 'empty text' 的行,我没有返回任何结果。
如何在dremio中查询'empty text'字段或将空字段的数据类型更改为'null'?
像这样使用 case 语句将空单元格转换为 null:
CASE WHEN column1= '' THEN NULL ELSE column1 END AS column1