I have a table and I’m trying to filter values with “apple m” on name
select * from table where name like '%apple%m%'
+-------+-------------------------------+------------------------+
| id | name | cat |
+-------+-------------------------------+------------------------+
| 2757 | Apple MacBook | Laptops & Accessories |
| 2777 | Apple Bottom Tops | Western Wear |
| 2752 | Apple Monitors | Desktop Components |
| 2756 | Apple Desktop & Monitors | Desktops & Accessories |
| 2778 | Apple Bottom Tunics | Tops |
| 2776 | Apple Selector & Smart Box | Video & TV Accessories |
| 2787 | Apple Pie Pyjamas | Girl Clothes |
| 2773 | Apple Selector & Smart Box | TV & Video Accessories |
| 2780 | Apple Fun Card Games | Toys |
| 38304 | Snapple Mixer juicer grinders | Kitchen Appliances |
+-------+-------------------------------+------------------------+
I want to sort display values which start with “apple” and “m” like below:
+------+--------------------------+------------------------+
| id | name | cat |
+------+--------------------------+------------------------+
| 2757 | Apple MacBook | Laptops & Accessories |
| 2752 | Apple Monitors | Desktop Components |
| 2756 | Apple Desktop & Monitors | Desktops & Accessories |
| | ---Rest all after this-- | |
+------+--------------------------+------------------------+