hive基本的内置函数

  1. 时间函数

            其实常用的并不多

             to_date("yyyy-MM-dd HH:mm:ss")  ->  "yyyy-MM-dd"   date

            month()/day() / hour()/minute()/seconds()

            2.字符串函数

            upper(String)/lower(String)

            trim(String)/ltrim(String)/rtrim(String)

            regexp_replace(data,pattern,newData)

        select regexp_replace('foobar', 'oo|ar', '');

            regexp_extract(data,pattern,要取的字符数据的下标)

            select regexp_extract('foothebar', 'foo(.*?)(bar)', 1);

你可能感兴趣的:(Hive)