1-MySQL - 样本数据库
before
本篇收录用于学习和测试的样本数据库。
MySQL官方提供的示例数据库,参见:https://dev.mysql.com/doc/index-other.html
sakila
https://dev.mysql.com/doc/index-other.html
https://dev.mysql.com/doc/sakila/en/
https://downloads.mysql.com/docs/sakila-db.zip
来自MySQL官方的样本数据库,参考上面连接中的下载地址进行下载,下载到本地,有两个重要的文件:
-- 数据库结构文件
sakila-schema.sql
-- 表结构文件和数据
sakila-data.sql
来看导入:
-- 两个数据文件在/tmp目录下
[root@cs tmp]# pwd
/tmp
[root@cs tmp]# ls sakila-*
sakila-data.sql sakila-schema.sql
-- 登录到MySQL执行
mysql> source /tmp/sakila-schema.sql;
mysql> source /tmp/sakila-data.sql;
mysql> use sakila;
Database changed
mysql> show tables;
+----------------------------+
| Tables_in_sakila |
+----------------------------+
| actor |
| actor_info |
| address |
| category |
| city |
| country |
| customer |
| customer_list |
| film |
| film_actor |
| film_category |
| film_list |
| film_text |
| inventory |
| language |
| nicer_but_slower_film_list |
| payment |
| rental |
| sales_by_film_category |
| sales_by_store |
| staff |
| staff_list |
| store |
+----------------------------+
23 rows in set (0.00 sec)
OK了。
下图是navicat生成的数据关系模型:
that's all, see also: