MySQL安装示例employee数据库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL安装示例employee数据库相关的知识,希望对你有一定的参考价值。

服务器操作系统:CentOS release 6.8 (Final)

数据库系统:mysql 5.5.52

任务:安装employee示例数据库

操作步骤:

[[email protected] ~]# wget https://launchpadlibrarian.net/24493586/employees_db-full-1.0.6.tar.bz2

[[email protected] ~]#tar jxf employees_db-full-1.0.6.tar.bz2

[[email protected] ~]# cd employees_db

[[email protected] employees_db]# mysql -uroot  -p  -t <employees.sql    #导入数据库

Enter password: 

+-----------------------------+

| INFO                        |

+-----------------------------+

| CREATING DATABASE STRUCTURE |

+-----------------------------+

+------------------------+

| INFO                   |

+------------------------+

| storage engine: InnoDB |

+------------------------+

+---------------------+

| INFO                |

+---------------------+

| LOADING departments |

+---------------------+

+-------------------+

| INFO              |

+-------------------+

| LOADING employees |

+-------------------+

+------------------+

| INFO             |

+------------------+

| LOADING dept_emp |

+------------------+

+----------------------+

| INFO                 |

+----------------------+

| LOADING dept_manager |

+----------------------+

+----------------+

| INFO           |

+----------------+

| LOADING titles |

+----------------+

+------------------+

| INFO             |

+------------------+

| LOADING salaries |

+------------------+

[[email protected] employees_db]# time mysql -uroot  -p  -t < test_employees_sha.sql   #验证数据库

Enter password: 

+----------------------+

| INFO                 |

+----------------------+

| TESTING INSTALLATION |

+----------------------+

+--------------+------------------+------------------------------------------+

| table_name   | expected_records | expected_crc                             |

+--------------+------------------+------------------------------------------+

| employees    |           300024 | 4d4aa689914d8fd41db7e45c2168e7dcb9697359 |

| departments  |                9 | 4b315afa0e35ca6649df897b958345bcb3d2b764 |

| dept_manager |               24 | 9687a7d6f93ca8847388a42a6d8d93982a841c6c |

| dept_emp     |           331603 | d95ab9fe07df0865f592574b3b33b9c741d9fd1b |

| titles       |           443308 | d12d5f746b88f07e69b9e36675b6067abb01b60e |

| salaries     |          2844047 | b5a1785c27d75e33a4173aaa22ccf41ebd7d4a9f |

+--------------+------------------+------------------------------------------+

+--------------+------------------+------------------------------------------+

| table_name   | found_records    | found_crc                                |

+--------------+------------------+------------------------------------------+

| employees    |           300024 | 4d4aa689914d8fd41db7e45c2168e7dcb9697359 |

| departments  |                9 | 4b315afa0e35ca6649df897b958345bcb3d2b764 |

| dept_manager |               24 | 9687a7d6f93ca8847388a42a6d8d93982a841c6c |

| dept_emp     |           331603 | d95ab9fe07df0865f592574b3b33b9c741d9fd1b |

| titles       |           443308 | d12d5f746b88f07e69b9e36675b6067abb01b60e |

| salaries     |          2844047 | b5a1785c27d75e33a4173aaa22ccf41ebd7d4a9f |

+--------------+------------------+------------------------------------------+

+--------------+---------------+-----------+

| table_name   | records_match | crc_match |

+--------------+---------------+-----------+

| employees    | OK            | ok        |

| departments  | OK            | ok        |

| dept_manager | OK            | ok        |

| dept_emp     | OK            | ok        |

| titles       | OK            | ok        |

| salaries     | OK            | ok        |

+--------------+---------------+-----------+

real    0m19.958s

user    0m0.005s

sys     0m0.009s


本文出自 “sky9890” 博客,请务必保留此出处http://sky9896.blog.51cto.com/2330653/1953898

以上是关于MySQL安装示例employee数据库的主要内容,如果未能解决你的问题,请参考以下文章

MySQL练习-employees数据库

MySQL 示例数据库 employees 详解

MySQL表创建及外键

入门MySQL——查询语法练习

mysql 安装employees db

MySQL 子查询使用方式