Skip to content

Commit

Permalink
Update guides/databases-sqlite.md
Browse files Browse the repository at this point in the history
  • Loading branch information
patricebender committed Jun 3, 2024
1 parent 83a0091 commit 1d6c640
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion guides/databases-sqlite.md
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,9 @@ SELECT.one.localized(Books)
The new database services guarantee identical behavior of these logic operators:

- `==`, `=` — with `= null` being translated to `is null`
- `!=`, `<>` — with `!= null` being translated to `is not null`
- `!=`, `<>`
+ with `!= null` being translated to `is not null`
+ in all other cases, `!=` is translated to `<>`

* `<`, `>`, `<=`, `>=`, `IN`, `LIKE` — are supported as is in standard SQL

Expand Down

0 comments on commit 1d6c640

Please sign in to comment.