I have a manageable menu, where you need to organize the items by ID. Each menu item corresponds to an ID.
$rsm = exesql('SELECT * FROM produtos_categorias WHERE id_pai = 0 AND ativo = "S" ORDER BY categoria ASC')
This is the organization I own. He is organizing by category. How would I organize by ID where I can select the specific IDs?
I tried ORDER BY ID[1,2,4,8]
and it did not work.