What Is The Syntax Of Sqlite Distinct Clause #91
What is the syntax of SQLite DISTINCT Clause?
This multiple choice question (MCQ) is related to the book/course gs gs118 Data Mining. It can also be found in gs gs118 SQLite MCQs - SQLite MCQs - Quiz No.10.
What is the syntax of SQLite DISTINCT Clause?
SELECT DISTINCT column1, column2....columnN
OF table_name;
SELECT DISTINCT column1, column2....columnN
FROM table_name; SELECT column1, column2....columnN FROM table_name; SELECT column1, column2....columnN OF table_name; SELECT DISTINCT column1, column2....columnN FROM table_name;