Represents an SQL JOIN clause with USING conditions.
Create an object with the given USING conditions and call super with the remaining args.
[Source]
# File lib/sequel/sql.rb, line 841 841: def initialize(using, *args) 842: @using = using 843: super(*args) 844: end
[Validate]