Method: Sequel::SqlAnywhere::DatasetMethods#cross_apply
- Defined in:
- lib/sequel/adapters/shared/sqlanywhere.rb
#cross_apply(table) ⇒ Object
Uses CROSS APPLY to join the given table into the current dataset.
293 294 295 |
# File 'lib/sequel/adapters/shared/sqlanywhere.rb', line 293 def cross_apply(table) join_table(:cross_apply, table) end |