In My Query one place some other developer using <> (angle brackets)
What does it mean ?
sb.append(" AND nvl(VoidFlag, 'N') <> 'Y' ");
<> operator means not equal to in MS SQL.
It compares two expressions (a comparison operator). When you compare nonnull expressions, the result is TRUE if the left operand is not equal to the right operand; otherwise, the result is FALSE. If either or both operands are NULL, see the topic SET ANSI_NULLS (Transact-SQL).
See here : Not Equal To
Also check :
1) Not equal <> != operator on NULL 2) Testing for inequality in T-SQL
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With