Class Sequel::SQL::JoinUsingClause
In: lib/sequel/sql.rb
Parent: JoinClause

Represents an SQL JOIN clause with USING conditions.

Methods

new  

Attributes

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

Public Class methods

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

[Source]

     # File lib/sequel/sql.rb, line 796
796:       def initialize(using, *args)
797:         @using = using
798:         super(*args)
799:       end

[Validate]