6.22. SQL Select Distinct — Python
Unique values
SELECT DISTINCT agency FROM astronauts;
SELECT DISTINCT agency AS ag FROM astronauts;
SELECT DISTINCT agency FROM astronauts WHERE location = 'Europe';