Impala-检查字符串是否为数字

时间:2018-06-27 19:36:03

标签: sql impala

有什么方法可以检查Impala中的字符串是否为数字? 像is_numeric是SQL吗?

1 个答案:

答案 0 :(得分:0)

这确实对我有用:

select case when cast(mycol as double) is not null then 'numeric' else 'string' end  

来自mytable