The DISTINCT keyword is used to only different(individual) values.
In a table, a column contains many duplicate values and you only want to list the different(individual) values.
Syntax
SELECT DISTINCT column1 FROM tablename
Copyright ©2022 coderraj.com. All Rights Reserved.