QuestenaPractice that shows what to review next
Question 14

In PostgreSQL 18, table emp has 3 rows and table empty_t has 0 rows. How many rows does SELECT * FROM emp CROSS JOIN empty_t; return?

  1. It raises an error
  2. 0Correct answer
  3. 1
  4. 3

Explanation

A cross join produces N x M rows, and any product with a zero factor is zero, so the left rows vanish entirely. Answering 3 treats CROSS JOIN as if it preserved the left side the way an outer join does.

Continue with this test

Start practice
Question 14: In PostgreSQL 18, table emp has 3 rows and table empty_t… · SQL: NULL, Joins and Aggregates · Questena