rightOuterJoin function

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

Creates an SQL right 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 rightOuterJoin(HasResultSet other, Expression<bool> on,
    {bool? useColumns}) {
  return Join._(_JoinType.rightOuter, other, on, includeInResult: useColumns);
}