SQL - Advanced Joins
Given two tables:
What will be the result of:
Colors with rows: Red, BlueShapes with rows: Circle, Square, TriangleWhat will be the result of:
SELECT Colors.color, Shapes.shape FROM Colors CROSS JOIN Shapes;