i gibi bir sorgu varsa
SELECT * FROM table WHERE id IN (3,6,1,8,9);
this array of the ids is build in php dynamically , and the order is important to me.
$my_array = array (3,6,1,8,9) ;
nasıl ben elemanları benim dizi görünür hangi sıraya göre sıralayabilirsiniz?
its possible to do it in MYSQL query, or i must to order it after via php ?