I am very new to pandas. I have two dataframes related to two player Game
DF1:matches # match information
match_num winner_id loser_id
270 201504 201595
271 201514 201426
272 201697 211901
273 201620 211539
274 214981 203564
DF2: players #information about the players
playerid First Name Last Name Country
200001 Martina Hingis SUI
200002 Mirjana Lucic CRO
200003 Justine Henin BEL
full data: https://drive.google.com/file/d/1QHglO3DkZPDFvqHH-jJYDbYh3jylo2-C/view?usp=sharing
I need to find out Which player(s) won the highest number of matches in a row?
Can this be solved using sql functions?
Thanks in advance!!