Class: Sequel::SQL::JoinUsingClause

Inherits:
JoinClause show all
Defined in:
lib/sequel/sql.rb

Overview

Represents an SQL JOIN table USING (columns) clause.

Instance Attribute Summary collapse

Attributes inherited from JoinClause

#join_type, #table, #table_alias

Instance Method Summary collapse

Methods inherited from Expression

#lit, #sql_literal

Constructor Details

#initialize(using, *args) ⇒ JoinUsingClause

Create an object with the given USING conditions and call super with the remaining args.



682
683
684
685
# File 'lib/sequel/sql.rb', line 682

def initialize(using, *args)
  @using = using
  super(*args)
end

Instance Attribute Details

#usingObject (readonly)

The columns that appear in both tables that should be equal for the conditions to match.



678
679
680
# File 'lib/sequel/sql.rb', line 678

def using
  @using
end