多字段求和并排序的语句怎么写?如:表table字段:id name a b c1 ade 3 6 42 cry 2 9 5求各id中字段a+b+c之和并排序请问怎么写这个语句?[解决办法]select *,a+b+c as aa from tt order by aa