In MySql, is there any way of getting a partial match if you use something like:
SELECT * FROM table WHERE name LIKE '%orange llp%';
And the output to be something like:
+-----------------+
| name |
+-----------------+
| Orange |
| Telecomm Orange |
| Orange SA |
| Orange LLP |
+-----------------+
So even if the query is not an exact string to get matches based on just part of it? Hopefully, this makes sense.
EDIT: I'm using this with a nodejs & express backend so the query will be done automatically by the backend

