InterviewSolution
Saved Bookmarks
| 1. |
If a table contains duplicate rows, does a query result display the duplicate values by default? How can you eliminate duplicate rows from a query result? |
|
Answer» A query result displays all rows including the duplicate rows. To eliminate duplicate rows in the result, the DISTINCT keyword is used in the SELECT clause. |
|