class Sequel::SQL::JoinUsingClause

  1. lib/sequel/sql.rb
Superclass: JoinClause

Represents an SQL JOIN clause with USING conditions.

Methods

Public Class

  1. new

Public Instance

  1. using

Attributes

using [R]

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

Public Class methods

new(cols, *args)

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

[show source]
     # File lib/sequel/sql.rb
1596 def initialize(cols, *args)
1597   @using = cols 
1598   super(*args)
1599 end