Last active
November 11, 2017 01:59
-
-
Save srsgores/13743b592b88a06b72270c97ee92e957 to your computer and use it in GitHub Desktop.
Query pokemon data
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT p.species_id, p.height, p.weight, p.base_experience, p.is_default, ps.*, pev.* FROM pokemon p | |
INNER JOIN pokemon_species ps on ps.id=p.id | |
INNER JOIN pokemon_evolution pev on pev.id=p.id | |
INNER JOIN pokemon_stats pstat on pstat.pokemon_id=p.id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Getting duplicates...