Contenido del Curso
Introducción a SQL
Introducción a SQL
La función COUNT()
COUNT()
es una función utilizada para contar.
Esta función nos permite contar el número de filas en una tabla o el número de filas que cumplen con criterios específicos. Para ilustrar, comencemos con un ejemplo:
SELECT COUNT(name) FROM country;
Para contar el número total de filas en la tabla, podemos usar la siguiente sintaxis:
SELECT COUNT(*) FROM country;
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to retrieve the number of rows from the country
table where the continent is 'Asia' with a population of over 1000000.
¡Gracias por tus comentarios!
La función COUNT()
COUNT()
es una función utilizada para contar.
Esta función nos permite contar el número de filas en una tabla o el número de filas que cumplen con criterios específicos. Para ilustrar, comencemos con un ejemplo:
SELECT COUNT(name) FROM country;
Para contar el número total de filas en la tabla, podemos usar la siguiente sintaxis:
SELECT COUNT(*) FROM country;
Here is the country
table we are working with:
Swipe to show code editor
Write an SQL query to retrieve the number of rows from the country
table where the continent is 'Asia' with a population of over 1000000.
¡Gracias por tus comentarios!