We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcabfa2 commit a1ad03cCopy full SHA for a1ad03c
postgresql/check-inequality.md
@@ -5,13 +5,13 @@
5
Like many other languages, PostgreSQL supports the `!=` comparison operator.
6
7
```sql
8
-> select datatype != datatype;
+> select category from animals where datatype != datatype;
9
```
10
11
PostgreSQL also supports the `<>` comparison operator, and actually converts `!=` into `<>` during parsing.
12
13
14
-> select datatype <> datatype;
+> select category from animals where datatype <> datatype;
15
16
17
-[link]()
+[link](https://www.postgresql.org/docs/15/functions-comparison.html)
0 commit comments