Edit: solved!
Is there a way to include multiple where
conditions?
Example:
data: select num:("1","2","3","4","5") parity:("odd","even","odd","even","odd") prime:(0,1,1,0,1) from 0
What I want:
extract num where parity="even" and prime from data
Edit: Of course I find it as soon as I post. The answer is brackets!
extract num where (parity="even") & prime from data