它在sqlContext.implicits._
中的哪里定义$“ string”来表示对父数据框的列的数据框调用?具体来说,我对看到以下内容感到困惑:
import sqlContext.implicits._
df.where($"type".isin("type1","type2") and $"status".isin("completed","inprogress"))
最佳答案
如果您看到following link
类SQLContext.implicits $ .StringToColumn
将$“ col name”转换为Column。
Here is the link for latest version。