Need help with DISCINT sql keyword.
Hello. I need your help with sql. Consider having following table named scores: date name score gender 2018-4-12 Liz 98 f 2017-8-2 Max 85 m 2018-5-18 Bob 82 m 2017-8-2 Max 73 m 2018-5-18 Bob 82 m I want to delete duplicate records that have exact same date & name & score (record 3 & 5). I don't care about gender column, but I want to display it too. So I want the table to look like this: date name score gender 2018-4-12 Liz 98 f 2017-8-2 Max 85 m 2018-5-18 Bob 82 m 2017-8-2 Max 73 m How can I do it?