How do you select distinct values from a column in a SQL table?

  • DIFFERENT
  • DISTINCT
  • SELECT UNIQUE
  • UNIQUE
The DISTINCT keyword in SQL is used to retrieve unique values from a specified column in a table. It ensures that only distinct values are returned in the result set, eliminating duplicate entries. This is helpful when you want to see a list of unique values in a specific column.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *