Methods that create OrderedExpressions, used for sorting by columns or more complex expressions.
Mark the receiving SQL column as sorting in an ascending fashion (generally a no-op).
[Source]
# File lib/sequel/sql.rb, line 309 309: def asc 310: OrderedExpression.new(self, false) 311: end
Mark the receiving SQL column as sorting in a descending fashion.
# File lib/sequel/sql.rb, line 304 304: def desc 305: OrderedExpression.new(self) 306: end
[Validate]