VD
Size: a a a
VD
KZ
createdon. So far, it's easy. But. For the 3 first rows, I want to display 3 specifics id in a specific order. How can I do that?E
createdon. So far, it's easy. But. For the 3 first rows, I want to display 3 specifics id in a specific order. How can I do that?KZ
KZ
ORDER BY field(id,21,11) AND createdon DESC but it didn't work (basically it starts by 11, then 21) and if I replace createdon by menuindex id = 21 isn't displayed, that's why I think it's not a good method.МН
ORDER BY field(id,21,11) AND createdon DESC but it didn't work (basically it starts by 11, then 21) and if I replace createdon by menuindex id = 21 isn't displayed, that's why I think it's not a good method.KZ
FIND_IN_SET('21,11', id) doesn't workKZ
KZ
KZ
МН
U
KZ
(id, '21,11') and it display 11 then 21.KZ
FIND_IN_SET( id, '21,11' ) ASC = 21 is the last result and 11 isn't displayedKZ
DK
DK
KZ
DM