I am trying to demonstrate the difference between how ruby and and postgres treat null equality.
For example, in ruby, I run nil == nil and get true. I want to try to run the same type of query in postgres and show that null = null is false, but not sure how to structure it.
Alternatively show that null = null is true and null != null is also true.