Skip to content

Commit dcf6460

Browse files
committed
fix Not Like condition example to be correct
1 parent 9518750 commit dcf6460

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/site/markdown/docs/conditions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Simple conditions are the most common - they render the basic SQL operators.
2727
| Not Equals | where(foo, isNotEqualTo(x)) | `where foo <> ?` |
2828
| Not In | where(foo, isNotIn(x, y)) | `where foo not in (?,?)` |
2929
| Not In (case insensitive) | where(foo, isNotInCaseInsensitive(x, y)) | `where upper(foo) not in (?,?)` (the framework will transform the values for x and y to upper case)|
30-
| Not Like | where(foo, isLike(x)) | `where foo not like ?` (the framework DOES NOT add the SQL wild cards to the value - you will need to do that yourself) |
30+
| Not Like | where(foo, isNotLike(x)) | `where foo not like ?` (the framework DOES NOT add the SQL wild cards to the value - you will need to do that yourself) |
3131
| Not Like (case insensitive) | where(foo, isNotLikeCaseInsensitive(x)) | `where upper(foo) not like ?` (the framework DOES NOT add the SQL wild cards to the value - you will need to do that yourself, the framework will transform the value of x to upper case) |
3232
| Not Null | where(foo, isNotNull()) | `where foo is not null` |
3333
| Null | where(foo, isNull()) | `where foo is null` |

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy