Question d’entretien chez Syniti

What is a cross Join

Réponse à la question d'entretien

Utilisateur anonyme

19 mai 2012

A cross join is a SQL JOIN statement that yields a Cartesian product of the two tables. The resultset will contain a total number of rows equal to Table A's rowcount * Table B's rowcount. http://en.wikipedia.org/wiki/Join_%28SQL%29

1