A sql lab filled with pokemon data

Part 4 455B

1234567
  1. SELECT DISTINCT name, trainername, pokelevel, primary_type, secondary_type from Pokemon.pokemons
  2. left join pokemon_trainer ON Pokemon.pokemons.id = pokemon_id
  3. left join trainers on pokemon_id where pokelevel = 100 AND secondary_type IS NOT NULL;
  4. I am no expert on pokemons, but i have been told that 100 is the highest pokelevel, so i regard
  5. that as the strongest pokemon. And any trainer fortunate to have one, i reckon is stronger the more they have.