ได้ละครับสำหรับคำถามแรกของกระทู้ ORDER BY LIKE อย่างไร ถามเองตอบเอง555...
ตอบไว้เป็นแนวทางให้ผู้มีปัญหาในลักษณะเดียวกันนะครับ
Code (PHP)
$sql="SELECT * FROM XXX
ORDER BY case
when name_item LIKE '%หมู%' then 1
when name_item LIKE '%ไก่%' then 2
when name_item LIKE '%ปลาหมึก%' then 3
when name_item LIKE '%ปลา%' then 4
when name_item LIKE '%กุ้ง%' then 5
else 6
end , id ASC";