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 804 804: def initialize(using, *args) 805: @using = using 806: super(*args) 807: end
[Validate]