python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How can i add days to a Hive timestamp without loosing hours, minutes and seconds
I am using Hive 2.6.5 and when i want to add days to my timestamp, it doesn't keep the hours, minutes and seconds.
Exemple
SELECT from_unixtime(unix_timestamp(date_add("2021-01-15 09:34:21",...

Azo
Votes: 0
Answers: 1
What is difference between where and join in Hive SQL when joining two tables?
For example,
-- use WHERE
SELECT
a.id
FROM
table_a as a,
table_b as b
WHERE
a.id = b.id;
-- use JOIN
SELECT
t1.id
FROM
(
SELECT
id
FROM
...

Bowen Peng
Votes: 0
Answers: 1
Hive Double and Decimal value incorrect format
I am migrating the sql statement greenplum to HiveSQL supported with pyspark scripts. we are encounter the issues if the double or decimal value, the value getting changed while doing the sum of the d...
Developer KE
Votes: 0
Answers: 0