Unique values from multiple columns
But what if we want to know, for example, unique pairs 'country-city' of our site visitors? Surely, we can extract unique countries (like in the previous chapter) and unique cities. But then we have to connect each city to the country manually.
This task can be solved by the same DISTINCT
, but this time with two columns. For example,
12SELECT DISTINCT(country), city FROM visitors
The
DISTINCT
statement will return all the unique combinations of columns you chose. Using parentheses is not mandatory, i.e. you for the example above you can writeDISTINCT country, city
. But placing multiple columns withinDISTINCT
parentheses will return only one column of all unique combinations in(country, city)
format.
Swipe to start coding
Extract all unique combinations of model
and transmission
Solution
Merci pour vos commentaires !
single
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion
Awesome!
Completion rate improved to 2.63Awesome!
Completion rate improved to 2.63
Unique values from multiple columns
But what if we want to know, for example, unique pairs 'country-city' of our site visitors? Surely, we can extract unique countries (like in the previous chapter) and unique cities. But then we have to connect each city to the country manually.
This task can be solved by the same DISTINCT
, but this time with two columns. For example,
12SELECT DISTINCT(country), city FROM visitors
The
DISTINCT
statement will return all the unique combinations of columns you chose. Using parentheses is not mandatory, i.e. you for the example above you can writeDISTINCT country, city
. But placing multiple columns withinDISTINCT
parentheses will return only one column of all unique combinations in(country, city)
format.
Swipe to start coding
Extract all unique combinations of model
and transmission
Solution
Merci pour vos commentaires !
single
Awesome!
Completion rate improved to 2.63
Unique values from multiple columns
Glissez pour afficher le menu
But what if we want to know, for example, unique pairs 'country-city' of our site visitors? Surely, we can extract unique countries (like in the previous chapter) and unique cities. But then we have to connect each city to the country manually.
This task can be solved by the same DISTINCT
, but this time with two columns. For example,
12SELECT DISTINCT(country), city FROM visitors
The
DISTINCT
statement will return all the unique combinations of columns you chose. Using parentheses is not mandatory, i.e. you for the example above you can writeDISTINCT country, city
. But placing multiple columns withinDISTINCT
parentheses will return only one column of all unique combinations in(country, city)
format.
Swipe to start coding
Extract all unique combinations of model
and transmission
Solution
Merci pour vos commentaires !