I would like to add where condition for a column with Multiple values in DataFrame.
Its working for single value, for example.
df.where($"type".==="type1" && $"status"==="completed").
How can i add multiple values for the same column like below.
df.where($"type" IN ("type1","type2") && $"status" IN ("completed","inprogress")
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…