combined_text
stringlengths
106
1.05k
###question:What is Oriol Servia's average Grid on races with more than 43 laps?###answer:SELECT AVG(grid) FROM table_name_10 WHERE laps > 43 AND driver = "oriol servia"###context:CREATE TABLE table_name_10 (grid INTEGER, laps VARCHAR, driver VARCHAR)
###question:How many laps were there in the race that netted the winner 19 points?###answer:SELECT laps FROM table_name_96 WHERE points = 19###context:CREATE TABLE table_name_96 (laps VARCHAR, points VARCHAR)
###question:In what Season is Necaxa an Opponent?###answer:SELECT season FROM table_name_96 WHERE opponent = "necaxa"###context:CREATE TABLE table_name_96 (season VARCHAR, opponent VARCHAR)
###question:In what season is Victoria the Opponent?###answer:SELECT season FROM table_name_97 WHERE opponent = "victoria"###context:CREATE TABLE table_name_97 (season VARCHAR, opponent VARCHAR)
###question:Name the authority when the decile is 6 for pongaroa school###answer:SELECT authority FROM table_name_32 WHERE decile = 6 AND name = "pongaroa school"###context:CREATE TABLE table_name_32 (authority VARCHAR, decile VARCHAR, name VARCHAR)
###question:Name the years for dannevirke south school###answer:SELECT years FROM table_name_48 WHERE name = "dannevirke south school"###context:CREATE TABLE table_name_48 (years VARCHAR, name VARCHAR)
###question:Name the least decile for state authority and area of eketahuna with roll more than 44###answer:SELECT MIN(decile) FROM table_name_78 WHERE authority = "state" AND area = "eketahuna" AND roll > 44###context:CREATE TABLE table_name_78 (decile INTEGER, roll VARCHAR, authority VARCHAR, area VARCHAR)
###question:Tell me the name with area of eketahuna###answer:SELECT name FROM table_name_16 WHERE area = "eketahuna"###context:CREATE TABLE table_name_16 (name VARCHAR, area VARCHAR)
###question:Name what was completed on 12 april 1934###answer:SELECT completed FROM table_name_28 WHERE launched = "12 april 1934"###context:CREATE TABLE table_name_28 (completed VARCHAR, launched VARCHAR)
###question:Name the launched for 13 september 1934 completion###answer:SELECT launched FROM table_name_91 WHERE completed = "13 september 1934"###context:CREATE TABLE table_name_91 (launched VARCHAR, completed VARCHAR)
###question:Name the ship launched 29 may 1934###answer:SELECT ship FROM table_name_22 WHERE launched = "29 may 1934"###context:CREATE TABLE table_name_22 (ship VARCHAR, launched VARCHAR)
###question:Name the laid down for launched being 16 february 1934###answer:SELECT laid_down FROM table_name_39 WHERE launched = "16 february 1934"###context:CREATE TABLE table_name_39 (laid_down VARCHAR, launched VARCHAR)
###question:Name the pennant number for completion of 30 october 1934 and launched 29 march 1934###answer:SELECT pennant_number FROM table_name_43 WHERE launched = "29 march 1934" AND completed = "30 october 1934"###context:CREATE TABLE table_name_43 (pennant_number VARCHAR, launched VARCHAR, completed VARCHAR)
###question:Name the laid down for completed of 22 october 1934###answer:SELECT laid_down FROM table_name_67 WHERE completed = "22 october 1934"###context:CREATE TABLE table_name_67 (laid_down VARCHAR, completed VARCHAR)
###question:what is the lowest votes of the candidate ranked 5th and riding in victoria?###answer:SELECT MIN(votes) FROM table_name_94 WHERE rank = "5th" AND riding = "victoria"###context:CREATE TABLE table_name_94 (votes INTEGER, rank VARCHAR, riding VARCHAR)
###question:Which home captian has aus by 295 runs as the result?###answer:SELECT home_captain FROM table_name_21 WHERE result = "aus by 295 runs"###context:CREATE TABLE table_name_21 (home_captain VARCHAR, result VARCHAR)
###question:Which result has adelaide oval as the venue?###answer:SELECT result FROM table_name_11 WHERE venue = "adelaide oval"###context:CREATE TABLE table_name_11 (result VARCHAR, venue VARCHAR)
###question:Born in 1982, this guard has what listed as a height?###answer:SELECT height FROM table_name_44 WHERE position = "guard" AND year_born = 1982###context:CREATE TABLE table_name_44 (height VARCHAR, position VARCHAR, year_born VARCHAR)
###question:Which Points Classification Navy Blue Jersey that has a Jersey of Graeme Brown###answer:SELECT points_classification_navy_blue_jersey FROM table_name_8 WHERE general_classification_yellow_jersey = "graeme brown"###context:CREATE TABLE table_name_8 (points_classification_navy_blue_jersey VARCHAR, general_classification_yellow_jersey VARCHAR)
###question:What is the Intermediate Sprints Classification Red Jersey that has a Green Jersey of Murilo Antonio Fischer, and Jose Joaquin Rojas Gil?###answer:SELECT intermediate_sprints_classification_red_jersey FROM table_name_34 WHERE mountains_classification_green_jersey = "murilo antonio fischer" AND points_classification_navy_blue_jersey = "jose joaquin rojas gil"###context:CREATE TABLE table_name_34 (intermediate_sprints_classification_red_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, points_classification_navy_blue_jersey VARCHAR)
###question:What is General Classification Yellow Jersey that has a Murilo Antonio Fischer, and Lampre-Fondital?###answer:SELECT general_classification_yellow_jersey FROM table_name_74 WHERE mountains_classification_green_jersey = "murilo antonio fischer" AND team_classification = "lampre-fondital"###context:CREATE TABLE table_name_74 (general_classification_yellow_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, team_classification VARCHAR)
###question:What is the Points Classification Navy Blue Jersey that has Yoann le Boulanger, and Gerolsteiner?###answer:SELECT points_classification_navy_blue_jersey FROM table_name_11 WHERE mountains_classification_green_jersey = "yoann le boulanger" AND team_classification = "gerolsteiner"###context:CREATE TABLE table_name_11 (points_classification_navy_blue_jersey VARCHAR, mountains_classification_green_jersey VARCHAR, team_classification VARCHAR)
###question:What was the attendance on April 7?###answer:SELECT SUM(attendance) FROM table_name_75 WHERE date = "april 7"###context:CREATE TABLE table_name_75 (attendance INTEGER, date VARCHAR)
###question:Who won the Northumberland Senior Benevolent Bowl, when the Northumberland Minor Cup was won by Whitley Bay 'a'?###answer:SELECT northumberland_senior_benevolent_bowl FROM table_name_25 WHERE northumberland_minor_cup = "whitley bay 'a'"###context:CREATE TABLE table_name_25 (northumberland_senior_benevolent_bowl VARCHAR, northumberland_minor_cup VARCHAR)
###question:What was the film nomination in the Netherlands?###answer:SELECT film_title_used_in_nomination FROM table_name_6 WHERE country = "netherlands"###context:CREATE TABLE table_name_6 (film_title_used_in_nomination VARCHAR, country VARCHAR)
###question:Who directed Turks Fruit?###answer:SELECT director FROM table_name_6 WHERE original_title = "turks fruit"###context:CREATE TABLE table_name_6 (director VARCHAR, original_title VARCHAR)
###question:What director is from Poland?###answer:SELECT director FROM table_name_65 WHERE country = "poland"###context:CREATE TABLE table_name_65 (director VARCHAR, country VARCHAR)
###question:Who directed the Romanian film?###answer:SELECT director FROM table_name_60 WHERE language = "romanian"###context:CREATE TABLE table_name_60 (director VARCHAR, language VARCHAR)
###question:What placement gets more than $400?###answer:SELECT place FROM table_name_18 WHERE money___$__ > 400###context:CREATE TABLE table_name_18 (place VARCHAR, money___$__ INTEGER)
###question:What's the average payout of toney penna with a +2 par?###answer:SELECT AVG(money___) AS $__ FROM table_name_85 WHERE to_par = "+2" AND player = "toney penna"###context:CREATE TABLE table_name_85 (money___ INTEGER, to_par VARCHAR, player VARCHAR)
###question:What is the attendance number of the game on April 16?###answer:SELECT COUNT(attendance) FROM table_name_91 WHERE date = "april 16"###context:CREATE TABLE table_name_91 (attendance VARCHAR, date VARCHAR)
###question:What was the average pick of northwestern state college under round 3?###answer:SELECT AVG(pick) FROM table_name_81 WHERE round < 3 AND college = "northwestern state"###context:CREATE TABLE table_name_81 (pick INTEGER, round VARCHAR, college VARCHAR)
###question:Rutgers college holds what position?###answer:SELECT position FROM table_name_32 WHERE college = "rutgers"###context:CREATE TABLE table_name_32 (position VARCHAR, college VARCHAR)
###question:In what round smaller than 10, was the center les studdard picked in?###answer:SELECT MIN(pick) FROM table_name_97 WHERE position = "center" AND name = "les studdard" AND round < 10###context:CREATE TABLE table_name_97 (pick INTEGER, round VARCHAR, position VARCHAR, name VARCHAR)
###question:Which college had rounds smaller than 2?###answer:SELECT college FROM table_name_80 WHERE round < 2###context:CREATE TABLE table_name_80 (college VARCHAR, round INTEGER)
###question:What record was reached with a score of 7 - 2?###answer:SELECT record FROM table_name_8 WHERE score = "7 - 2"###context:CREATE TABLE table_name_8 (record VARCHAR, score VARCHAR)
###question:What is the name of the club with a rank of 5?###answer:SELECT club FROM table_name_78 WHERE rank = "5"###context:CREATE TABLE table_name_78 (club VARCHAR, rank VARCHAR)
###question:What is the rank that shows 276 games?###answer:SELECT rank FROM table_name_25 WHERE games = "276"###context:CREATE TABLE table_name_25 (rank VARCHAR, games VARCHAR)
###question:What is the rank that shows 426 games?###answer:SELECT rank FROM table_name_64 WHERE games = "426"###context:CREATE TABLE table_name_64 (rank VARCHAR, games VARCHAR)
###question:What is the number of games for Roger Merrett?###answer:SELECT games FROM table_name_39 WHERE player = "roger merrett"###context:CREATE TABLE table_name_39 (games VARCHAR, player VARCHAR)
###question:What Engine had a Finish of 27?###answer:SELECT engine FROM table_name_98 WHERE finish = "27"###context:CREATE TABLE table_name_98 (engine VARCHAR, finish VARCHAR)
###question:What Engine had a chassis of March 85c?###answer:SELECT engine FROM table_name_72 WHERE chassis = "march 85c"###context:CREATE TABLE table_name_72 (engine VARCHAR, chassis VARCHAR)
###question:What Engine has a Finish of 21?###answer:SELECT engine FROM table_name_68 WHERE finish = "21"###context:CREATE TABLE table_name_68 (engine VARCHAR, finish VARCHAR)
###question:On what platform does Mindark publish?###answer:SELECT platform FROM table_name_84 WHERE publisher = "mindark"###context:CREATE TABLE table_name_84 (platform VARCHAR, publisher VARCHAR)
###question:What year did Avatar Reality release a game?###answer:SELECT year FROM table_name_14 WHERE developer = "avatar reality"###context:CREATE TABLE table_name_14 (year VARCHAR, developer VARCHAR)
###question:What publisher created Crysis Warhead?###answer:SELECT publisher FROM table_name_35 WHERE title = "crysis warhead"###context:CREATE TABLE table_name_35 (publisher VARCHAR, title VARCHAR)
###question:For what platform does Mindark publish?###answer:SELECT platform FROM table_name_37 WHERE publisher = "mindark"###context:CREATE TABLE table_name_37 (platform VARCHAR, publisher VARCHAR)
###question:What publisher does Paleo Entertainment develop for?###answer:SELECT publisher FROM table_name_14 WHERE developer = "paleo entertainment"###context:CREATE TABLE table_name_14 (publisher VARCHAR, developer VARCHAR)
###question:Who was the developer for Vigilance?###answer:SELECT developer FROM table_name_71 WHERE title = "vigilance"###context:CREATE TABLE table_name_71 (developer VARCHAR, title VARCHAR)
###question:Which player's home town is Swift Current, AB?###answer:SELECT player FROM table_name_17 WHERE home_town = "swift current, ab"###context:CREATE TABLE table_name_17 (player VARCHAR, home_town VARCHAR)
###question:Which position does number 23 play?###answer:SELECT position FROM table_name_13 WHERE number = "23"###context:CREATE TABLE table_name_13 (position VARCHAR, number VARCHAR)
###question:Which number plays the skaters position?###answer:SELECT number FROM table_name_22 WHERE position = "skaters"###context:CREATE TABLE table_name_22 (number VARCHAR, position VARCHAR)
###question:How much does number 26 weigh?###answer:SELECT weight FROM table_name_31 WHERE number = "26"###context:CREATE TABLE table_name_31 (weight VARCHAR, number VARCHAR)
###question:Which family has a Name of humpback whale?###answer:SELECT family FROM table_name_40 WHERE name = "humpback whale"###context:CREATE TABLE table_name_40 (family VARCHAR, name VARCHAR)
###question:Which name has a Red List larger than 0, and a Species/Authority of balaenoptera acutorostrata lacépède, 1804?###answer:SELECT name FROM table_name_20 WHERE red_list > 0 AND species_authority = "balaenoptera acutorostrata lacépède, 1804"###context:CREATE TABLE table_name_20 (name VARCHAR, red_list VARCHAR, species_authority VARCHAR)
###question:Which Species/Authority has a Name of true's beaked whale?###answer:SELECT species_authority FROM table_name_44 WHERE name = "true's beaked whale"###context:CREATE TABLE table_name_44 (species_authority VARCHAR, name VARCHAR)
###question:What engine has 2 points?###answer:SELECT engine_s_ FROM table_name_41 WHERE points = "2"###context:CREATE TABLE table_name_41 (engine_s_ VARCHAR, points VARCHAR)
###question:What tyres are associated with a year after 1974 and 5 points?###answer:SELECT tyres FROM table_name_37 WHERE year > 1974 AND points = "5"###context:CREATE TABLE table_name_37 (tyres VARCHAR, year VARCHAR, points VARCHAR)
###question:What is the engine(s) on the car before 1978 with ensign n177 chassis?###answer:SELECT engine_s_ FROM table_name_71 WHERE chassis = "ensign n177" AND year < 1978###context:CREATE TABLE table_name_71 (engine_s_ VARCHAR, chassis VARCHAR, year VARCHAR)
###question:What tyres have 1 point and an ensign n177 chassis?###answer:SELECT tyres FROM table_name_15 WHERE points = "1" AND chassis = "ensign n177"###context:CREATE TABLE table_name_15 (tyres VARCHAR, points VARCHAR, chassis VARCHAR)
###question:Before 1987, what is the Entrant with bmw straight-4 (t/c) as Engine and a great than 2 Pts?###answer:SELECT entrant FROM table_name_12 WHERE year < 1987 AND engine = "bmw straight-4 (t/c)" AND pts > 2###context:CREATE TABLE table_name_12 (entrant VARCHAR, pts VARCHAR, year VARCHAR, engine VARCHAR)
###question:What did Ku Hyo-Jin rank?###answer:SELECT COUNT(rank) FROM table_name_46 WHERE name = "ku hyo-jin"###context:CREATE TABLE table_name_46 (rank VARCHAR, name VARCHAR)
###question:What was the rank of the person who swam in Lane 7 with a time of 2:25.86?###answer:SELECT SUM(rank) FROM table_name_55 WHERE time = "2:25.86" AND lane < 7###context:CREATE TABLE table_name_55 (rank INTEGER, time VARCHAR, lane VARCHAR)
###question:Which Laid down has a Ship of fearless?###answer:SELECT laid_down FROM table_name_57 WHERE ship = "fearless"###context:CREATE TABLE table_name_57 (laid_down VARCHAR, ship VARCHAR)
###question:Which ship has a Pennant number of h.69?###answer:SELECT ship FROM table_name_43 WHERE pennant_number = "h.69"###context:CREATE TABLE table_name_43 (ship VARCHAR, pennant_number VARCHAR)
###question:Which Launched has Commissioned 6 june 1935?###answer:SELECT launched FROM table_name_36 WHERE commissioned = "6 june 1935"###context:CREATE TABLE table_name_36 (launched VARCHAR, commissioned VARCHAR)
###question:What launch has a Ship of fearless?###answer:SELECT launched FROM table_name_64 WHERE ship = "fearless"###context:CREATE TABLE table_name_64 (launched VARCHAR, ship VARCHAR)
###question:Which commission was launched 28 june 1934, and has a Pennant number of h.78?###answer:SELECT commissioned FROM table_name_40 WHERE launched = "28 june 1934" AND pennant_number = "h.78"###context:CREATE TABLE table_name_40 (commissioned VARCHAR, launched VARCHAR, pennant_number VARCHAR)
###question:Which year has a Round of 17?###answer:SELECT year FROM table_name_2 WHERE round = "17"###context:CREATE TABLE table_name_2 (year VARCHAR, round VARCHAR)
###question:Which opponent has a Club of essendon, and a Score of 13.4.82?###answer:SELECT opponent FROM table_name_73 WHERE club = "essendon" AND score = "13.4.82"###context:CREATE TABLE table_name_73 (opponent VARCHAR, club VARCHAR, score VARCHAR)
###question:Which opponent has a Score of 15.4.94?###answer:SELECT opponent FROM table_name_89 WHERE score = "15.4.94"###context:CREATE TABLE table_name_89 (opponent VARCHAR, score VARCHAR)
###question:Which opponent has a Round of 12?###answer:SELECT opponent FROM table_name_34 WHERE round = "12"###context:CREATE TABLE table_name_34 (opponent VARCHAR, round VARCHAR)
###question:Which Quarter has a Round of 17?###answer:SELECT quarter FROM table_name_7 WHERE round = "17"###context:CREATE TABLE table_name_7 (quarter VARCHAR, round VARCHAR)
###question:When was moray firth built?###answer:SELECT whenbuilt FROM table_name_32 WHERE name = "moray firth"###context:CREATE TABLE table_name_32 (whenbuilt VARCHAR, name VARCHAR)
###question:Name the withdrawn for charles dickens###answer:SELECT withdrawn FROM table_name_93 WHERE name = "charles dickens"###context:CREATE TABLE table_name_93 (withdrawn VARCHAR, name VARCHAR)
###question:Which opponent has a Date of july 27?###answer:SELECT opponent FROM table_name_24 WHERE date = "july 27"###context:CREATE TABLE table_name_24 (opponent VARCHAR, date VARCHAR)
###question:What Venue held the World Race Walking Cup tourney before 2008?###answer:SELECT venue FROM table_name_69 WHERE year < 2008 AND tournament = "world race walking cup"###context:CREATE TABLE table_name_69 (venue VARCHAR, year VARCHAR, tournament VARCHAR)
###question:What tournement was held in Helsinki, Finland in 2005?###answer:SELECT event FROM table_name_8 WHERE venue = "helsinki, finland"###context:CREATE TABLE table_name_8 (event VARCHAR, venue VARCHAR)
###question:What Venue held the Olympic games in 2012?###answer:SELECT venue FROM table_name_12 WHERE tournament = "olympic games" AND year = 2012###context:CREATE TABLE table_name_12 (venue VARCHAR, tournament VARCHAR, year VARCHAR)
###question:What's the website for the yamagata international documentary film festival?###answer:SELECT website FROM table_name_27 WHERE name = "yamagata international documentary film festival"###context:CREATE TABLE table_name_27 (website VARCHAR, name VARCHAR)
###question:How did Johnnie Parsons finish when his qualifying time was 135.328?###answer:SELECT rank FROM table_name_51 WHERE qual = "135.328"###context:CREATE TABLE table_name_51 (rank VARCHAR, qual VARCHAR)
###question:What was Johnnie Parsons rank when he completed over 200 laps?###answer:SELECT rank FROM table_name_67 WHERE laps > 200###context:CREATE TABLE table_name_67 (rank VARCHAR, laps INTEGER)
###question:What is the value for Podiums when the value for Wins is 2, and when the Season is 2008?###answer:SELECT podiums FROM table_name_62 WHERE wins = "2" AND season = 2008###context:CREATE TABLE table_name_62 (podiums VARCHAR, wins VARCHAR, season VARCHAR)
###question:What is the value for Position, when the Series is the Macau Grand Prix, and when the Season is before 2007?###answer:SELECT position FROM table_name_98 WHERE series = "macau grand prix" AND season < 2007###context:CREATE TABLE table_name_98 (position VARCHAR, series VARCHAR, season VARCHAR)
###question:What is the value for Wins when the Position is 7th?###answer:SELECT wins FROM table_name_67 WHERE position = "7th"###context:CREATE TABLE table_name_67 (wins VARCHAR, position VARCHAR)
###question:What is the Series, when the Season is after 2008, when the value for Podiums is 3, and when the Position is 8th?###answer:SELECT series FROM table_name_28 WHERE season > 2008 AND podiums = "3" AND position = "8th"###context:CREATE TABLE table_name_28 (series VARCHAR, position VARCHAR, season VARCHAR, podiums VARCHAR)
###question:What is the value for Podiums, when the Season is after 2008, and when the Series is GP2 Asia Series?###answer:SELECT podiums FROM table_name_65 WHERE season > 2008 AND series = "gp2 asia series"###context:CREATE TABLE table_name_65 (podiums VARCHAR, season VARCHAR, series VARCHAR)
###question:What is the value for Wins, when the Series is GP2 Series, and when the Season is before 2009?###answer:SELECT wins FROM table_name_41 WHERE series = "gp2 series" AND season < 2009###context:CREATE TABLE table_name_41 (wins VARCHAR, series VARCHAR, season VARCHAR)
###question:What was the loss of the game against the Indians when the record was 15-15?###answer:SELECT loss FROM table_name_68 WHERE opponent = "indians" AND record = "15-15"###context:CREATE TABLE table_name_68 (loss VARCHAR, opponent VARCHAR, record VARCHAR)
###question:What is the total attendance for games when the record was 23-23?###answer:SELECT COUNT(attendance) FROM table_name_61 WHERE record = "23-23"###context:CREATE TABLE table_name_61 (attendance VARCHAR, record VARCHAR)
###question:What is the total number of points for the conference division, a league position of 9th, and a lost result less than 13?###answer:SELECT COUNT(points) FROM table_name_61 WHERE division = "conference" AND league_pos = "9th" AND lost < 13###context:CREATE TABLE table_name_61 (points VARCHAR, lost VARCHAR, division VARCHAR, league_pos VARCHAR)
###question:What is the drawn result with a league position of 15th and a lost result that is more than 17?###answer:SELECT SUM(drawn) FROM table_name_36 WHERE league_pos = "15th" AND lost > 17###context:CREATE TABLE table_name_36 (drawn INTEGER, league_pos VARCHAR, lost VARCHAR)
###question:Name the competition of 2010 of dnp###answer:SELECT competition FROM table_name_6 WHERE 2010 = "dnp"###context:CREATE TABLE table_name_6 (competition VARCHAR)
###question:Name the score for columbus visitor###answer:SELECT score FROM table_name_73 WHERE visitor = "columbus"###context:CREATE TABLE table_name_73 (score VARCHAR, visitor VARCHAR)
###question:Name the least attendance with visitor of edmonton###answer:SELECT MIN(attendance) FROM table_name_98 WHERE visitor = "edmonton"###context:CREATE TABLE table_name_98 (attendance INTEGER, visitor VARCHAR)
###question:What is the lowest numbered lane of Sue Rolph with a rank under 5?###answer:SELECT MIN(lane) FROM table_name_17 WHERE name = "sue rolph" AND rank < 5###context:CREATE TABLE table_name_17 (lane INTEGER, name VARCHAR, rank VARCHAR)
###question:What is the lane number of the swimmer with a time of 55.69?###answer:SELECT lane FROM table_name_21 WHERE time = 55.69###context:CREATE TABLE table_name_21 (lane VARCHAR, time VARCHAR)
###question:What is the lowest number of league cups with 4 championships?###answer:SELECT MIN(league_cup) FROM table_name_9 WHERE championship = 4###context:CREATE TABLE table_name_9 (league_cup INTEGER, championship VARCHAR)
###question:What is the highest value for FA cups, that has a total of 0 4, with less than 4 championships?###answer:SELECT MAX(fa_cup) FROM table_name_43 WHERE total = "0 4" AND championship < 4###context:CREATE TABLE table_name_43 (fa_cup INTEGER, total VARCHAR, championship VARCHAR)
###question:How many FA cups were there without any league cups, but a total of 0 2?###answer:SELECT MIN(fa_cup) FROM table_name_3 WHERE total = "0 2" AND league_cup < 0###context:CREATE TABLE table_name_3 (fa_cup INTEGER, total VARCHAR, league_cup VARCHAR)