SELECT UNIQUE is the old syntax, which is supported by Oracle's flavor of SQL. It is similar to SELECT DISTINCT.
Use SELECT DISTINCT because this is the standard SQL, and SELECT UNIQUE as it is non-standard.
In database brands other than Oracle, SELECT UNIQUE may not be recognized at all.