Getting Started

Download CS320_Derby.zip and CS320_Lab04.zip. Import them into your Eclipse workspace
(File->Import…->General->Existing projects into workspace->Archive File). You will see a projects called CS320_Derby and CS320_Lab04 in the Package Explorer. You will be running the SQLDemo class in the CS320_Lab04 project.

Setting up the database

Execute the SQLDemo class as a Java application.

Use create table commands to create books and authors tables. From the SQL> prompt, enter the following commands. Rather than typing them, you can actually copy each command from this page and paste it into the SQL prompt - then press “Enter” to execute the command.

create table books (
    book_id int
        primary key generated always as identity (start with 1, increment by 1),
    author_id int,
    title varchar(70),
    isbn varchar(15),
    published int
);

create table authors (
    author_id int
        primary key generated always as identity (start with 1, increment by 1),
    lastname varchar(40),
    firstname varchar(40)
);

Next, use import commands to load data into these tables:

import books books.csv;

import authors authors.csv;

Your database is now populated with data.

Now, use the alter table command to establish author_id as a foreign key in the books table. Enter the following command:

alter table books
    add foreign key (author_id)
    references authors (author_id);

The schemas of the database tables are described in the notes for Lecture 13.

NOTE: You must work individually on this lab. It is imperative that everyone on your team be able to construct SQL queries, to establish a connection between a Java program and a SQL database, and to write SQL queries embedded in Java code. This WILL come up on the exam.

Task

Compose and execute SQL queries that retrieve the following information. For the later queries, you will have to do some research at w3schools in order to learn the proper SQL commands to complete the query. This is intended as an exercise to familiarize you with the w3schools website, as well as reinforce researching for new information on your own.

Each query should be terminated with a semicolon (;). For example, here is session showing a query to select all of the tuples in the authors table (user input in bold):

SQL> select * from authors;
AUTHOR_ID    LASTNAME FIRSTNAME
--------- ----------- ---------
        1       Adams   Douglas
        2       Adams     Scott
        3    Breathed  Berkeley
        4     Chapman    Graham
        5      Cleese      John
        6     Gilliam     Terry
        7     Hawking   Stephen
        8        Idle      Eric
        9       Jones     Terry
       10    Kahneman    Daniel
       11    Mlodinow   Leonard
       12      Newton     Isaac
       13       Palin   Michael
       14   Watterson      Bill
OK (14 rows(s))

Make sure to verify that the results of each query are correct by comparing against the database tables themselves.

What to submit

Create a text file named lab04-username.txt (replace “username” with your YCP username). For each query listed above, copy the following information into your text file:

You can cut and paste your queries and results from the console window as shown in the example above. If you create and populate this file as you do the lab, you’ll be able to copy the queries back into the SQL> window to repeat, test, and modify them. You will also reuse the steps to add a new book (and author) to the database in lab05.

Upload your solution text file to Marmoset in the lab04 project.