- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Hive trunc function to extract quarter just like sql trunc(column,'q)
- Labels:
-
Apache Hive
Created ‎03-16-2017 04:17 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Created ‎03-16-2017 05:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Do you need quarter of the year for some date, timestamp, or string? If yes then Hive already has a built-in date functions defined for it :
quarter(date/timestamp/string) |
https://cwiki.apache.org/confluence/display/Hive/LanguageManual+UDF
Created ‎03-16-2017 05:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Do you need quarter of the year for some date, timestamp, or string? If yes then Hive already has a built-in date functions defined for it :
quarter(date/timestamp/string) |
https://cwiki.apache.org/confluence/display/Hive/LanguageManual+UDF
Created ‎03-23-2017 02:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In the Hive version prior to 2.2.0 there is no function available, I added support for it recently, see HIVE-16234. Example
SELECT trunc('2017-03-15', 'Q'); '2017-01-01'
