Select Query by Pair of fields using an in clause
问题 I have a table called players as follows: First_Id Second_Id Name 1 1 Durant 2 1 Kobe 1 2 Lebron 2 2 Dwight 1 3 Dirk I wish to write a select statement on this table to retrieve all rows whose first ids and second ids match a bunch of specified first and second ids. So for example, I wish to select all rows whose first and second ids are as follows: (1,1), (1,2) and (1,3). This would retreive the following 3 rows: First_Id Second_Id Name 1 1 Durant 1 2 Lebron 1 3 Dirk Is it possible to write