This quiz will test your understanding about Creating analyses from multiple queries. Please answer the following 3 questions.
Quiz Summary
0 of 3 Questions completed
Questions:
Information
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
Results
Results
0 of 3 Questions answered correctly
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
Categories
- Not categorized 0%
- 1
- 2
- 3
- Current
- Review
- Answered
- Correct
- Incorrect
-
Question 1 of 3
1. Question
Consider this query:
SELECT CustomerID, CompanyName
FROM Customers
WHERE Country = ‘USA’
UNION ALL
SELECT CustomerID, CompanyName
FROM Customers
WHERE Country = ‘Canada’
Which of the following statements is true?CorrectIncorrect -
Question 2 of 3
2. Question
Consider this query:
SELECT c.customerName, COUNT(o.orderID)
FROM customers c
LEFT JOIN orders o ON c.customerID = o.customerID
GROUP BY c.customerName.
Which of the following statements is true?CorrectIncorrect -
Question 3 of 3
3. Question
Which of the following statements is true about common table expressions (CTEs)?
CorrectIncorrect