标签: hive hex
我正在尝试在配置单元中编写查询以查找非十六进制格式的行。我使用RLIKE来检索十六进制的行。
答案 0 :(得分:0)
只需使用NOT RLIKE:
NOT RLIKE
select col from table where col not rlike '^[0-9A-F]+$'; --apply your hexadecimal pattern
对于大写字母和小写字母,请使用以下模式:'^[0-9a-fA-F]+$'
'^[0-9a-fA-F]+$'