KnowledgeBoat Logo

Computer Science

What do you understand by Cartesian Product?

SQL Queries

1 Like

Answer

The Cartesian Product is an operation that combines tuples from two relations. It results in all possible pairs of rows from the two input relations, regardless of whether they have matching values on common attributes. This operation is denoted by the cross join symbol (×) in SQL.

Answered By

1 Like


Related Questions