Does anyone know of any resources that provide good, useful stock datasets? For example, I\'ve downloaded a SQL script that includes all of the U.S. states, cities, and zipcode
The MySQL documentation site has a list to a downloadable dataset already in SQL format, ready for use in a database.
cd Downloads
gunzip world_innodb.sql.gz
world
database$ mysql
mysql> create database world
mysql> quit
cat world_innodb.sql | mysql world
This dataset is idea for learners, looking to practice their SQL.