I've learned the USING doing things like this:
SELECT nufactura,des,cantidadc,precio,precio*cantidadc AS "SUBTOTAL"
FROM 'facturas' INNER JOIN 'fac_pro' USING(nufactura)INNER JOIN 'productos' USING(codigop)
WHERE nufactura = "700"
ORDER BY cantidadc DESC
but I have not really understood your order very well or why it is so, much less the use with ON and WHERE and that call with nombre.nombre1.
That point I do not know what he really does. Is it the same as FROM ? Is it like a pointer or something?