I am using doctrine 2.1 DQL and i want to get a table data with order-by like this:

SELECT u FROM User u ORDER BY u.s * u.t

s and t are two mapped column fields on User.

But i am getting QueryException.

Can anyone please help me?

link|improve this question

50% accept rate
forgot to mention that it is DQL. – Ashish Dec 4 '11 at 19:13
feedback

1 Answer

this should do the trick:

SELECT u, (u.s * u.t) AS multiplication FROM User u ORDER BY multiplication
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.