DISTINCT

SELECT DISTINCT column1, column2...

FROM table_name;

Table 1. STUDENTS table

SELECT first_name FROM students;

OUTPUT

SELECT DISTINCT first_nameĀ 

FROM students;

OUTPUT