Hi Salvatore,
Take care, in SQL expressions / SQL RDBS engines, most of time the wildcard specials chars are:
% (and not *) for strings
_ means 1 char to replace
so _rt means art, brt, crt, etc. So the "StockAlert" matches it.
To use the _ sign you must escape it, usually \_ but the syntax may depend on the SQL engine.
Reminder: the SQL expression syntax is not the same than regex syntax (used in Javascript or other development languages).
Regards
J-Serge