i wanted to retrieve rows from the mysql database and order them by votes:
votes_up + votes_down = votes
table:
posts{id, post_text, votes_up, votes_down, date}
ORDER BY votes
i wanted to retrieve rows from the mysql database and order them by votes:
votes_up + votes_down = votes
table:
posts{id, post_text, votes_up, votes_down, date}
ORDER BY votes
SELECT id, post_text, votes_up, votes_down, date, sum(votes_up + votes_down) as 'Votes'
FROM posts
ORDER BY sum(votes_up + votes_down)
Traditional SQL allows you to use column aliases in the ORDER BY:
SELECT p.votes_up + p.votes_down AS total_votes
FROM POSTS p
ORDER BY total_votes
You can use blablabla ORDER BY sum(votes_up + votes_down)
, but be careful and don't use this on high-loaded production databases, because sum() will be calculeted "on the fly" and it will be very slow for large tables!