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