I have a query that gets information using the LIKE
SELECT * FROM table WHERE column LIKE '%$search%'
Now if i search for "Hello there" it will return something like
Oh hello there
Hello there
Hello there how are you
But i want to sort it by exact match first so it should be like
Hello there
Hello there how are you
Oh hello there
With the exact match on top and the exact match at the start of the sentence after that