我对SQL知之甚少,但我仍然想问这个论坛。
我的工作是处理具有空值的记录。我的意思是我们有自然键(假设有4列),如果列中的任何一列获得NULL
值,那么应将其路由到另一个表,以便可以将其报告给客户端。
AFAIK SQL
只提供一个输出,不能拆分。我们有什么方法可以在SQL
/ spark SQL
处理这个问题吗?我需要使用spark
执行这项工作。
流程是:
虽然你不能一次性完成,但你可以通过上述步骤来完成。
在Hive中创建表后,您可以使用PySpark,
#Set all the imports and enable Hive support for the session
#Dataframe to hold rows where either of 4 columns is null
df=spark.sql("select * from tblName where col1 is null or col2 is null or col3 is null or col4 is null")
#Write the resulting dataframe to a Hive table
df.saveAsTable('tableName') #Use other arguments in saveAsTable as required