sql - Oracle Query not Working -


oracle query not working. please specify wrong in query?

(select hacker_id,challenge_id, max(score) soc   submissions   group hacker_id,challenge_id   having max(score)>0) t2; 

please read @oldprogrammer comments. anyway, think should work you

select hacker_id,challenge_id, max(score) soc     submissions    group hacker_id,challenge_id    having max(score)>0; 

Comments

Popular posts from this blog

java - Jasper subreport showing only one entry from the JSON data source when embedded in the Title band -

mapreduce - Resource manager does not transit to active state from standby -

serialization - Convert Any type in scala to Array[Byte] and back -