Hola tengo una tabla con los atributos, IDSocio IDeporte IDClub
como hago para listar los socios que participaron en mas de 10 deportes y en mas de 5 clubes? Gracias
| |||
Respuesta: Consulta sql No lo he usado nunca pero mira lo que dice el manual de Mysql Cita: Con SQL standar...???... COUNT(DISTINCT expr,[expr...]) Returns a count of the number of different non-NULL values. COUNT(DISTINCT) returns 0 if there were no matching rows. mysql> SELECT COUNT(DISTINCT results) FROM student; In MySQL, you can obtain the number of distinct expression combinations that do not contain NULL by giving a list of expressions. In standard SQL, you would have to do a concatenation of all expressions inside COUNT(DISTINCT ...).
Código sql:
Ver original Quim Última edición por quimfv; 18/11/2008 a las 02:36 |