Methods that create aliased identifiers
Create an SQL column alias of the receiving column or expression to the given alias.
[Source]
# File lib/sequel/sql.rb, line 128 128: def as(aliaz) 129: AliasedExpression.new(self, aliaz) 130: end
[Validate]