Answered step by step
Verified Expert Solution
Question
1 Approved Answer
# 6 The HSP _ TRANSACTIONS table has one row for every transaction. If , and only if , a transaction is a refund to
# The HSPTRANSACTIONS table has one row for every transaction. If and only if a transaction is a refund to a coverage, it identifies the coverage with the RFNDCOVERAGEID column. Not all refunds are to coverages, and not all coverages are refunded.
Use the following query to answer the question below it:
SELECT
FROM HSPTRANSACTIONS
your SQL here COVERAGE
ON HSPTRANSACTIONS.RFNDCOVERAGEID COVERAGE.COVERAGEID
What should replace your SQL here to return only refunds to coverages?
SELECT ONE OF THE FOLLOWING PT
A LEFT OUTER JOIN
B INNER JOIN
C RIGHT OUTER JOIN
D FULL OUTER JOIN
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started