Computer Science
DISTINCT clause is used to remove redundant rows from the result of the SELECT statement.
SQL Queries
2 Likes
Answer
True
Reason — The DISTINCT
keyword in SQL is used to eliminate duplicate rows from the results of the SELECT
statement.
Answered By
2 Likes
Related Questions
Each SQL table must have at least one column and one row.
Foreign key column derives its value from the primary key of the parent table.
SELECT MIN (Salary) FROM Employee
will return the highest salary from the table.Group functions can be applied to any numeric values, some text types and DATE values.