Please explain what is the use of MariaDB DISTINCT clause?

Submitted by: Muhammad
MariaDB DISTINCT Clause is used to remove duplicates from the result when it is used with SELECT statement.

Syntax:
SELECT DISTINCT expressions
FROM tables
[WHERE conditions];
Submitted by: Muhammad

Read Online MariaDB Job Interview Questions And Answers