What does <> mean?

后端 未结 7 672
-上瘾入骨i
-上瘾入骨i 2020-12-03 07:23

I have seen this before in SQL and VB, I am now reverse engineering an Excel speadsheet and have come across the following formula:

=IF(D23<>0,\"Insufficent         


        
7条回答
  •  無奈伤痛
    2020-12-03 07:37

    Yes in SQl <> is the same as != which is not equal.....excepts for NULLS of course, in that case you need to use IS NULL or IS NOT NULL

提交回复
热议问题