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
Løsning
Tak for dine kommentarer!
single
Spørg AI
Spørg AI
Spørg om hvad som helst eller prøv et af de foreslåede spørgsmål for at starte vores chat
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
Løsning
Tak for dine kommentarer!
single
Awesome!
Completion rate improved to 2.63
Unique values from multiple columns
Stryg for at vise menuen
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
Løsning
Tak for dine kommentarer!