Ejemplo: sql cuenta cuántas veces aparece un valor
* For Example
- You have a table called t1 & in that table you want to know how many times "ABC" name occured.
So your query will be.
select name, count(*) as total FROM t1 GROUP BY name
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)