SportsDB sample database

If you like sports statistics, you can install the PostgreSQL-compatible version of SportsDB on the YugabyteDB distributed SQL database and explore statistics for your favorite sport.

About the SportsDB sample database

SportsDB is a sample sports statistics dataset compiled from multiple sources and encompassing a variety of sports, including football, baseball, basketball, ice hockey, and soccer. It also cross-references many different types of content media. It is capable of supporting queries for the most intense of sports data applications, yet is simple enough for use by those with minimal database experience. The database includes over 100 tables and just as many sequences, unique constraints, foreign keys, and indexes. The dataset also includes almost 80,000 rows of data. It has been ported to MySQL, SQL Server and PostgreSQL.

If you like details, check out this detailed entity relationship (ER) diagram.

SportsDB ER diagram

Install the SportsDB sample database

Follow the steps here to download and install the SportsDB sample database.

Before you begin

To use the SportsDB sample database, you must have installed and configured YugabyteDB. To get up and running quickly, see Quick Start.

1. Download the SportsDB scripts

The SQL scripts that you need to create the SportsDB sample database (YugabyteDB-compatible) are available in the sample directory of the YugabyteDB GitHub repository. Download the following five files.

2. Open the YSQL shell

To open the Yugabyte SQL (YSQL) shell, run the ysqlsh command from the YugabyteDB root directory.

  1. $ ./bin/ysqlsh
  1. ysqlsh (11.2)
  2. Type "help" for help.
  3. yugabyte=#

3. Create the SportsDB database

To create the sportsdb database, run the following YSQL command

  1. CREATE DATABASE sportsdb;

Confirm that you have the sportsdb database by listing out the databases on your cluster.

  1. yugabyte=# \l

Connect to the sportsdb database.

  1. yugabyte=# \c sportsdb
  1. You are now connected to database "sportsdb" as user "yugabyte".
  2. sportsdb=#

4. Build the SportsDB tables and sequences

To build the tables and database objects, run the following command.

  1. sportsdb=# \i share/sportsdb_tables.sql

You can verify that all 203 tables and sequences have been created by running the \d command.

  1. sportsdb=# \d

5. Load sample data into the SportsDB database

To load the sportsdb database with sample data (~80k rows), run the following command to execute commands in the file.

  1. sportsdb=# \i share/sportsdb_inserts.sql

To verify that you have some data to work with, you can run the following simple SELECT statement to pull data from the basketball_defensive_stats` table.

  1. sportsdb=# SELECT * FROM basketball_defensive_stats WHERE steals_total = '5';

6. Create unique constraints and foreign key

To create the unique constraints and foreign keys, run the following commands.

  1. sportsdb=# \i share/sportsdb_constraints.sql

and

  1. sportsdb=# \i share/sportsdb_fks.sql

7. Create the indexes

To create the indexes, run the following command.

  1. sportsdb=# \i share/sportsdb_indexes.sql

Explore the SportsDB database

That’s it! Using the command line or your favorite PostgreSQL development or administration tool, you are now ready to start exploring the SportsDB database and YugabyteDB features.