且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Spark SQL“< =>"操作员

更新时间:2022-11-27 08:10:12

查看"Spark SQL编程指南中支持的Hive功能"部分

Checkout the Section "Supported Hive Feature on Spark SQL Programming guide link and you will find it in the list of Hive Operators supported by Spark.

这是它的作用:

  • 对于非空操作数,使用EQUAL(=)运算符返回相同的结果

但是:

  • 如果两者均为NULL,则返回TRUE

  • it returns TRUE if both are NULL

如果其中之一为NULL,则返回FALSE

it returns FALSE if one of them is NULL