Есть ли способ проверить, является ли строка числом в Impala? как is_numeric это SQL?
is_numeric
Это сработало для меня:
select case when cast(mycol as double) is not null then 'numeric' else 'string' end
от mytable