By a "link" you presumably mean a "FK (foreign key) constraint". A FK is a set of columns in a table whose subrow values must appear as subrow values for some CK (candidate key). (A CK is a candidate for PK (primary key)). FKs (and cardinalities) follow from the criterion for rows going in a table (its predicate) and what situations/states can arise (per business rules). A FK constraint declaration tells the DBMS about a FK.
Each of your team table player name column values has to be a player table name value. So there is a FK from each team table player name column to the player table name column. Eg in SQL FOREIGN KEY Team (player1) REFERENCES Player (name).
You need to read an introduction to information modeling and relational database design. (To query or update re a business situation you need predicates, but not FKs or cardinalities.)
PS When does a row go into the team table? For a given team is there one row, or 9! rows, or 9 to the 9th rows? If just one then which one? (Typically, the subrow that is the "smallest" according to some order.) But those are bad designs. Typically we would have a predicate "team name has player named player". But typically we would have predicates "player with id id has name name..." & "team name has player with id id". But etc. Etc etc. Read a book.