MySQL 官方測試庫
github 地址
https://github.com/datacharmer/test_db
MySQL 文檔地址
https://dev.mysql.com/doc/employee/en/sakila-structure.html
安裝測試庫
# 安裝普通的
D:\00\test_db-master>mysql -uroot -proot < employees.sql
# 安裝分區的
D:\00\test_db-master>mysql -uroot -proot < employees_partitioned.sql
# 測試安裝
D:\00\test_db-master>mysql -uroot -proot -t < test_employees_md5.sql
D:\00\test_db-master>mysql -uroot -proot -t < test_employees_sha.sql
Bugs
# 沒有指定用戶名和密碼,無法登錄。
D:\00\test_db-master>mysql < employees_partitioned.sql
ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO)