diff --git a/share/html/Search/Simple.html b/share/html/Search/Simple.html
index 8d61d66827a..c6043a0bd43 100644
--- a/share/html/Search/Simple.html
+++ b/share/html/Search/Simple.html
@@ -81,6 +81,16 @@
Note that common words like 'the', 'is', 'this', etc. are excluded from searches since they are so common they find excessive results.
% }
+% if ( RT->Config->Get('DatabaseType') eq 'mysql' ) {
+Text searches accept some extra syntax, to help refine searches:
+ - Multiple words in quotes will be searched with an OR, so "first second" will find tickets with "first" OR "second" somewhere in the history.
+ - Multiple words with single quotes outside double quotes like '"first second"' will find results only where 'second' immediately follows 'first'.
+ - Add a plus to search terms to require all of them like an AND, like "+first +second". This will find tickets with history entries that contain "first" and "second".
+ - Exclude results with a minus sign before a word like "first -second", which will exclude results containing 'second'.
+ - Include "*" as a wildcard at the end of a term to search for multiple words that start with the same letters, like "request*". This will find tickets with the words "request", "requestor", and "requested".
+ - Note that common words like 'the', 'is', 'this', etc. are excluded from searches since they are so common they find excessive results. Also, words less than 3 characters are not indexed, so search for words longer than this limit.
+
+% }
% } else {
<&|/l, $fulltext_keyword &>Searching the full text of every ticket can take a long time, but if you need to do it, you can search for any word in full ticket history by typing [_1]word.&>
% }