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 %\' >
This would be correct:
SELECT * FROM table WHERE field regexp concat_ws("|",( "111", "222", "333" ));