MySQL Search comme un premier match exact

SELECT * FROM table 
WHERE column LIKE '%$search%'
order by INSTR(column, '$search')
Matteoweb