Unfortunately you can’t use additional joining conditions after USING like you do with ON, the following syntax is invalid:

(…)
FROM left AS l
INNER JOIN right AS r USING (id) AND l.something > ‘something else’