What is the difference between SELECT UNIQUE and SELECT DISTINCT?
August 7th, 2006 By Eddie Awad
DISTINCT and UNIQUE are synonymous. For example:
SELECT DISTINCT object_type
FROM user_objects;
is the same as:
SELECT UNIQUE object_type
FROM user_objects
Resources:
