Module: Sequel::SQL::OrderMethods

Overview

Methods that create OrderedExpressions, used for sorting by columns or more complex expressions.

Instance Method Summary collapse

Instance Method Details

#asc(opts = {}) ⇒ Object

Mark the receiving SQL column as sorting in an ascending fashion (generally a no-op). Options:

:nulls

Set to :first to use NULLS FIRST (so NULL values are ordered before other values), or :last to use NULLS LAST (so NULL values are ordered after other values).



435
436
437
# File 'lib/sequel/sql.rb', line 435

def asc(opts={})
  OrderedExpression.new(self, false, opts)
end

#desc(opts = {}) ⇒ Object

Mark the receiving SQL column as sorting in a descending fashion. Options:

:nulls

Set to :first to use NULLS FIRST (so NULL values are ordered before other values), or :last to use NULLS LAST (so NULL values are ordered after other values).



445
446
447
# File 'lib/sequel/sql.rb', line 445

def desc(opts={})
  OrderedExpression.new(self, true, opts)
end