试图在toad4apachehadoop(hive)中运行它,但它无法识别top函数。如何重新格式化?
select top 1000 * from Finance.ACCT_LIST
idfiyjo81#
你可以用 LIMIT :
LIMIT
select * from Finance.ACCT_LIST order by somecolumn limit 1000
你应该加一个 order by 子句来获取一致的行集。
order by
1条答案
按热度按时间idfiyjo81#
你可以用
LIMIT
:你应该加一个
order by
子句来获取一致的行集。