1
0

delete in operator

This commit is contained in:
Sinan Sonmez (Chaush) 2022-08-22 17:13:45 +02:00 committed by GitHub
parent 3b3be20cd8
commit a931700364
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,6 @@ P.S.: If you are a developer or have a technical knowledge to read a code and wo
* `>=` greater than or equals
* `=~` to match against a regular expression
* `!=~` does not match this regular expression
* `in` to specify multiple values in a `where` clause
Further, you can combine multiple of these with `and`. Example `prop =~ /something/ and prop != “something”`.