+ 9
What is the principle DISTNICT keyword in SQL???
5 Respuestas
+ 5
It returns only unique values, take a look at the lesson:
https://www.sololearn.com/learn/SQL/1853/
0
The distinct keyword helps avoid repetitions in the query results
0
select distinct from emplyee
0
avoids repetition and returns unique values.
0
distinct keyword used to retrive unique data or removal of duplicate data...