Article Search

Search Help & Syntax
Operators
InputMeaningExample
Space / AND / UNDBoth terms must be presentAquaponics Hydroponics
OR / ODERAt least one term must be presentFish OR Plant
NOT / NICHT / -Term must not be presentAquaponics NOT Fish  or  Aquaponics -Fish
"…"Exact phrase"closed loop system"

Operators can be combined: "nutrient cycle" AND NOT Fish OR Plant

Regular Expressions in SQL ERE / ICU
PatternMeaning
Aqua.onics. = any single character (Aquaponics, Aquatonics …)
Fish|PlantFish or Plant
^AquaText starts with "Aqua" (beginning of line)
system$Text ends with "system"
n[uo]trientCharacter class: nutrient, nOtrient …
Nitrate++ = one or more times (Nitrate, Nitrateee …)
Nitrate** = zero or more times
Nitrate{2,4}Exactly 2–4 repetitions of the last character
(Aqua|Hydro)ponicsGroup: Aquaponics or Hydroponics
\bFish\bWord boundary (whole word only, from MySQL 8.0)
[[:alpha:]]POSIX class: any letter

⚠ MySQL REGEXP is case-insensitive by default — enable the "Match case" toggle for case-sensitive matching.
AND/OR/NOT can be combined with regex: n[uo]trient AND NOT Fish (each term is then treated as a regex pattern).

URL