Discussions
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
NSC | SuiteQL: Join Types: CROSS JOIN
CROSS JOIN is a type of SQL join that combines every row from one table with every row from another table. It is also known as a Cartesian product, named after the mathematician René Descartes, who introduced the concept. The result of a cross join is a dataset that includes all possible combinations of rows between the two tables.
Sample Query:
Here is an example of a cross join between the "customer" and "employee" tables:
SELECT * FROM customer CROSS JOIN employee;
In this query, each customer record will be paired with every employee record, creating a comprehensive dataset.
When utilizing SuiteQL with SuiteAnalytics Connect, it should be noted that explicit CROSS JOIN syntax is
Expand your NetSuite knowledge by joining this month's Ask A Guru Live: PROCURE TO PAY. RSVP on this event now!
Refer a Member to the Community | Earn the Answer Accepter Badge | Vote for the contents you'd like to see
