Method: Sequel::MSSQL::DatasetMethods#outer_apply

Defined in:
lib/sequel/adapters/shared/mssql.rb

#outer_apply(table) ⇒ Object

Uses OUTER APPLY to join the given table into the current dataset.



604
605
606
# File 'lib/sequel/adapters/shared/mssql.rb', line 604

def outer_apply(table)
  join_table(:outer_apply, table)
end