C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
HIVE Data TypesHive data types are categorized in numeric types, string types, misc types, and complex types. A list of Hive data types is given below. Integer Types
Decimal Type
Date/Time TypesTIMESTAMP
DATES The Date value is used to specify a particular year, month and day, in the form YYYY--MM--DD. However, it didn't provide the time of the day. The range of Date type lies between 0000--01--01 to 9999--12--31. String TypesSTRING The string is a sequence of characters. It values can be enclosed within single quotes (') or double quotes ("). Varchar The varchar is a variable length type whose range lies between 1 and 65535, which specifies that the maximum number of characters allowed in the character string. CHAR The char is a fixed-length type whose maximum length is fixed at 255. Complex Type
Next TopicHive Create Database
|