我是Spark的新手,我需要关于如何在sparkSQL中使用IN条件的帮助SELECT姓名,年龄WHERE年龄IN(25,35,45)FROM表
mklgxw1f1#
这应该可以df.where(col('age').isin([25, 35, 45)).select('name', 'age')有关参考,请参见spark documentation
df.where(col('age').isin([25, 35, 45)).select('name', 'age')
1条答案
按热度按时间mklgxw1f1#
这应该可以
df.where(col('age').isin([25, 35, 45)).select('name', 'age')
有关参考,请参见spark documentation