Skip to content

Tag: sql

Is it possible to create a SELECT for this?

I have (2) tables. match has (4) player IDs (pid1,pid2,pid3,pid4) and points for each player. (primary key match_id). player table has pid and the full name. I want to create a SQL select to full names and points for a given match. Create another SQL to select to full names and points for a given player id. C…