thanks, it works.
2015-03-03 13:32 GMT+01:00 Cheng, Hao :
> Using where('age >=10 && 'age <=4) instead.
>
> -Original Message-
> From: Guillermo Ortiz [mailto:konstt2...@gmail.com]
> Sent: Tuesday, March 3, 2015 5:14 PM
> To: user
> Subject:
Using where('age >=10 && 'age <=4) instead.
-Original Message-
From: Guillermo Ortiz [mailto:konstt2...@gmail.com]
Sent: Tuesday, March 3, 2015 5:14 PM
To: user
Subject: SparkSQL, executing an "OR"
I'm trying to execute a query with Spark.
(Ex
I'm trying to execute a query with Spark.
(Example from the Spark Documentation)
val teenagers = people.where('age >= 10).where('age <= 19).select('name)
Is it possible to execute an OR with this syntax?
val teenagers = people.where('age >= 10 'or 'age <= 4).where('age <=
19).select('name)
I hav