如何使用内置的日期和时间函数仅显示一次日期
在mysqlselect curdate();
中我们可以做得到
+------------+
| curdate() |
+------------+
| 2013-07-23 |
+------------+
select unixtime();
在Hive中尝试给了我FAILED: ParseException line 1:17 mismatched input '<EOF>' expecting FROM near ')' in from clause
做,select from_unixtime(unix_timestamp(),"yyyy-MM-hh") from abc.xyz LIMIT 1;
给我
OK
2013-07-03
我的预期输出,但对我来说使用随机数据库及其表仅用于访问date
. 这样做的正确方法是什么?