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