MariaDB Question:
Please explain what is the use of MariaDB DISTINCT clause?
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];
Syntax:
SELECT DISTINCT expressions
FROM tables
[WHERE conditions];
Previous Question | Next Question |
Tell us how to delete a database in MariaDB? | Explain me how to create a table in MariaDB's database? |