My current query looks like this:
SELECT * FROM fiberbox f WHERE f.fiberBox LIKE \'%1740 %\' OR f.fiberBox LIKE \'%1938 %\' OR f.fiberBox LIKE \'%1940 %\' >
Regexp way with list of values
SELECT * FROM table WHERE field regexp concat_ws("|", "111", "222", "333");