Hive date/timestamp column
问题 I have some data on HDFS that I am trying to setup to be queried via hive. The data is in the form of comma separated text files. One of the columns in the file is the date/time column as follows: Wed Aug 29 16:16:58 CDT 2018 When I try to read the Hive table created using the following script, I get NULL as the value being read for this column.. use test_db; drop table ORDERS; create external table ORDERS( SAMPLE_DT_TM TIMESTAMP ... ) row format delimited fields terminated by ',' stored as