Module Sequel::SQL::AliasMethods
In: lib/sequel_core/sql.rb

Methods the create aliased identifiers

Methods

as  

Public Instance methods

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]