美文网首页
3-Hive类型隐式转换

3-Hive类型隐式转换

作者: anglia熊 | 来源:发表于2018-01-29 16:01 被阅读0次

    关于string类型只能转换为double数字类型进行排序

    case1:

    select cast(num as double) as num1

      from (

            select DISTINCT regexp_replace(categories,'\[|\]','') as num

              from table_name

            WHERE dt=20180115

              and categories is not null

          )

    ORDER BY num1

    相关文章

      网友评论

          本文标题:3-Hive类型隐式转换

          本文链接:https://www.haomeiwen.com/subject/wwoxzxtx.html