因此,我正在使用Python 3,pyspark和Hive。
我想遍历文本并在与给定日期匹配的情况下输出。下面是我的代码:
date=["2019-07-10","2013-04-10"]
w=spark.sql("select current_date()")
for q in date:
if w in q:
print(q)
但是我仍然收到此错误:
'in <string>' requires string as left operand, not DataFrame
任何想法或建议。