Which type of JOIN returns all matching rows from both tables, plus all unmatched rows from the left table with NULL values filled in for the right table columns? MCQ with Answer and Explanation

Which type of JOIN returns all matching rows from both tables, plus all unmatched rows from the left table with NULL values filled in for the right table columns?
A. Full Outer Join
B. Left Outer Join
C. Right Outer Join
D. Inner Join
Answer: Option B
Solution (By JKExamLibrary)
A Left Outer Join preserves all records from the left table, matching them with right table records when possible, or inserting NULL values if no match is found.

This question belongs to: Computer Database Management System (DBMS)

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Database Management System (DBMS) Questions

Question #1 Report Error
What is the default sorting order when using the ORDER BY clause in an SQL statement?
A. Alphabetic only
B. Random
C. Ascending
D. Descending

Correct Answer: Option C


Explanation:
By default, the ORDER BY clause sorts the query results in ascending order unless specified otherwise using the DESC keyword.

This question belongs to: Computer Database Management System (DBMS)
Question #2 Report Error
The total number of tuples (rows) contained within a relational database table is called its what?
A. Degree
B. Cardinality
C. Dimension
D. Density

Correct Answer: Option B


Explanation:
The number of tuples or rows in a relation is defined as the cardinality of that relation.

This question belongs to: Computer Database Management System (DBMS)
Question #3 Report Error
In the relational model, what is the term used to describe the header or definition of a table specifying its name and attributes?
A. Relation Domain
B. Relation Instance
C. Relation Schema
D. Relation Card

Correct Answer: Option C


Explanation:
A Relation Schema defines the structure of a relation, specifying its name and the list of attributes along with their data types.

This question belongs to: Computer Database Management System (DBMS)