标签: sql hive presto
我得到In strict mode, if ORDER BY is specified, LIMIT must also be specified,所以我不能省略limit。我需要获取几十亿行,所以我尝试了更高的限制:limit 10000000000。但是,我得到了FAILED: NumberFormatException For input string: "10000000000"。
In strict mode, if ORDER BY is specified, LIMIT must also be specified
limit
limit 10000000000
FAILED: NumberFormatException For input string: "10000000000"
删除严格模式不是一种选择。我怎么回报几十亿行?