Queries Set 3 (DDL Commands) Suppose your school management has decided to conduct cricket matches between students of Class XI and Class XII. Students of each class are asked to join any one of the four teams – Team Tehlka, Team Toofan, Team Aandhi and Team Shailab. During summer vacations, various matches will be conducted between these teams. Help your sports teacher to do the following: a) Create a database “Sports”. b) Create a table “TEAM” with following considerations: i) It should have a column TeamID for storing an integer value between 1 to 9, which refers to unique identification of a team. ii) Each TeamID should have its associated name (TeamName), which should be a string of length not less than 10 characters. iii) Using table level constraint, make TeamID as the primary key. ...