Hi I got A table for articles on my page wich contains a variable for the 
date it was submitted and the number of views (content title...)
I tried to do a select which gives me the newest five of this table 
(orderedby=~article.date) Now I want to sort those five by the number of 
views.
I tried it with appending the ordered by with |article.views and with 
|~article.views but the result is the same I get the newest five sorted by 
views but with the least views first.
I know I could reverse the order with some lines of python code but there 
must be a simple way to do it.

Reply via email to