The table has 30+ columns and there are many duplicated row data like this:
col_1 col_2 col_3
1 2 2
2 3 2
1 2 2
3 2 2
1 2 2
2 3 2
3 2 2
I want to select all data and filter these duplicated rows, after filtering, the result is
col_1 col_2 col_3
1 2 2
2 3 2
3 2 2
I found DISTINCT
and GROUP BY
work but I should type many column names. Are there any easier methods available?