What is the difference between != and <> operators?

后端 未结 4 358
旧巷少年郎
旧巷少年郎 2021-01-17 11:09

I don\'t like not knowing this as there may be situations when I need to use one instead of the other. It seems in most cases they produce the same results but I am taking a

4条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-17 11:30

    According to this: http://www.postgresql.org/docs/current/static/functions-comparison.html The operator != gets transformed to <> in the parse stage.

提交回复
热议问题