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.

(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 have tried different ways and I didn't get it.

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@spark.apache.org For additional 
commands, e-mail: user-h...@spark.apache.org

Reply via email to