Which Of The Following Sql Statement Selects Only Unique Values #34
Which of the following SQL statement selects only unique values from ‘section’ column of table ‘school’?
This multiple choice question (MCQ) is related to the book/course gs gs115 Structured Query Language. It can also be found in gs gs115 SQL MCQs on Select Statement - SQL Select Distinct - Quiz No.1.
Which of the following SQL statement selects only unique values from ‘section’ column of table ‘school’?
SELECT section FROM school;
SELECT * FROM school;
SELECT DISTINCT section FROM school;
SELECT ALL section FROM school;