cse4701 homework 1 solution 1. find the names (last …steve/cse4701/cse4701fa15solns.pdfcse4701...

13
CSE4701 Homework 1 Solution 1. Find the names (Last name and First Name) and State of a. All persons that were in a Movie in 1997 Movies1997(ShowID) = S S ShowID (V Year=1997 (Movies)) MovieActors (PersonID) = S PersonID (V Movies1997.ShowID=MovieRoles.ShowID (Movies1997 x MovieRoles)) 1a.Answer = S Lname,Fname,State ( V Person.PersonID = AllActors.PersonID (Person x MovieActors)) b. All persons that were in a TV show in 1987. TVShows1987(ShowID) = S ShowID (V StartYear=1987 (TVShows)) TVActors (PersonID) = S PersonID (V TVShows1987.ShowID=TVRoles.ShowID (TVShows1987 x TVRoles)) 1b.Answer = S Lname,Fname,State ( V Person.PersonID = AllActors.PersonID (Person x TVActors)) c. All persons that were in either a Movie in 1997 or a TV show in 1987 AllActors(PersonID) = 1a.Answer 1b.Answer d. All persons that were in both a Movie in 1997 or a TV show in 1987 AllActors(PersonID) = 1a.Answer 1b.Answer 2. Find the last names (Last name and First Name) of the directors for all Movies and TV Shows that have the same name (TV Show and Movie have the same names). MovieIDs(ShowID) = S Movies.ShowID (V MovieName = ShowName (Movies x TVShows)) TVShowIDs(ShowID) = S TVShows.ShowID (V MovieName = ShowName (Movies x TVShows)) MovieDirs(PersonID) = S PersonID (V Movies.ShowID = MovieDirectors.ShowID (MovieIDs x MovieDirectors)) TVDirs(PersonID) = S PersonID (V TV.ShowID = TVDirectors.ShowID (TVShowIDs x TVDirectors)) Answer = S Lname,FName ( V Person.PersonID = PersonID (Person x (MovieDirs TVDirs))) 3. Find the names (Last name and First Name) of all actors and their roles for “Friends” for Episodes 11 to 25. Friends(ShowID) = S ShowID (V ShowName=Friends (TVShows)) ActorsandRoles(PersonID, RoleID) = S PersonID, RoleID (V (TVRoles.ShowID=Friends.ShowID)and(EpisodeID>10andEpisodeId<26) (TVRoles x Friends)) RoleNames (PersonID, RLName, RFName) = S PersonID,RLName,RFName (V ActorsandRoles.RoleID=Roles.RoleID (ActorsandRoles x Roles)) Answer = S Lname,Fname,RLName,RFName ( V Person.PersonID = RoleNames.PersonID (Person x RoleNames)) 4. Find the names (Last name and First Name) that played the same Role in a TV and a Movie who won an Emmy for the TV role but did not win an Oscar for the Movie role. TVwithEmmy = S PersonID, RLName, RFName ( (V EmmyFlag=True TVRoles) * RoleID,ShowID Roles) MovieNoOscar = S PersonID, RLName, RFName ( (V OscarFlag=False MovieRoles) * RoleID,ShowID Roles) Answer = S Lname,Fname Person * PersonID (TVwithEmmy (natural join) MovieNoOscar)) 5. Find the names of all Shows or Movies that have won an Emmy (TV Show) or Oscar (Movie). Answer = S ShowName (V NumEmmy>0 (TVShows)) S MovieName (V NumOscar>0 (Movies))

Upload: vankiet

Post on 12-Feb-2018

221 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: CSE4701 Homework 1 Solution 1. Find the names (Last …steve/Cse4701/cse4701fa15solns.pdfCSE4701 Homework 1 Solution 1. Find the names (Last name and First Name) and State of a. All

CSE4701 Homework 1 Solution

1. Find the names (Last name and First Name) and State ofa. All persons that were in a Movie in 1997

Movies1997(ShowID) = ShowID ( Year=1997 (Movies))MovieActors (PersonID) = PersonID ( Movies1997.ShowID=MovieRoles.ShowID (Movies1997 x MovieRoles))1a.Answer = Lname,Fname,State ( Person.PersonID = AllActors.PersonID (Person x MovieActors))b. All persons that were in a TV show in 1987.

TVShows1987(ShowID) = ShowID ( StartYear=1987 (TVShows))TVActors (PersonID) = PersonID ( TVShows1987.ShowID=TVRoles.ShowID (TVShows1987 x TVRoles))1b.Answer = Lname,Fname,State ( Person.PersonID = AllActors.PersonID (Person x TVActors))c. All persons that were in either a Movie in 1997 or a TV show in 1987

AllActors(PersonID) = 1a.Answer 1b.Answer

d. All persons that were in both a Movie in 1997 or a TV show in 1987

AllActors(PersonID) = 1a.Answer 1b.Answer

2. Find the last names (Last name and First Name) of the directors for all Movies and TV Shows that have the same name (TV Show and Movie have the same names).MovieIDs(ShowID) = Movies.ShowID ( MovieName = ShowName (Movies x TVShows))TVShowIDs(ShowID) = TVShows.ShowID ( MovieName = ShowName (Movies x TVShows))MovieDirs(PersonID) = PersonID ( Movies.ShowID = MovieDirectors.ShowID (MovieIDs x MovieDirectors))TVDirs(PersonID) = PersonID ( TV.ShowID = TVDirectors.ShowID (TVShowIDs x TVDirectors))Answer = Lname,FName ( Person.PersonID = PersonID (Person x (MovieDirs TVDirs)))

3. Find the names (Last name and First Name) of all actors and their roles for “Friends” for Episodes 11 to 25.Friends(ShowID) = ShowID ( ShowName=Friends (TVShows))ActorsandRoles(PersonID, RoleID) =

PersonID, RoleID( (TVRoles.ShowID=Friends.ShowID)and(EpisodeID>10andEpisodeId<26)(TVRoles x Friends))RoleNames (PersonID, RLName, RFName) =

PersonID,RLName,RFName ( ActorsandRoles.RoleID=Roles.RoleID (ActorsandRoles x Roles))Answer = Lname,Fname,RLName,RFName ( Person.PersonID = RoleNames.PersonID (Person x RoleNames))

4. Find the names (Last name and First Name) that played the same Role in a TV and a Movie who won an Emmy for the TV role but did not win an Oscar for the Movie role.TVwithEmmy = PersonID, RLName, RFName ( ( EmmyFlag=True TVRoles) * RoleID,ShowID Roles)MovieNoOscar = PersonID, RLName, RFName ( ( OscarFlag=False MovieRoles) * RoleID,ShowID Roles)Answer = Lname,Fname Person * PersonID (TVwithEmmy (natural join) MovieNoOscar))

5. Find the names of all Shows or Movies that have won an Emmy (TV Show) or Oscar (Movie).Answer = ShowName ( NumEmmy>0 (TVShows)) MovieName ( NumOscar>0 (Movies))

Page 2: CSE4701 Homework 1 Solution 1. Find the names (Last …steve/Cse4701/cse4701fa15solns.pdfCSE4701 Homework 1 Solution 1. Find the names (Last name and First Name) and State of a. All

CSE4701 Homework 2 Solution Homework Problem 2.1: For the Chinook Database Schema

a. Find the one or more playlist(s) that contain the largest number of pop tracks. For each playlist that satisfies this condition, print out the name of the playlist and the number of tracks.

SELECT Chinook.Playlist.Name, Chinook.PlaylistTrack.PlaylistId, COUNT(Chinook.PlaylistTrack.PlaylistId) FROM Chinook.Playlist, Chinook.PlaylistTrack, Chinook.Track, Chinook.Album, Chinook.Artist, Chinook.Genre WHERE Chinook.Playlist.PlaylistId = Chinook.PlaylistTrack.PlaylistId AND Chinook.PlaylistTrack.TrackId = Chinook.Track.TrackId AND Chinook.Track.AlbumId = Chinook.Album.AlbumId AND Chinook.Album.ArtistId = Chinook.Artist.ArtistId AND Chinook.Genre.Name='Pop' AND Chinook.Genre.GenreID = Chinook.Track.GenreID GROUP BY Chinook.PlaylistTrack.PlaylistId HAVING COUNT(Chinook.PlaylistTrack.PlaylistId) = (SELECT MAX(A.CNT) FROM (SELECT COUNT(Chinook.PlaylistTrack.PlaylistId) AS CNT from Chinook.Playlist, Chinook.PlaylistTrack, Chinook.Track, Chinook.Album, Chinook.Artist, Chinook.Genre WHERE Chinook.Playlist.PlaylistId = Chinook.PlaylistTrack.PlaylistId AND Chinook.PlaylistTrack.TrackId = Chinook.Track.TrackId AND Chinook.Track.AlbumId = Chinook.Album.AlbumId AND Chinook.Album.ArtistId = Chinook.Artist.ArtistId AND Chinook.Genre.Name='Pop' AND Chinook.Genre.GenreID = Chinook.Track.GenreID GROUP BY Chinook.PlaylistTrack.PlaylistId ) AS A) SELECT Chinook.Playlist.Name, Chinook.Playlist.PlaylistId, COUNT(*) FROM Chinook.Playlist, Chinook.PlaylistTrack, Chinook.Track, Chinook.Album, Chinook.Artist, Chinook.Genre WHERE Chinook.Playlist.PlaylistId = Chinook.PlaylistTrack.PlaylistId AND Chinook.PlaylistTrack.TrackId = Chinook.Track.TrackId AND Chinook.Track.AlbumId = Chinook.Album.AlbumId AND Chinook.Album.ArtistId = Chinook.Artist.ArtistId AND Chinook.Genre.Name='Pop' AND Chinook.Genre.GenreID = Chinook.Track.GenreID GROUP BY Chinook.Playlist.PlaylistId, Chinook.Playlist.Name HAVING COUNT(*) = (SELECT MAX(plist.count) FROM (SELECT COUNT(*) AS count FROM Chinook.Playlist, Chinook.PlaylistTrack, Chinook.Track, Chinook.Album, Chinook.Artist, Chinook.Genre WHERE Chinook.Playlist.PlaylistId = Chinook.PlaylistTrack.PlaylistId AND Chinook.PlaylistTrack.TrackId = Chinook.Track.TrackId AND Chinook.Track.AlbumId = Chinook.Album.AlbumId AND Chinook.Album.ArtistId = Chinook.Artist.ArtistId AND Chinook.Genre.Name='Pop' AND Chinook.Genre.GenreID = Chinook.Track.GenreID GROUP BY Chinook.Playlist.playlistId) plist)

1 48 8 48

Page 3: CSE4701 Homework 1 Solution 1. Find the names (Last …steve/Cse4701/cse4701fa15solns.pdfCSE4701 Homework 1 Solution 1. Find the names (Last name and First Name) and State of a. All

CSE4701 Homework 2 Solution

Page 4: CSE4701 Homework 1 Solution 1. Find the names (Last …steve/Cse4701/cse4701fa15solns.pdfCSE4701 Homework 1 Solution 1. Find the names (Last name and First Name) and State of a. All

CSE4701 Homework 2 Solution b. Find all artist(s) that have the most tracks classified as “Rock”, “Jazz”, “Rock And Roll”, “Pop”, and “Classical”, sorted by Genre Name and

then by Artist name, and return the artist name, genre, and amount of tracks. Note that more than one artist may have the same number of most tracks. SELECT Chinook.Artist.Name, Chinook.Genre.Name, COUNT(*) FROM Chinook.Playlist, Chinook.PlaylistTrack, Chinook.Track, Chinook.Album, Chinook.Artist, Chinook.Genre WHERE Chinook.Playlist.PlaylistId = Chinook.PlaylistTrack.PlaylistId AND Chinook.PlaylistTrack.TrackId = Chinook.Track.TrackId AND Chinook.Track.AlbumId = Chinook.Album.AlbumId AND Chinook.Album.ArtistId = Chinook.Artist.ArtistId AND (Chinook.Genre.Name='Pop' OR Chinook.Genre.Name='Rock' OR Chinook.Genre.Name='Jazz' OR Chinook.Genre.Name='Rock And Roll' OR Chinook.Genre.Name='Classical') AND Chinook.Genre.GenreID = Chinook.Track.GenreID GROUP BY Chinook.Genre.Name, Chinook.Artist.Name SELECT MAX(y.numtracks) FROM (SELECT COUNT(*) AS numtracks FROM Chinook.Playlist, Chinook.PlaylistTrack, Chinook.Track, Chinook.Album, Chinook.Artist, Chinook.Genre WHERE Chinook.Playlist.PlaylistId = Chinook.PlaylistTrack.PlaylistId AND Chinook.PlaylistTrack.TrackId = Chinook.Track.TrackId AND Chinook.Track.AlbumId = Chinook.Album.AlbumId AND Chinook.Album.ArtistId = Chinook.Artist.ArtistId AND (Chinook.Genre.Name='Pop' OR Chinook.Genre.Name='Rock' OR Chinook.Genre.Name='Jazz' OR Chinook.Genre.Name='Rock And Roll' OR Chinook.Genre.Name='Classical') AND Chinook.Genre.GenreID = Chinook.Track.GenreID GROUP BY Chinook.Genre.Name, Chinook.Artist.Name) y SEE OTHER FILE

c. Find the name of the artist and the name of each track for all artists with more than 5 tracks. Note that an artist can have multiple tracks without having an album.

Page 5: CSE4701 Homework 1 Solution 1. Find the names (Last …steve/Cse4701/cse4701fa15solns.pdfCSE4701 Homework 1 Solution 1. Find the names (Last name and First Name) and State of a. All

CSE4701 Homework 2 Solution SELECT Chinook.Artist.Name, Count(*) FROM Track, Album, Artist WHERE Chinook.Album.AlbumId = Chinook.Track.AlbumId

AND Chinook.Artist.ArtistId = Chinook.Album.ArtistId GROUP BY Chinook.Artist.ArtistId, Chinook.Artist.Name HAVING COUNT(*) > 5;

AC/DC 18 Aerosmith 15

Alanis Morissette 13 Alice In Chains 12

Antônio Carlos Jobim 31 Apocalyptica 8

Page 6: CSE4701 Homework 1 Solution 1. Find the names (Last …steve/Cse4701/cse4701fa15solns.pdfCSE4701 Homework 1 Solution 1. Find the names (Last name and First Name) and State of a. All

CSE4701 Homework 2 Solution Audioslave 40 BackBeat 12 Billy Cobham 8 Black Label Society 18 Black Sabbath 17 Body Count 17 Bruce Dickinson 11 Buddy Guy 11 Caetano Veloso 21 Chico Buarque 34 Chico Science & Nação Zumbi 36 Cidade Negra 31 Cláudio Zoli 10 Various Artists 56 Led Zeppelin 114 Frank Zappa & Captain Beefheart 9 Marcos Valle 17 Gilberto Gil 32 O Rappa 17 Ed Motta 14 Elis Regina 14 Milton Nascimento 26 Jorge Ben 14 Metallica 112 Queen 45 Kiss 35 Spyro Gyra 21 Green Day 34 David Coverdale 12 Gonzaguinha 14 Os Mutantes 14 Deep Purple 92 Santana 27 Miles Davis 37 Gene Krupa 22

Toquinho & Vinícius 15 Vinícius De Moraes 15 Creedence Clearwater Revival 40 Cássia Eller 30 Def Leppard 16 Dennis Chambers 9 Djavan 26 Eric Clapton 48 Faith No More 52 Falamansa 14 Foo Fighters 44 Frank Sinatra 24 Funk Como Le Gusta 16 Godsmack 12 Guns N' Roses 42 Incognito 13 Iron Maiden 213 James Brown 20 Jamiroquai 32 JET 13 Jimi Hendrix 17 Joe Satriani 10 Jota Quest 12 João Suplicy 14 Judas Priest 16 Legião Urbana 31 Lenny Kravitz 57 Lulu Santos 28 Marillion 10 Marisa Monte 18 Marvin Gaye 18 Men At Work 10 Motörhead 15 Mônica Marianno 12 Mötley Crüe 17

Nirvana 29 O Terço 15 Olodum 14 Os Paralamas Do Sucesso 49 Ozzy Osbourne 32 Page & Plant 12 Passengers 14 Paul D'Ianno 10 Pearl Jam 67 Pink Floyd 9 Planet Hemp 16 R.E.M. Feat. Kate Pearson 11 R.E.M. 41 Raimundos 10 Raul Seixas 14 Red Hot Chili Peppers 48 Rush 14 Skank 23 Smashing Pumpkins 34 Soundgarden 17 Stevie Ray Vaughan & Double Trouble 10 Stone Temple Pilots 12 System Of A Down 11 Terry Bozzio, Tony Levin & Steve Stevens 7 The Black Crowes 19 The Clash 18 The Cult 30 The Doors 11 The Police 14 The Rolling Stones 41 The Tea Party 26 The Who 20 Tim Maia 30 Titãs 38 Battlestar Galactica 20

Page 7: CSE4701 Homework 1 Solution 1. Find the names (Last …steve/Cse4701/cse4701fa15solns.pdfCSE4701 Homework 1 Solution 1. Find the names (Last name and First Name) and State of a. All

CSE4701 Homework 2 Solution Heroes 23 Lost 92 U2 135 UB40 14 Van Halen 52

Velvet Revolver 13 Zeca Pagodinho 19 The Office 53 Battlestar Galactica (Classic) 24 Scorpions 12

House Of Pain 19 Temple of the Dog 10 Chris Cornell 14 Amy Winehouse 23

d. For the artist “AC/DC”, find the playlist(s) which contains the most tracks. Return the artist and Name of the Playlist. There may be more than one playlist with the most tracks.

Page 8: CSE4701 Homework 1 Solution 1. Find the names (Last …steve/Cse4701/cse4701fa15solns.pdfCSE4701 Homework 1 Solution 1. Find the names (Last name and First Name) and State of a. All

CSE4701 Homework 2 Solution SELECT Chinook.Playlist.PlaylistId, Chinook.Playlist.Name FROM Chinook.Playlist, Chinook.PlaylistTrack,

Chinook.Track, Chinook.Album, Chinook.Artist WHERE Chinook.Playlist.PlaylistId = Chinook.PlaylistTrack.PlaylistId

AND Chinook.PlaylistTrack.TrackId = Chinook.Track.TrackId AND Chinook.Track.AlbumId = Chinook.Album.AlbumId AND Chinook.Album.ArtistId = Chinook.Artist.ArtistId AND Chinook.Artist.Name = 'AC/DC'

GROUP BY Chinook.Playlist.PlaylistId, Chinook.Playlist.Name HAVING COUNT(*) = (SELECT MAX(plist.count) FROM

(SELECT COUNT(*) AS count FROM Chinook.Playlist, Chinook.PlaylistTrack,

Chinook.Track, Chinook.Album, Chinook.Artist WHERE Chinook.Playlist.PlaylistId = Chinook.PlaylistTrack.PlaylistId

AND Chinook.PlaylistTrack.TrackId = Chinook.Track.TrackId AND Chinook.Track.AlbumId = Chinook.Album.AlbumId AND Chinook.Album.ArtistId = Chinook.Artist.ArtistId AND Chinook.Artist.Name = 'AC/DC'

GROUP BY Chinook.Playlist.playlistId) plist)

1 Music 8 Music

Page 9: CSE4701 Homework 1 Solution 1. Find the names (Last …steve/Cse4701/cse4701fa15solns.pdfCSE4701 Homework 1 Solution 1. Find the names (Last name and First Name) and State of a. All

CSE4701 Homework 2 Solution Homework Problem 2.2: For the Northwind Database Schema

a. Find the list of all customers from United Kingdom sorted by Company Name in ascending order and return the company Name and Country.

SELECT northwind.suppliers.CompanyName, northwind.suppliers.country FROM northwind.suppliers WHERE northwind.suppliers.Country="UK" ORDER BY northwind.suppliers.CompanyName ASC

b. Find the number of customers that are located in each country. Your query should return just a number representing the number of customers who are located in each country. Countries include: Germany, Mexico, UK, Sweden, France, Spain, Canada, Argentina, Switzerland, Brazil, Austria, Italy, Portugal, USA, Venezuela, Ireland, Belgium, Norway, Denmark, Finland, Poland

SELECT northwind.customers.country, COUNT(*) FROM northwind.customers WHERE northwind.customers.country IS NOT NULL GROUP BY northwind.customers.country; Argentina 3 Austria 2 Belgium 2 Brazil 9 Canada 3 Denmark 2 Finland 2

France 11 Germany 11 Ireland 1 Italy 3 Mexico 5 Norway 1 Poland 1 Portugal 2

Spain 5 Sweden 2 Switzerland 2 UK 7 USA 13 Venezuela 4

c. Find the product ID, Product Name, UnitsInStock, ReorderLevel, and the shortage amount (sorted by Shortage amount in Descending order) where the ShoratgeAmount is a calculated column and it is defined as ShortageAmount: ReorderLevel - UnitsInStock Hint: Only list products that that have ShortageAmount > 0.

SELECT northwind.products.productid, northwind.products.productname, northwind.products.UnitsinStock, northwind.products.reoderlevel, northwind.products.ReorderLevel - northwind.products.UnitsInStock FROM northwind.products

Page 10: CSE4701 Homework 1 Solution 1. Find the names (Last …steve/Cse4701/cse4701fa15solns.pdfCSE4701 Homework 1 Solution 1. Find the names (Last name and First Name) and State of a. All

CSE4701 Homework 2 Solution WHERE (northwind.products.ReorderLevel - northwind.products.UnitsInStock)>0 ORDER BY (northwind.products.ReorderLevel - northwind.products.UnitsInStock); 31 Gorgonzola Telino 0 20 20 66 Louisiana Hot Spiced Okra 4 20 16 32 Mascarpone Fabioli 9 25 16 70 Outback Lager 15 30 15 37 Gravad lax 11 25 14 3 Aniseed Syrup 13 25 12 45 Rogede sild 5 15 10 48 Chocolade 15 25 10 68 Scottish Longbreads 6 15 9

56 Gnocchi di nonna Alice 21 30 9 64 Wimmers gute Semmelkndel 22 30 8 2 Chang 17 25 8 43 Ipoh Coffee 17 25 8 11 Queso Cabrales 22 30 8 49 Maxilaku 10 15 5 30 Nord-Ost Matjeshering 10 15 5 21 Sir Rodney's Scones 3 5 2 74 Longlife Tofu 4 5 1

d. Find the Product Name, UnitPrice, and UnitsInStock and Sorted by ProductName for all products where the product name starts with “Ch”.

SELECT northwind.products.productid, northwind.products.productname, northwind.products.UnitsinStock FROM northwind.products WHERE northwind.products.productname LIKE 'CH%';

1 Chai 39 2 Chang 17 39 Chartreuse verte 69 4 Chef Anton's Cajun Seasoning 53 5 Chef Anton's Gumbo Mix 0 48 Chocolade 15

Page 11: CSE4701 Homework 1 Solution 1. Find the names (Last …steve/Cse4701/cse4701fa15solns.pdfCSE4701 Homework 1 Solution 1. Find the names (Last name and First Name) and State of a. All

Grading: 40 pts total 4pts each for each entity Student, Dept, Course, Section+OfferedAs 4pts each for each Relationship: GradeRep, Planned Schedule, Offers, Major/Minors, Plan of Study, Prereq Take off ½ pt for each missing label on relationships (1, N) Take off ½ pt for missing attributes

Page 12: CSE4701 Homework 1 Solution 1. Find the names (Last …steve/Cse4701/cse4701fa15solns.pdfCSE4701 Homework 1 Solution 1. Find the names (Last name and First Name) and State of a. All

Step 1: Regular Entities (2pts each – 8 pts total) Person(Person#, Name, Street, City, Email) DrugPrescriber (DEA#) DrugCompany(Name, Address, Phone#, Website) Drug(DrugCode,Name, Price, Status, Expiration) Step 2: No Weak Entities Step 3: No 1:1 Relationships Step 6: Multi-valued Entities (2pts) PhoneContacts(Person#, PhoneNumber) Step 8: Subclasses (2pts each – 4 pts total) Patient(Person#, Insurance#) Physician(Person#, DEA#, Specialty) Step 4: 1:N Relationships (4pts) Patient(Person#, Insurance#, PrimaryPhysicianPerson#, PrimaryPhysicianDEA#) Step 5: M:N Relationships (4pts each – 8 pts total) PurchasingContract (DrugCompanyName, DrugDrugCode, State_Date, End_Date) SoldBy(DrugCompanyName, DrugDrugCode) Step 7: Higher Order Relationships (4pts) Prescribes( PatientPerson#, PhysicianPerson#, DEA#, DrugCode, Dosage, FillRequrement, Patter, Refills, Date)

Grading: 30 pts total

Page 13: CSE4701 Homework 1 Solution 1. Find the names (Last …steve/Cse4701/cse4701fa15solns.pdfCSE4701 Homework 1 Solution 1. Find the names (Last name and First Name) and State of a. All

Department Code

College

N

1

Majors Minors

Student

DegrProg

Name

Address

email

Student#

Name

Street City State

Address

Street City State

Identifier

Peoplesoft NetID SSN

Course

Phone

Dept

CNum

Name Desc Credits Level

ZIP

ZIP

Grade Report

Prereq

1

Offers

1

N

Section

Offered As

N

1

Instr

Sem

Sec Yr

Name

1

N

Sem Yr

Planned Schedule

Grade

Letter

Num

1

N

Sem

Yr

Register Flag

Plan of Study

1

N

Original PPT version of HW3.a