rightJoin method

  1. @override
QueryBuilderInterface<T> rightJoin(
  1. String table,
  2. String first,
  3. String operator,
  4. String second,
)
override

RIGHT JOIN

Implementation

@override
QueryBuilderInterface<T> rightJoin(
  String table,
  String first,
  String operator,
  String second,
) {
  return join(table, first, operator, second, 'RIGHT');
}