I have a question and since I did not find anything on the internet I decided to ask you, well, I have a MySql table and this table contains an ENUM field that can be 'yes' or 'no', I wonder if it is possible to sort the results for those values, like this
SELECT * FROM tabela ORDER BY tabela.coluna = 'nao'
In order for the displayed values to not appear first, the problem is that I can not make it work with codeigniter, what do I do?