标签: sql impala
有什么方法可以检查Impala中的字符串是否为数字? 像is_numeric是SQL吗?
is_numeric
答案 0 :(得分:0)
这确实对我有用:
select case when cast(mycol as double) is not null then 'numeric' else 'string' end
来自mytable