thiago258 Posted August 2, 2011 Report Share Posted August 2, 2011 (edited) Olá galera, antes costumava usar o oracle, lá eu podia fazer isso tranquilamenteselect (max(sum(id))) from teste258 group by id;porem, se eu fazer isso, no mysql, da erro, algo save algum jeito de se fazer funçoes de agregação dentro de função de agregação? Edited August 2, 2011 by Denis Courcy Codigo ente [code][/code] Quote Link to comment Share on other sites More sharing options...
0 Denis Courcy Posted August 2, 2011 Report Share Posted August 2, 2011 Olá galera, antes costumava usar o oracle, lá eu podia fazer isso tranquilamenteselect (max(sum(id))) from teste258 group by id; porem, se eu fazer isso, no mysql, da erro, algo save algum jeito de se fazer funçoes de agregação dentro de função de agregação? Tenta assim:select sum(id) from teste258 group by id order by sum(id) desc limit 1 Quote Link to comment Share on other sites More sharing options...
Question
thiago258
Olá galera, antes costumava usar o oracle, lá eu podia fazer isso tranquilamente
porem, se eu fazer isso, no mysql, da erro, algo save algum jeito de se fazer funçoes de agregação dentro de função de agregação?
Edited by Denis CourcyCodigo ente [code][/code]
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.