You can use DISTINCT as inSELECT DISTINCT
col1,col2,col3
FROM
YourTable
The thing to keep in mind though, is that distinctness is determined by all the columns in the select list. If even one column has different values, then the two rows are considered distinct and so you will get two rows in the output.
There are other ways to do distinct - see Madhivanan's blog