0% found this document useful (0 votes)
1K views7 pages

SQL Assessment Test 2 Questions and Expected Results: 1Swgz0Rg3Kkqwqzmsi - Qrmgjj3Lt39Mtajqrsmzy6Z-8/Edit?Usp Sharing

This document contains 14 SQL assessment questions with expected results. It tests various SQL skills like retrieving data from tables, filtering results, sorting, aggregating, and joining data. The questions start basic and increase in difficulty, covering concepts such as selecting columns, filtering by conditions, ordering, aggregating counts, and joining tables. Solutions to the questions can be found at a provided link or video.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1K views7 pages

SQL Assessment Test 2 Questions and Expected Results: 1Swgz0Rg3Kkqwqzmsi - Qrmgjj3Lt39Mtajqrsmzy6Z-8/Edit?Usp Sharing

This document contains 14 SQL assessment questions with expected results. It tests various SQL skills like retrieving data from tables, filtering results, sorting, aggregating, and joining data. The questions start basic and increase in difficulty, covering concepts such as selecting columns, filtering by conditions, ordering, aggregating counts, and joining tables. Solutions to the questions can be found at a provided link or video.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 7

SQL Assessment Test 2

Questions and Expected Results


Keep in mind there is usually more than one way to answer these questions.
For the solutions you can visit this link:

https://docs.google.com/document/d/
1swGZ0RG3KKqWqzmsI_qrMgjJ3lt39mtAJqRSMZy6Z-8/edit?usp=sharing

OR you can watch the solutions video walkthrough lecture.

These questions start off with the basics and then get continually more
difficult.

1. How can you retrieve all the information from the cd.facilities table?
● Expected Result should look similar to this (with more rows):

2. You want to print out a list of all of the facilities and their cost to
members. How would you retrieve a list of only facility names and
costs?
3. How can you produce a list of facilities that charge a fee to members?
● Expected Results should have just 5 rows:

4. How can you produce a list of facilities that charge a fee to members,
and that fee is less than 1/50th of the monthly maintenance cost?
Return the facid, facility name, member cost, and monthly
maintenance of the facilities in question.
● Result is just two rows:
5. How can you produce a list of all facilities with the word 'Tennis' in their
name?
● Expected Result is 3 rows

6. How can you retrieve the details of facilities with ID 1 and 5? Try to do it
without using the OR operator.
● Expected Result is 2 rows

7. How can you produce a list of members who joined after the start of
September 2012? Return the memid, surname, firstname, and joindate
of the members in question.
● Expected Result is 10 rows (not all are shown below)

8. How can you produce an ordered list of the first 10 surnames in the
members table? The list must not contain duplicates.
● Expected Result should be 10 rows if you include GUEST as a
last name


9. You'd like to get the signup date of your last member. How can you
retrieve this information?
● Expected Result
● 2012-09-26 18:08:45

10. Produce a count of the number of facilities that have a cost to guests of
10 or more.
● Expected Result
● 6

11. Produce a list of the total number of slots booked per facility in the
month of September 2012. Produce an output table consisting of facility
id and slots, sorted by the number of slots.
● Expected Result is 9 rows


12. Produce a list of facilities with more than 1000 slots booked. Produce an
output table consisting of facility id and total slots, sorted by facility id.
● Expected Result is 5 rows

13. How can you produce a list of the start times for bookings for tennis
courts, for the date '2012-09-21'? Return a list of start time and facility
name pairings, ordered by the time.
● Expected Result is 12 rows

14. How can you produce a list of the start times for bookings by members
named 'David Farrell'?
● Expected result is 34 rows of timestamps

You might also like