Skip to content

Instantly share code, notes, and snippets.

@Player55555
Player55555 / pokemon.sql Generation 1-9
Last active February 15, 2024 08:12 — forked from pamelafox/pokemon.sql
Pokemon statistics
/*This is every Pokemon from generation 1 to 9. It took me over 50 hours to compile and make work in SQL. I hope you find it useful.*/
CREATE TABLE pokemon(
Number INTEGER,
Name TEXT PRIMARY KEY,
Type_1 TEXT,
Type_2 TEXT,
Total INTEGER,
HP INTEGER,
Attack INTEGER,