information system

profilejiten1
Project3A.docx

INSY 3304 - Project 1

Res Num

Check In

Check Out

Cust ID

Cust Name

Cust Phone

Cust Type

Cust Desc

Loyalty ID

Agent ID

Agent Name

Agent Type

Agent Desc

# of Guests

Room Num

Room Type

Room Desc

Rate Type

Rate Desc

Rate Amt

1001

9/5/2019

9/7/2019

85

Wesley Tanner

(817)555-1193

C

Corporate

323

20

Megan Smith

FD

Front Desk

2

224

K

King Bed

C

Corporate

$120

 

 

 

 

 

 

 

 

 

 

 

 

 

2

225

D

2 Double Beds

C

Corporate

$125

1002

9/1/2019

9/10/2019

100

Breanna Rhodes

(214)555-9191

I

Individual

129

5

Janice May

T

Telephone

4

305

D

2 Double Beds

S

Standard

$149

1003

9/9/2019

9/11/2019

15

Jeff Miner

 

I

Individual

 

14

John King

RC

Res Center

3

409

D

2 Double Beds

W

Weekend

$99

1004

9/29/2019

9/210/2019

77

Kim Jackson

(817)555-4911

C

Corporate

210

28

Ray Schultz

T

Telephone

4

320

D

2 Double Beds

C

Corporate

$110

1005

9/15/2019

9/18/2019

119

Mary Vaughn

(817)555-2334

I

Individual

118

20

Megan Smith

FD

Front Desk

1

302

K

King Bed

S

Standard

$139

1006

9/24/2019

9/26/2019

97

Chris Mancha

(469)555-3440

I

Individual

153

14

John King

RC

Res Center

2

501

KS

King Suite

W

Weekend

$119

 

 

 

 

 

 

 

 

 

 

 

 

 

2

502

KS

King Suite

W

Weekend

$119

1007

9/20/2019

9/25/2019

100

Breanna Rhodes

(214)555-9191

I

Individual

129

20

Megan Smith

FD

Front Desk

2

302

K

King Bed

S

Standard

$139

1008

10/210/2019

10/3/2019

85

Wesley Tanner

(817)555-1193

C

Corporate

323

5

Janice May

T

Telephone

3

320

D

2 Double Beds

W

Weekend

$89

 

 

 

 

 

 

 

 

 

 

 

 

 

1

321

K

King Bed

W

Weekend

$99

1009

10/1/2019

10/4/2019

28

Renee Walker

(214)555-9285

I

Individual

135

14

John King

RC

Res Center

2

502

KS

King Suite

W

Weekend

$129

 

 

 

 

 

 

 

 

 

 

 

 

 

2

409

D

2 Double Beds

S

Standard

$129

1010

10/1/2019

10/9/2019

23

Shelby Day

 

I

Individual

 

28

Ray Schultz

T

Telephone

4

225

D

2 Double Beds

W

Weekend

$109

1. 2 points

Change the Room Num to 321 with a Rate Amt of $110 for Res 1010, and change the Rate Type to “C.”

Change the checkout date for reservation 1001 to 9/8/19.

Make sure Rm. 226 exists and is in Reservation 1011 with a rate of $129.

2. 1 point

Change the Cust Type for Customer 120 to “I.”

For Res 1011, change the CheckIn date to 10/8/19 and the CheckOut date to 10/11/19.

3. 2 points

Add 3 new rooms:

Room Num Room Type

301 D

303 D

304 KS

4. 1 point

Add the following rooms to reservation 1005:

Room Num GuestCount Rate Amt

303 2 $119

304 2 $149

5. 2 points

Add a new customer to the Customer table. The customer ID should be one more than the max customer ID in the customer table. Hint: Use a nested SELECT and the MAX function. CustFName CustLName ___CustPh__ ___ CustType

Susan White 214-555-2020 C

Note: Commit all changes above before proceeding to the next step.

6. 2 points

List the customer ID, first name, and last name for all customers for whom no phone number exists. Sort the output by customer ID.

7. 2 points

List the average rate amount for all rows in the ResDetail table. Use AvgRate as the column heading.

8. 2 points

List the count of unique room numbers in the Res Detail table. Use RoomResCount as the column heading.

9. 2 points

List the RoomType and Count of rooms in each type. Use the following column headings: RoomType, RoomCount. Hint: Use a GROUP BY clause.

10. 3 points

List reservation number, check-in date, check-out date, and the total number of rooms reserved for each reservation. Use the following column headings: ResNum, CheckIn, CheckOut, RoomCount. Hint: Use a GROUP BY clause.

11. 4 points

List the customer ID, customer first name, customer last name, and count of reservations for each customer. Combine the first and last name into one column. Sort by reservation count in descending order, then by customer ID in ascending order. Use the following column headings: CustomerID, CustomerName, ResCount. Hint: Use a GROUP BY clause.

11. 3 points

List all rows and all columns from the ResDetail table; sort by ResNum then by Room Num, both in ascending order. Use the following column headings: ResNum, RmNum, RateType, RateAmt.

12. 3 points

List the rate type, rate type description, and count of rooms reserved for each rate type. Sort by count in descending order. Use the following column headings: RateType, Description, ResCount. Hint: Use a GROUP BY clause.

13. 4 points

List the customer ID, customer first name, customer last name, and customer phone number for all customers. Show the phone number formatted as ‘(###) ###-####’ and sort by customer ID. Use the following column headings: Customer_ID, First_Name, Last_Name, Phone.

14. 4 points

List the reservation number, room number, room type, room type description, rate type, rate type description, and rate amount of the room(s) with the lowest rate amount in each reservation. Sort by rate amount in descending order. Show the rate amount formatted as currency, and use the following column headings: ResNum, RmNum, RmType, RmDesc, RateType, RateDesc, RateAmt. Hint: use a GROUP BY clause and a nested SELECT.

15. 2 points

List the room number, room type, room type description, rate type, and rate amount for each room for which reservations exist. Sort by room number then by rate amount.

16. 3 points

List the customer type, customer type description, and count of customers for each customer type. Use the following column headings: CustType, Description, Count. Sort by count in descending order. Hint: use a GROUP BY clause.

17. 4 points

List the ResNum, RoomNum, RoomType, RoomTypeDesc, and Rate Amt for rooms reserved with a rate amount less than or equal to $119. Sort by rate amount in descending order, then by room number in ascending order. Show the rate amount formatted as currency.

18. 4 points

For each Reservation, list the Res number, check-in date, check-out date, customer ID, customer first name, customer last name, and count of rooms; sort by Res ID. Show the dates formatted as ‘mm-dd-yyyy.’ Hint: use a GROUP BY clause.

19. 4 points

List the ResNum, RoomNum, RoomTypeDesc, RateTypeDesc, and RateAmt for the room with the highest rate amount in reservation 1005. Show the rate amount formatted as currency and use the following column headings: ResNum, RmNum, RoomType, RateType, Rate. Hint: Use a nested SELECT.

20. 3 points

List the agent type, agent type description, and count of agents for each agent type. Sort by count. Use the following column headings: AgentType, Desc, Count. Hint: use a GROUP BY clause.

21. 4 points

List the ResNum, RoomNum, RoomTypeDesc, RateTypeDesc, RateAmt, and RateAmt for all room reservations that have a rate amount greater than the average rate for all rooms reserved. Sort by room number. Hint: use a nested SELECT.

22. 3 points

List the unique room number, room type description, rate type description, and rate amount for all rooms that have been reserved with a rate amount greater than $115 (do not include duplicate rows). Sort by rate amount in descending order. Use the following column headings: RmNum, RmType, RateType, RateAmt.

23. 2 points

List the room number, room type, and count of reservations for each room number. Be sure to include ALL rooms (not just those for which reservations exist). Sort by count.

24. 3 points

List the CustID, CustFName, CustLName, and CustPhone for all “loyalty” customers. Show the phone number formatted as ‘(###) ###-####’ and use the following column headings: CustID, FirstName, LastName, Phone.

25. 4 points

List the RoomNum, RoomTypeDesc, RateTypeDesc, and RateAmt for the room with the highest rate in Reservation 1005. Show the rate amount formatted as currency, and use the following column headings: Room, RoomType, RateType, Amt. Hint: use a nested SELECT.

26. 3 points

List the ResNum, CheckInDate, CheckOutDate, CustID, CustLName, AgentID, and AgentLName for all reservations on or before 2/28/18. Sort by CheckInDate, then by ResNum, both in ascending order.

27. 4 points

List the RoomNum, RoomType, RoomTypeDesc, and RateAmt for all rooms that have been reserved at a rate higher than the average rate of all existing rate amounts. Sort by rate amount in descending order, then by room number in ascending order. Hint: use a nested SELECT.

28. 2 points

List the count of loyalty customers. Use “LoyaltyCount” as the column heading.

29. 3 points

List the AgentID, AgentFName, AgentLName, and count of reservations for each agent. Combine the first and last names into one column, and sort by count in descending order. Use the following column headings: AgentID, Agent, ResCount. Hint: use a GROUP BY clause.

30. 4 points

List the ID, first name, last name, and count of Reservations for the agent(s) who have processed more than one reservation. Sort by count in descending order, then by agent ID in ascending order. Use the following column headings: AgentID, FirstName, LastName, ResCount. Hint: use a GROUP BY clause and a HAVING clause.

31. 3 points

List the customer ID, first name, and last name of all customers whose first or last names start with the letter ‘W.’ Sort by last name and use the following column headings: Customer_ID, First_Name, Last_Name.

32. 4 points

List the customer ID, first name, and last name for any customers who do not have any reservations. Use the following column headings: CustID, FirstName, LastName. Hint: use a Nested Select.

33. 4 points

List the ResNum, RmNum, and total charged for each room in reservation 1005. Use the following column headings: ResNum, RoomNum, TotalCharge. Hint: You will need to calculate the number of nights to calculate the total charged for each room, but you will not show the number of nights in your output.