I want to delete all duplicate records from my table except one record (tbl_user_points)
Table Data
id userid points Reason
------------------------------
132 1278 50 Bonus points
153 1278 50 Bonus points
174 1278 50 Bonus points
195 1278 50 Bonus points
So my final output will be
id userid points Reason
------------------------------
132 1278 50 Bonus points
Please help me on this