Loading...

Messages

Proposals

Stuck in your homework and missing deadline? Get urgent help in $10/Page with 24 hours deadline

Get Urgent Writing Help In Your Essays, Assignments, Homeworks, Dissertation, Thesis Or Coursework & Achieve A+ Grades.

Privacy Guaranteed - 100% Plagiarism Free Writing - Free Turnitin Report - Professional And Experienced Writers - 24/7 Online Support

List the trip ids and trip names for each pair of trips that have the same start location

11/11/2020 Client: arwaabdullah Deadline: 3 days

MSAccess - Assignment 3 – Chapter 5 Worksheet (84 pts)

Instructions : Add your SQL command and results (using copy/paste and screen capture) to each question. Do NOT remove any existing content or images from this file. You MUST include both your SQL Command and Results from running that command in your response to each question.

Take advantage of the “Hints” that accompany each question.

1. (4 pts) For each reservation, list the reservation ID, trip ID, customer number, and customer last name. Order the results by the customer’s last name. Mod1218

Put your SQL command and your results here:

2. (4 pts) For each reservation for customer Ryan Goff, list the reservation ID, trip ID, and number of persons.

Put your SQL command and your results here:

3. (4 pts) List the trip name and type of each trip that has Rita Boyers as a guide.

Put your SQL command and your results here:

4. (4 pts) List the trip name of each biking trip that has Rita Boyers as a guide.

Put your SQL command and your results here:

5. (4 pts) For each reservation that has a trip date of July 23, 2016, list the customer’s last name,

the trip name, start location and trip date.

Put your SQL command and your results here:

6. (4 pts) List the trip id, trip name, and the guide’s first and last names for those guides who can lead a paddling trip.

Put your SQL command and your results here:

7. (4 pts) List the first and last name for those guides that can lead a Biking trip. List each guide name only once and sort the results by the guide’s last name.

Put your SQL command and your results here:

8. (4 pts) List the trip name, trip id and customer number of all reservations for hiking trips. Sort the results in ascending order by trip id as the major sort key and customer number as the minor sort key.

Put your SQL command and your results here:

9. (4 pts) Repeat Exercise 8 but use aliases for the table names.

Put your SQL command and your results here:

10. (4 pts) Background: Last week you learned it is possible to place one query inside another. The inner query is called a subquery. The subquery is evaluated first. After the subquery has been evaluated, the outer query can use the results of the subquery to find its results. In this question you will be using a subquery to find all the trips from Maine. These results will be used by the main query to list reservation information for all of these Maine trips.

List the reservation ID, trip ID, and trip date for reservations for a trip in Maine (ME).

In this question you must use the IN operator in your main query to link to your subquery.

Put your SQL command and your results here:

11. (4pts) During the first week of our course we had not begun using MSAccess as our Database Management System. Question #6 of the Week 1 Assignment asked you the following:

Your task to is answer the exact same question,

“List the trip name of each trip that has Hal Rowan as a guide”

but use MSAccess and SQL this time.

Put your SQL command and your results here:

12. (4pts) During the first week of our course we had not begun using MSAccess as our Database Management System. Question #10 of the Week 1 Assignment asked you the following:

Your task to is answer the exact same question,

“List the last name of each customer that has a reservation for a trip in Masschusetts (MA)”

but use MSAccess and SQL this time.

NOTE: Your results may list ‘Northfold’ twice. If you precede the LAST_NAME attribute in your SELECT clause with the key word DISTINCT, duplicate records will be removed

Put your SQL command and your results here:

13. (4 pts) List the trip IDs for each pair of trips that have the same start location. (For example, one such pair would be trip ID 2 and trip ID 3, because the start location of both trips is Weathersfield.) The first trip ID listed should be the major sort key, and the second trip ID should be the minor sort key.

Background: Although it may seem strange, it is actually possible to “join” a single table to itself. This is called a “self join”. Reference section “Joining a Table to Itself” on page 143 in your eBook for supporting information. A “self-join” is necessary when the query is comparing values within the same table. In this question, you are looking for pairs of trips that have the same start location. In order to build this type of query it is necessary to distinguish both instances of the same table. This is accomplished by using a table “alias”. Check out “FIGURE 5-12: Using aliases for a self-join” in your eBook for a related example. In the following hint “F” is the alias for the first instance of the table TRIP and “S” is the alias for the second instance of the TRIP table. By the way, there is nothing “magical” about “F” and “S”. They were simply chosen because it makes it easier to keep track of the two instances of TRIP.

Put your SQL command and your results here:

NOTE: The next question consists of two parts: 14a and 14b.

14a. (4pts) Background: Generate the single table query that lists the MAX_GRP_SIZE of all paddling trips.

Put your SQL command and your results here:

14b. (4pts) List the trip ID, trip name and maximum group size for each trip whose maximum group size is greater than the maximum group size of every paddling trip. You MUST use the ALL operator.

Put your SQL command and your results here:

NOTE: The next question consists of three parts: 15a, 15b and 15c.

15a. (2 pts) List the customer number and last name of each customer that lives in the state of Connecticut (CT).

Put your SQL command and your results here:

15b. (4 pts) List the customer number and last name of each customer that has a reservation involving four people.

Put your SQL command and your results here:

15c. (2 pts) List the number and name of each customer that either lives in the state of Connecticut (CT), or that currently has a reservation for 4 people. NOTE: This question simply requires that you combine the results of the first query (15a) with the results of the second query (15b).

Your first query was based on this table

Your second query was based on these two tables

Put your SQL command and your results here:

In addition, explain, in English, why your results only contain 7 records (in view of the 4 records returned from the top half of the UNION and 4 records returned from the bottom half of the UNION). In other words, why did the results not contain a total of 8 results.

Put your explanation here:

16. (4 pts) List the trip ID, trip name, and reservation ID for all trips. All trips should be included in the result. For those trips that currently do not have reservations, the reservation ID should be left blank. Order the results by trip ID.

Put your SQL command and your results here:

17. (4 pts) Laura Jones wants confirmation on her upcoming trip that she believes is on June 15, 2016. Your records indicate that Laura Jones’ customer number is '112'. To prepare the information you will pass along to Ms Jones, generate the query that lists the customer’s last and first name, the trip name, the trip date and the guide’s last and first name for customer number '112'.

Put your SQL command and your results here:

Did Ms Jones remember the right date for her trip?

18. (10 pts) On this last question you will be writing your own question and generating the SQL command to answer that question. Your query must involve two tables. Have fun with this one.

Put your question here:

Put your SQL command and your results here:

MSAccess

-

Assignment

3

Chapter

5

Worksheet

(84 pts)

Instructions

:

Add your SQL

command

and results (

using copy/paste and screen capture

) to each question.

Do

NOT

remove

any existing content or images from this file.

You

MUST

include both your

SQL C

ommand

and

Results

from running that command in your response to each question.

Take advantage of the “

Hints

” that accompany each question.

1.

(4 pts)

For each reservation, list the reservation ID, trip ID, customer number, and customer

last

name. Order

the results by the customer’s last name.

Mod1218

MSAccess - Assignment 3 – Chapter 5 Worksheet (84 pts)

Instructions: Add your SQL command and results (using copy/paste and screen capture) to each question. Do

NOT remove any existing content or images from this file. You MUST include both your SQL Command and

Results from running that command in your response to each question.

Take advantage of the “Hints” that accompany each question.

1. (4 pts) For each reservation, list the reservation ID, trip ID, customer number, and customer

last name. Order the results by the customer’s last name. Mod1218

Homework is Completed By:

Writer Writer Name Amount Client Comments & Rating
Instant Homework Helper

ONLINE

Instant Homework Helper

$36

She helped me in last minute in a very reasonable price. She is a lifesaver, I got A+ grade in my homework, I will surely hire her again for my next assignments, Thumbs Up!

Order & Get This Solution Within 3 Hours in $25/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 3 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 6 Hours in $20/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 6 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

Order & Get This Solution Within 12 Hours in $15/Page

Custom Original Solution And Get A+ Grades

  • 100% Plagiarism Free
  • Proper APA/MLA/Harvard Referencing
  • Delivery in 12 Hours After Placing Order
  • Free Turnitin Report
  • Unlimited Revisions
  • Privacy Guaranteed

6 writers have sent their proposals to do this homework:

Custom Coursework Service
Calculation Guru
Finance Homework Help
Instant Assignments
Writer Writer Name Offer Chat
Custom Coursework Service

ONLINE

Custom Coursework Service

Hey, Hope you are doing great :) I have read your project description. I am a high qualified writer. I will surely assist you in writing paper in which i will be explaining and analyzing the formulation and implementation of the strategy of Nestle. I will cover all the points which you have mentioned in your project details. I have a clear idea of what you are looking for. The work will be done according to your expectations. I will provide you Turnitin report as well to check the similarity. I am familiar with APA, MLA, Harvard, Chicago and Turabian referencing styles. I have more than 5 years’ experience in technical and academic writing. Please message me to discuss further details. I will be glad to assist you out.

$55 Chat With Writer
Calculation Guru

ONLINE

Calculation Guru

I see that your standard of work is to get content for articles. Well, you are in the right place because I am a professional content writer holding a PhD. in English, as well as having immense experience in writing articles for a vast variety of niches and category such as newest trends, health issues, entertainment, technology, etc and I will make sure your article has all the key pointers and relevant information, Pros, Cons and basically all the information that a perfect article needs with good research. Your article is guaranteed to be appealing, attractive, engaging, original and passed through Copyscape for the audience so once they start reading they keep asking for more and stay interested.

$55 Chat With Writer
Finance Homework Help

ONLINE

Finance Homework Help

I have a Master’s degree and experience of more than 5 years in this industry, I have worked on several similar projects of Research writing, Academic writing & Business writing and can deliver A+ quality writing even to Short Deadlines. I have successfully completed more than 2100+ projects on different websites for respective clients. I can generally write 10-15 pages daily. I am interested to hear more about the project and about the subject matter of the writing. I will deliver Premium quality work without Plagiarism at less price and time. Get quality work by awarding this project to me, I look forward to getting started for you as soon as possible. Thanks!

$55 Chat With Writer
Instant Assignments

ONLINE

Instant Assignments

Hey, I can write about your given topic according to the provided requirements. I have a few more questions to ask as if there is any specific instructions or deadline issue. I have already completed more than 250 academic papers, articles, and technical articles. I can provide you samples. I believe my capabilities would be perfect for your project. I can finish this job within the necessary interval. I have four years of experience in this field. If you want to give me the project I had be very happy to discuss this further and get started for you as soon as possible.

$55 Chat With Writer

Let our expert academic writers to help you in achieving a+ grades in your homework, assignment, quiz or exam.

Similar Homework Questions

Molar mass of cucl2 2h2o - 7 kinds of smart identifying and developing your multiple intelligences - Intersectional privileged - A company reports the following sales related information - Boiling water experiment report - Mobile virtual network operator value 544d - Unitary method lesson plan - Cold joint termite protection - Arabic days of the week - Harvard global supply chain management simulation v2 solution - A beautiful mind speech - Elevator world magazine free download - 1 pararagph each response to 2 Colleagues - Paper mache brick press - Productivity is monitoring performance, comparing it with goals, and taking corrective action. - Freezing and boiling point graph answers - Kouzes and posner pdf - C program files google drive googledrivesync exe - Minnesota micromotors simulation - 9 turtle point cove jandakot - Employment Law - English - What should the president of simplex mills do now - Amp flexible lifetime usi - Tale of two cities book 2 chapter 17 - Retail inventory flow chart - Reflection Journal 2 - Magnesium reacts with silver nitrate solution - Finance Mini Case - Compared to women in colonial chesapeake new england women - South grange medical centre - Chemistry lab report - Average reaction time ruler drop test - A literature review embedded system industry growth - Regular and irregular verbs list with spanish translation - Sheffield uni accommodation map - Form 9 entry notice - C3925 vsec cube k9 - Development - User Training - Hunter united credit union - Xt57 make up torque - Lawn mowing business plan - Khp and naoh reaction equation - Fideco usb 3.0 hdd docking station - Https miic health state mn us - Religion and spirituality in psychotherapy - Balanced and unbalanced forces worksheet - ETCM DISCUSSION-2 - Psychology 1 - Miles and snow typology ppt - Crestron dm md6x4 price - Bien pretty sandra cisneros - Late submission penalty cqu - Herbal plus black salve instructions - Annotated Bibliography - Performance with purpose the promise of pepsico - Tea stage 2 5.3 heads - Australian standards shower waterproofing - Comcast new channel lineup - I need 2000 words on Marketing Guide - A 1.00 meter length of nichrome wire - Microeconomics - Social psychology textbook 9th edition - Journey the north coast robert gray - Hw 15 - Write a essay - A job was timed for 60 cycles - Modified pen grasp dental - CASE STUDY - Nursing Discussion - Computer forensics multiple choice questions - Ip man first form - Business aims and objectives - Module 7 answers math - Cash flow - What is a patient escort - Cash receipt journal and cash payment journal - Ls dyna theory manual - Creative innovative and proactive demeanour - Copper chloride dihydrate and aluminum - Bsa nuclear science merit badge - Budgeting and variance analysis - Bus/475 - Six criteria for choosing brand elements - Yang the youngest discussion questions - ESSAY - Presentation handout template word - Dna replication worksheet answer key - Narrow span of management leads to - Theory - Ionic compounds in everyday life - 4 figure grid reference example - Iom - What is the secret word of a master mason - Essay about Franklin and Douglass - A one-to-one conversation - Looking at movies 5th edition chapter 1 - Walmart pro forma financial statements - Policy and politics in nursing and health care