Class: Sequel::SQL::QualifiedIdentifier

Inherits:
GenericExpression show all
Includes:
QualifyingMethods
Defined in:
lib/sequel/sql.rb

Overview

Represents a qualified (column with table or table with schema) reference.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from QualifyingMethods

#qualify

Methods included from SubscriptMethods

#sql_subscript

Methods included from StringMethods

#ilike, #like

Methods included from OrderMethods

#asc, #desc

Methods included from ComplexExpressionMethods

#extract, #sql_boolean, #sql_number, #sql_string

Methods included from CastMethods

#cast, #cast_numeric, #cast_string

Methods included from BooleanMethods

#~

Methods included from AliasMethods

#as

Methods inherited from Expression

#lit, #sql_literal

Constructor Details

#initialize(table, column) ⇒ QualifiedIdentifier

Set the table and column to the given arguments



767
768
769
# File 'lib/sequel/sql.rb', line 767

def initialize(table, column)
  @table, @column = table, column
end

Instance Attribute Details

#columnObject (readonly)

The column to reference



761
762
763
# File 'lib/sequel/sql.rb', line 761

def column
  @column
end

#tableObject (readonly)

The table to reference



764
765
766
# File 'lib/sequel/sql.rb', line 764

def table
  @table
end