eq¶
Description¶
Return true if A is equal to B. The function follows ternary
logic and returns null
if
any of its inputs is null
. To compare values that can potentially be null
,
consider using the same function.
Return type¶
bool
Domain¶
This is a scalar function (calculates a single output value for a single input row.)
Categories¶
Usage¶
eq( a, b )
Argument |
Type |
Required |
Multiple |
Constant |
---|---|---|---|---|
a |
variant |
Required |
Only one |
Variable |
b |
variant |
Required |
Only one |
Variable |