官方的样本数据库:http://dev.mysql.com/doc/index-other.html
最大的样本数据库employees: https://launchpad.net/test-db/+download
导入employees数据库:详细可以查看readme
步骤
$ bunzip2 employees_VERSION.tar.bz2
$ cd employees_VERSION
$ mysql -uroot -ppassword -t < employees.sql
如果出错使用下面verbose选项
$ mysql -v -v -v -t < employees.sql
测试数据库是否安装成功
$ mysql -t < test_employees_md5.sql
$ mysql -t < test_employees_sha.sql