You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ex: SELECT * from fiberbox where field REGEXP '1740|1938|1940';
the operators starts_with and ends_with are firing queries as: SELECT * from fiberbox where field LIKE '%23,44';
But mysql LIKE won't work for multiple values. REGEX should be used instead of LIKE. Ideal query should be: SELECT * from fiberbox where field REGEXP '1740|1938|1940';
The text was updated successfully, but these errors were encountered:
Ex: SELECT * from fiberbox where field REGEXP '1740|1938|1940';
the operators starts_with and ends_with are firing queries as:
SELECT * from fiberbox where field LIKE '%23,44';
But mysql LIKE won't work for multiple values. REGEX should be used instead of LIKE. Ideal query should be:
SELECT * from fiberbox where field REGEXP '1740|1938|1940';
The text was updated successfully, but these errors were encountered: