What does <> mean?

后端 未结 7 668
-上瘾入骨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

    0 讨论(0)
  • 2020-12-03 07:40

    could be a shorthand for React.Fragment

    0 讨论(0)
  • 2020-12-03 07:48

    Yes, it means "not equal", either less than or greater than. e.g

    If x <> y Then
    

    can be read as

    if x is less than y or x is greater than y then

    The logical outcome being "If x is anything except equal to y"

    0 讨论(0)
  • 2020-12-03 07:53

    It means not equal to. The same as != seen in C style languages, as well as actionscript.

    0 讨论(0)
  • 2020-12-03 07:55

    "Does not equal"

    0 讨论(0)
  • 2020-12-03 07:57

    I instinctively read it as "different from". "!=" hits me milliseconds after.

    0 讨论(0)
提交回复
热议问题