Hi,
  Just a quick quesiton,  I have a table that contains difined as 

create table picks(
   handle char(30) primary key,
   <...>
  total int unsigned);

there is a user table that has a list of handles and other user info.  handle is the 
primary key.

If I issue the command "select handle, sum(total) group by handle;" I get the 
information that I'm looking for, however I'd like to sort it by the sum that I get.  
Is there a way of accomplishing this?  


Curtis

Reply via email to