MariaDB Question:

Please explain what is the use of MariaDB DISTINCT clause?

Tweet Share WhatsApp

Answer:

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];

Download MariaDB PDF Read All 55 MariaDB Questions
Previous QuestionNext Question
Tell us how to delete a database in MariaDB?Explain me how to create a table in MariaDB's database?