fullOuterJoin function

Join<HasResultSet, dynamic> fullOuterJoin(
  1. HasResultSet other,
  2. Expression<bool> on, {
  3. bool? useColumns,
})

Creates an SQL full outer join that can be used in SimpleSelectStatement.join.

The optional useColumns parameter (defaults to true) can be used to exclude the other table from the result set. When set to false, TypedResult.readTable will return null for that table.

Implementation

Join fullOuterJoin(HasResultSet other, Expression<bool> on,
    {bool? useColumns}) {
  return Join._(_JoinType.fullOuter, other, on, includeInResult: useColumns);
}