pub fn natural_join<'a, Table>(table: Table) -> SQL<'a, SQLiteValue<'a>>where
Table: SQLiteTable<'a>,Expand description
Helper function to create a NATURAL JOIN clause.
A natural join matches the columns both sides share by name, so it takes no ON condition.