在stackoverflow看到如下问题:
Babyfood, plums, bananas and rice, strained Bananas, dehydrated, or banana powder Bananas, raw Bread, banana, prepared from recipe, made with margarine CAMPBELL Soup Company, V8 SPLASH Juice Drinks, Strawberry Banana CAMPBELL Soup Company, V8 SPLASH Smoothies, Strawberry Banana CAMPBELL Soup Company, V8 V. FUSION Juices, Strawberry Banana
SELECT title,LOCATE('banana',title) FROM myTable WHERE LOCATE('banana',title) > 0 ORDER BY LOCATE('banana',title)
SELECT title, INSTR(title, 'banana') as index FROM table WHERE title LIKE '%banana%' ORDER BY index != 0, index