Question №7
Remaining:
How to remove duplicates in the result of an SQL query?
Sample Answer
Show Answer by Default
Use the DISTINCT keyword in the SELECT statement to return only unique records.
Пример:
MySQL 8.1SELECT DISTINCT position FROM employees;