Error while compiling statement: FAILED: SemanticException [Error 10015]: Line 1:7 Arguments length mismatch ''yyyy/M/dd'': to_date() requires 1 argument, got 2
时间: 2024-02-12 10:08:47 浏览: 136
编译DCNv2网络:error: command 'C:\\Program Files\\NVIDIAGPUComputingToolkit\\CUDA\\v1
非常抱歉,我的之前回答有误。在HiveQL中,to_date函数只接受一个参数,因此你不需要指定日期字符串的格式。正确的查询语句如下:
```
SELECT to_date('2017/1/23') AS result;
```
这会将字符串'2017/1/23'转换为'2017-01-23'的时间格式。
阅读全文