Represents an aliasing of an expression to a given alias.
Attributes
| aliaz | [R] |
The alias to use for the expression, not |
| expression | [R] |
The expression to alias |
Public Class methods
new
(expression, aliaz)
Create an object with the given expression and alias.
[show source]
# File lib/sequel/sql.rb, line 929 def initialize(expression, aliaz) @expression, @aliaz = expression, aliaz end