Ver Mensaje Individual
  #9 (permalink)  
Antiguo 24/02/2005, 20:19
javier_82
 
Fecha de Ingreso: febrero-2005
Mensajes: 66
Antigüedad: 19 años, 9 meses
Puntos: 0
FINAL:

SELECT tiendas.id, tiendas.nombre, COUNT(*) AS "Cant bodegas a las que compraron"
FROM tiendas
JOIN ventas ON tienda.id = ventas.idtienda
GROUP BY tiendas.id
HAVING COUNT(*) = (SELECT COUNT(*) FROM bodegas );

Espero que te sirva y te repito que me digas si te funciono.