A sql lab filled with pokemon data

part4-FinalReport.txt 386B

12345678
  1. select p.name as 'Pokemon Name',t.trainername as 'Trainer Name', pt.pokelevel as 'Level', p.primary_type as 'Primary Type', p.secondary_type as 'Secondary Type'
  2. from pokemon_trainer pt
  3. join trainers t
  4. on pt.trainerID = t.trainerID
  5. join pokemons p
  6. on p.id = pt.pokemon_id
  7. Ace Duo Elina and Sean are the strongest trainers because they have a couple of very high-leveled pokemons