Skip to main content

cross_join

Function cross_join 

Source
pub fn cross_join(table: impl IntoExpr) -> JoinChain
Expand description

CROSS JOIN <table> — an inner join that also pins the join order.

Takes ON/USING like any other, because in SQLite that is exactly what it is for: writing CROSS JOIN instead of JOIN is how the query planner is told not to swap the two tables around.