SQL - Advanced Joins
Consider the tables:
What will be the output of:
Animals with rows: Dog, CatColors with rows: Black, WhiteWhat will be the output of:
SELECT Animals.name, Colors.color FROM Animals CROSS JOIN Colors;