Assignment 2: Campus (Campusid, Campusname, Street, City, State, Zip, Phone
Assignment 2: Campus (Campusid, Campusname, Street, City, State, Zip, Phone
Assignment 2: Campus (Campusid, Campusname, Street, City, State, Zip, Phone
Overview
In this assignment you will build a sample database similar to the preferred
solution for Assignment 1. You will create the tables in Oracle, add sample data
and create several queries.
Activities
Step 1.
Using Oracle, create the tables identified below in the following order:
DATABASE TABLES:
STRUCTURE NOTES:
Step 2.
Use the Insert Into Command to add your data to each table. Add data to your
primary tables first and then to your secondary tables. Also, remember to use the
sequence code with your insert statement to add the auto number value to each
primary key field.
DATA TO BE INSERTED:
Campus:
'1','IUPUI','425 University Blvd.','Indianapolis', 'IN','46202', '317-274-4591',.08
'2','Indiana University','107 S. Indiana Ave.','Bloomington', 'IN','47405', '812-
855-4848',.07
'3','Purdue University','475 Stadium Mall Drive','West Lafayette', 'IN','47907',
'765-494-1776',.06
Position:
'1','Lecturer', 1050.50
'2','Associate Professor', 900.50
'3','Assistant Professor', 875.50
'4','Professor', 700.75
'5','Full Professor', 500.50
Members:
'1','Ellen','Monk','009 Purnell', '812-123-1234', '2', '5', 12
'2','Joe','Brady','008 Statford Hall', '765-234-2345', '3', '2', 10
Prices: Note - Remember that these Primary Key Values should be entered
using the Sequence (autonumber)
'1','Beer/Wine', 5.50
'2','Dessert', 2.75
'3','Dinner', 15.50
'4','Soft Drink', 2.50
'5','Lunch', 7.25
FoodItems:
'10001','Lager', '1'
'10002','Red Wine', '1'
'10003','White Wine', '1'
'10004','Coke', '4'
'10005','Coffee', '4'
'10006','Chicken a la King', '3'
'10007','Rib Steak', '3'
'10008','Fish and Chips', '3'
'10009','Veggie Delight', '3'
'10010','Chocolate Mousse', '2'
'10011','Carrot Cake', '2'
'10012','Fruit Cup', '2'
'10013','Fish and Chips', '5'
'10014','Angus Beef Burger', '5'
'10015','Cobb Salad', '5'
Orders:
'1', '9', 'March 5, 2005'
'2', '8', 'March 5, 2005'
'3', '7', 'March 5, 2005'
'4', '6', 'March 7, 2005'
'5', '5', 'March 7, 2005'
'6', '4', 'March 10, 2005'
'7', '3', 'March 11, 2005'
'8', '2', 'March 12, 2005'
'9', '1', 'March 13, 2005'
OrderLine:
'1','10001',1
'1','10006',1
'1','10012',1
'2','10004',2
'2','10013',1
'2','10014',1
'3','10005',1
'3','10011',1
'4','10005',2
'4','10004',2
'4','10006',1
'4','10007',1
'4','10010',2
'5','10003',1
'6','10002',2
'7','10005',2
'8','10005',1
'8','10011',1
'9','10001',1
Step 3.
NOTE: Before you begin to run Queries 1 - 8, Enter the following two commands
at the SQL Prompt:
This will allow you to see most, if not all, of your data without it wrapping.
Hand In
Submit one Clean combined text file that has each query name, query
command and the output directly under the command in the order that they
are listed in the assignment above.