Four properties of the LIKE operator that is used together with the WHERE clause to match text against a pattern are listed below, as are the specific uses of the property. Match the property with its use. Instructions: Choose your responses from the drop-down menus below. Response options cannot be used more than once. {Ans: The wildcard character _ - to match exactly one character The wildcard character % - to match any number of characters LIKE by default - LIKE by default LIKE followed by BINARY- LIKE followed by BINARY}You are analyzing data for a new sports stats website and have access to their databases related to the Major League Baseball (MLB) games. A coworker has created the table Attendance, which estimates the average attendance at home games next season for franchises in each division of the National League (NL) and the American League (AL). League Division Average NL East 41,253 NL West 36,857 NL Central 37,625 AL East 45,303 AL West 39,758 AL Central 32,506 Suppose you need to extract a list of the highest average attendance for each league and each division in it, then order it by league and then division. Which of the following