Module Sequel::SQL::OrderMethods
In: lib/sequel/sql.rb

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

Methods

asc   desc  

Public Instance methods

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).

[Source]

     # File lib/sequel/sql.rb, line 762
762:       def asc(opts={})
763:         OrderedExpression.new(self, false, opts)
764:       end

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).

[Source]

     # File lib/sequel/sql.rb, line 772
772:       def desc(opts={})
773:         OrderedExpression.new(self, true, opts)
774:       end

[Validate]