From 8ec9183df5035f6ea46ac2a581b3838deb3557ea Mon Sep 17 00:00:00 2001 From: "Shao Yu-Lung (Allen)" Date: Mon, 21 Sep 2020 14:11:22 +0800 Subject: [PATCH] Doc - Begins with / Ends with, SQL example is reversed (#12113) --- doc/Alerting/Rules.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/Alerting/Rules.md b/doc/Alerting/Rules.md index aa015c2472..aeeffb5dd8 100644 --- a/doc/Alerting/Rules.md +++ b/doc/Alerting/Rules.md @@ -30,12 +30,12 @@ __Conditions__ can be any of: - Not Equals `!=` - In `IN` - Not In `NOT IN` -- Begins with `LIKE ('%...')` -- Doesn't begin with `NOT LIKE ('%...')` +- Begins with `LIKE ('...%')` +- Doesn't begin with `NOT LIKE ('...%')` - Contains `LIKE ('%...%')` - Doesn't Contain `NOT LIKE ('%...%')` -- Ends with `LIKE ('...%')` -- Doesn't end with `NOT LIKE ('...%')` +- Ends with `LIKE ('%...')` +- Doesn't end with `NOT LIKE ('%...')` - Between `BETWEEN` - Not Between `NOT BETWEEN` - Is Empty `= ''`