Which SQL statement effectively removes duplicate rows from the query results when querying a table?
Real Exam
Explanation:
The correct answer is SELECT DISTINCT * FROM table_name. This statement is designed to eliminate duplicate rows from the query results by returning only distinct (different) values. The other options either misuse SQL syntax or do not achieve the intended result of removing duplicates.