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.
Loading...
Related Quiz
- When presenting a data-driven story to a non-technical audience, what type of visualization should be prioritized to enhance understanding and engagement?
- The 'Employee ______ Rate' is a crucial KPI for understanding staff turnover in an organization.
- Explain how 'git stash' is useful in managing changes.
- What role does trend analysis play in business reporting?
- What is the output of print({i: i * i for i in range(3)})?