pub fn cross_join<'a, Table>(
table: Table,
condition: impl ToSQL<'a, SQLiteValue<'a>>,
) -> SQL<'a, SQLiteValue<'a>>where
Table: SQLiteTable<'a>,Expand description
Compatibility helper for a conditional cross join.
This renders the portable equivalent INNER JOIN ... ON ....
Use the dialect builder’s bare .cross_join(source) for an
unconditional CROSS JOIN.