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 796 796: def initialize(using, *args) 797: @using = using 798: super(*args) 799: end
[Validate]