Oracle Database SQL — Question 221

Examine this query:

SELECT * FROM bricks, colors -

Which two statements are true? (Choose two.)

Answer options

Correct answer: B, C

Explanation

The correct answers are B and C because you can indeed use an ON clause or a WHERE clause to specify join conditions or filtering criteria in SQL. Option A is incorrect since a USING clause is not applicable in this context, and option D is misleading as it suggests a count rather than a combination of rows, while E is false as the result set will differ unless specific conditions are met.