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

Methods that created QualifiedIdentifiers, used for qualifying column names with a table or table names with a schema.

Methods

qualify  

Public Instance methods

Qualify the current object with the given table/schema.

[Source]

     # File lib/sequel_core/sql.rb, line 284
284:       def qualify(ts)
285:         QualifiedIdentifier.new(ts, self)
286:       end

[Validate]