Assuming the column col1 in table tab1 has the following values:
2,3,NULL,2,3,1
What will be the output of the select statement mentioned below?
SELECT count(DISTINCT col1) FROM tab1
Correct Answer: 3
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More MySQL MCQ Questions