Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySQLDISTINCTSingle-choice MCQ

Which two queries return the same result for a single column with duplicate values?

-- A SELECT DISTINCT city FROM customers; -- B SELECT city FROM customers GROUP BY city;