Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,Hive 在多个列上支持不同的。就像从表中选择不同的(a,b,c,d)一样。如果没有,有没有办法做到这一点?
是的,Hive 确实支持多列上的不同。您可以通过以下方式做到这一点
SELECT distinct col1, col2, col3 from TABLE
如果要选择不同的行,可以*改用
*
SELECT DISTINCT * FROM TABLE