Represents an SQL JOIN clause with USING conditions.
Attributes
using | [R] |
The columns that appear in both tables that should be equal for the conditions to match. |
Public Class methods
new
(using, *args)
Create an object with the given USING conditions and call super with the remaining args.
[show source]
# File lib/sequel/sql.rb, line 1294 def initialize(using, *args) @using = using super(*args) end