查找非十六进制格式的数据

时间:2018-12-26 17:06:45

标签: hive hex

我正在尝试在配置单元中编写查询以查找非十六进制格式的行。我使用RLIKE来检索十六进制的行。

1 个答案:

答案 0 :(得分:0)

只需使用NOT RLIKE

select col from table where col not rlike '^[0-9A-F]+$'; --apply your hexadecimal pattern

对于大写字母和小写字母,请使用以下模式:'^[0-9a-fA-F]+$'