Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Robert Bain

Robert Bain

Robert Bain has asked 1 questions and find answers to 1 problems.

Stats

24
EtPoint
5
Vote count
1
questions
1
answers

About

SELECT a.pokemon_name, a.name, a.type, a.damage, a.desc FROM Attack a INNER JOIN ( SELECT type, MAX(damage) MaxD FROM Attack GROUP BY Type ) b ON a.Type = b.Type AND a.damage = b.MaxD WHERE a.type!="none"

SELECT was, gonna_be FROM evolves WHERE i_am = "dragonair

Robert Bain questions