What is the usage of the DISTINCT keyword?
The DISTINCT keyword is used to ensure that the fetched value is only a non-duplicate value. The DISTINCT keyword is used to SELECT DISTINCT, and it always fetches different (distinct) from the column of the table. The DISTINCT keyword in SQL is used to eliminate duplicate records from the result set of a SELECT query. … Read more