Question
QUESTION 8 Given table R(A,B,C) and S(C,D,E), which of the following SQL statements would find the record(s) with null values on the column C in
QUESTION 8
Given table R(A,B,C) and S(C,D,E), which of the following SQL statements would find the record(s) with null values on the column C in table R?
a. select * from R left outer join S where R.C = S.C;
b. select * from R right outer join S where R.C = S.C;
c. either a. or b.
d. neither a. nor b.
QUESTION 20
Given table R(A,B,C) and S(C,D,E), which of the following SQL statements would find the record(s) with null values on the column C in table S?
a. select * from R left outer join S where R.C = S.C;
b. select * from R right outer join S where R.C = S.C;
c. either a. or b.
d. neither a. nor b.
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