pub fn natural_join<'a, Table>(table: Table) -> SQL<'a, PostgresValue<'a>>where
Table: PostgresTable<'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.