I want to sort / order it (desc or asc how i want it) by the database table column “plays”
Im totally confused. Just found a solution for select but not collection_select?
some code of my view
<%= f.collection_select :player1, Player.all, :id, :name %>
dont know how to sort / order
there are also columns in the database table like “plays”, “goals” …
Just pass actually ordered collection to collection_select helper:
So, in your source example it will look like this: