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 185 185: def as(aliaz) 186: AliasedExpression.new(self, aliaz) 187: end
[Validate]