Unnamed: 0
int64
0
60k
text
stringlengths
109
1.06k
54,500
<question>: What is the percentage of Judaism associated with Christianity at 2.51%? <context>: CREATE TABLE table_name_2 (judaism VARCHAR, christianity VARCHAR) <answer>: SELECT judaism FROM table_name_2 WHERE christianity = "2.51%"
54,501
<question>: What is the value of other religions associated with atheism at 1.86%? <context>: CREATE TABLE table_name_80 (other VARCHAR, atheism VARCHAR) <answer>: SELECT other FROM table_name_80 WHERE atheism = "1.86%"
54,502
<question>: What is No. 2, when No. 9 is Mia? <context>: CREATE TABLE table_name_56 (no_2 VARCHAR, no_9 VARCHAR) <answer>: SELECT no_2 FROM table_name_56 WHERE no_9 = "mia"
54,503
<question>: What is No. 7, when No. 4 is Madison, and when No. 10 is Amelia? <context>: CREATE TABLE table_name_15 (no_7 VARCHAR, no_4 VARCHAR, no_10 VARCHAR) <answer>: SELECT no_7 FROM table_name_15 WHERE no_4 = "madison" AND no_10 = "amelia"
54,504
<question>: What is No.1, when No. 2 is Emma, and when No. 7 is Olivia? <context>: CREATE TABLE table_name_28 (no_1 VARCHAR, no_2 VARCHAR, no_7 VARCHAR) <answer>: SELECT no_1 FROM table_name_28 WHERE no_2 = "emma" AND no_7 = "olivia"
54,505
<question>: What is No. 5, when No. 2 is Olivia, when No. 4 is Ava, and when No. 6 is Abigail? <context>: CREATE TABLE table_name_39 (no_5 VARCHAR, no_6 VARCHAR, no_2 VARCHAR, no_4 VARCHAR) <answer>: SELECT no_5 FROM table_name_39 WHERE no_2 = "olivia" AND no_4 = "ava" AND no_6 = "abigail"
54,506
<question>: What is No. 3, when No. 7 is Abigail, and when No. 2 is Olivia? <context>: CREATE TABLE table_name_24 (no_3 VARCHAR, no_7 VARCHAR, no_2 VARCHAR) <answer>: SELECT no_3 FROM table_name_24 WHERE no_7 = "abigail" AND no_2 = "olivia"
54,507
<question>: What is No. 3, when No. 7 is Abigail, and when No. 4 is Ava? <context>: CREATE TABLE table_name_79 (no_3 VARCHAR, no_7 VARCHAR, no_4 VARCHAR) <answer>: SELECT no_3 FROM table_name_79 WHERE no_7 = "abigail" AND no_4 = "ava"
54,508
<question>: How many Laps have Grid larger than 14, and a Rider of sylvain guintoli? <context>: CREATE TABLE table_name_51 (laps VARCHAR, grid VARCHAR, rider VARCHAR) <answer>: SELECT COUNT(laps) FROM table_name_51 WHERE grid > 14 AND rider = "sylvain guintoli"
54,509
<question>: Which Grid has Laps of 24, and a Rider of marco melandri? <context>: CREATE TABLE table_name_22 (grid INTEGER, laps VARCHAR, rider VARCHAR) <answer>: SELECT SUM(grid) FROM table_name_22 WHERE laps = 24 AND rider = "marco melandri"
54,510
<question>: Which Grid has Laps smaller than 24, and a Time of retirement? <context>: CREATE TABLE table_name_64 (grid INTEGER, laps VARCHAR, time VARCHAR) <answer>: SELECT MIN(grid) FROM table_name_64 WHERE laps < 24 AND time = "retirement"
54,511
<question>: Which Grid has a Rider of randy de puniet, and Laps smaller than 24? <context>: CREATE TABLE table_name_11 (grid INTEGER, rider VARCHAR, laps VARCHAR) <answer>: SELECT MAX(grid) FROM table_name_11 WHERE rider = "randy de puniet" AND laps < 24
54,512
<question>: What was the type of surface played on for the week of March 17? <context>: CREATE TABLE table_name_23 (surface VARCHAR, week VARCHAR) <answer>: SELECT surface FROM table_name_23 WHERE week = "march 17"
54,513
<question>: What was the tournament for the week of August 4? <context>: CREATE TABLE table_name_14 (tournament VARCHAR, week VARCHAR) <answer>: SELECT tournament FROM table_name_14 WHERE week = "august 4"
54,514
<question>: Which tournament had Richard Krajicek as a finalist? <context>: CREATE TABLE table_name_85 (tournament VARCHAR, finalist VARCHAR) <answer>: SELECT tournament FROM table_name_85 WHERE finalist = "richard krajicek"
54,515
<question>: On what date did Detroit play at home? <context>: CREATE TABLE table_name_25 (date VARCHAR, home VARCHAR) <answer>: SELECT date FROM table_name_25 WHERE home = "detroit"
54,516
<question>: Who was the home team on June 9? <context>: CREATE TABLE table_name_81 (home VARCHAR, date VARCHAR) <answer>: SELECT home FROM table_name_81 WHERE date = "june 9"
54,517
<question>: What was the money value that went along with the score of 68-67-69-76=280? <context>: CREATE TABLE table_name_42 (money___$__ VARCHAR, score VARCHAR) <answer>: SELECT money___$__ FROM table_name_42 WHERE score = 68 - 67 - 69 - 76 = 280
54,518
<question>: What score did Leonard Thompson have when he won $9,000? <context>: CREATE TABLE table_name_74 (score VARCHAR, money___$__ VARCHAR, player VARCHAR) <answer>: SELECT score FROM table_name_74 WHERE money___$__ = "9,000" AND player = "leonard thompson"
54,519
<question>: What date had a record of 15-14-4? <context>: CREATE TABLE table_name_79 (date VARCHAR, record VARCHAR) <answer>: SELECT date FROM table_name_79 WHERE record = "15-14-4"
54,520
<question>: What is the fame number when the Montreal Canadiens were the opponent? <context>: CREATE TABLE table_name_56 (game VARCHAR, opponent VARCHAR) <answer>: SELECT COUNT(game) FROM table_name_56 WHERE opponent = "montreal canadiens"
54,521
<question>: What is the Score of game 35? <context>: CREATE TABLE table_name_43 (score VARCHAR, game VARCHAR) <answer>: SELECT score FROM table_name_43 WHERE game = 35
54,522
<question>: What is the average oveall pick for players from the college of Miami (FL)? <context>: CREATE TABLE table_name_69 (overall INTEGER, college VARCHAR) <answer>: SELECT AVG(overall) FROM table_name_69 WHERE college = "miami (fl)"
54,523
<question>: Which player was drafted overall from the college of Nebraska in a round under 6, pick of 15, and overall under 224? <context>: CREATE TABLE table_name_19 (name VARCHAR, college VARCHAR, pick VARCHAR, overall VARCHAR, round VARCHAR) <answer>: SELECT name FROM table_name_19 WHERE overall < 224 AND round < 6 AND pick = 15 AND college = "nebraska"
54,524
<question>: What is the lowest overall draft pick number for terry daniels who was picked in round 10? <context>: CREATE TABLE table_name_17 (overall INTEGER, round VARCHAR, name VARCHAR) <answer>: SELECT MIN(overall) FROM table_name_17 WHERE round = 10 AND name = "terry daniels"
54,525
<question>: What is the sum of the rounds where the draft pick came from the college of tennessee and had an overall pick number bigger than 153 and a pick less than 14? <context>: CREATE TABLE table_name_11 (round INTEGER, pick VARCHAR, college VARCHAR, overall VARCHAR) <answer>: SELECT SUM(round) FROM table_name_11 WHERE college = "tennessee" AND overall > 153 AND pick < 14
54,526
<question>: What position did the draft pick number play that was overall pick number 133? <context>: CREATE TABLE table_name_20 (position VARCHAR, overall VARCHAR) <answer>: SELECT position FROM table_name_20 WHERE overall = 133
54,527
<question>: What is the overall pick number for the player who was picked on round 8? <context>: CREATE TABLE table_name_91 (overall INTEGER, round VARCHAR) <answer>: SELECT MIN(overall) FROM table_name_91 WHERE round = 8
54,528
<question>: What college did the player who had the position of OT come from who was pick number less than 12 and a overall pick number bigger than 226? <context>: CREATE TABLE table_name_87 (college VARCHAR, position VARCHAR, overall VARCHAR, pick VARCHAR) <answer>: SELECT college FROM table_name_87 WHERE overall > 226 AND pick < 12 AND position = "ot"
54,529
<question>: WHAT IS THE APPOINTMENT DATE WITH A PRE-SEASON POSITION, AND REPLACED BY THOMAS THOMASBERG? <context>: CREATE TABLE table_name_3 (date_of_appointment VARCHAR, position_in_table VARCHAR, replaced_by VARCHAR) <answer>: SELECT date_of_appointment FROM table_name_3 WHERE position_in_table = "pre-season" AND replaced_by = "thomas thomasberg"
54,530
<question>: WHAT IS THE APPOINTMENT DATE FOR AC HORSENS? <context>: CREATE TABLE table_name_33 (date_of_appointment VARCHAR, team VARCHAR) <answer>: SELECT date_of_appointment FROM table_name_33 WHERE team = "ac horsens"
54,531
<question>: WHAT TEAM HAS 12TH TABLE POSITION AND REPLACED BY OVE PEDERSEN? <context>: CREATE TABLE table_name_98 (team VARCHAR, position_in_table VARCHAR, replaced_by VARCHAR) <answer>: SELECT team FROM table_name_98 WHERE position_in_table = "12th" AND replaced_by = "ove pedersen"
54,532
<question>: What was the score when Calgary was visiting team and Niittymaki had the decision? <context>: CREATE TABLE table_name_78 (score VARCHAR, decision VARCHAR, visitor VARCHAR) <answer>: SELECT score FROM table_name_78 WHERE decision = "niittymaki" AND visitor = "calgary"
54,533
<question>: What is the score when Biron got the decision and Philadelphia was the visitor on March 1? <context>: CREATE TABLE table_name_38 (score VARCHAR, date VARCHAR, decision VARCHAR, visitor VARCHAR) <answer>: SELECT score FROM table_name_38 WHERE decision = "biron" AND visitor = "philadelphia" AND date = "march 1"
54,534
<question>: What is the attendance when Pittsburgh is the home team? <context>: CREATE TABLE table_name_78 (attendance INTEGER, home VARCHAR) <answer>: SELECT AVG(attendance) FROM table_name_78 WHERE home = "pittsburgh"
54,535
<question>: What was the Attendance after Week 4 on October 10, 1971? <context>: CREATE TABLE table_name_35 (attendance INTEGER, date VARCHAR, week VARCHAR) <answer>: SELECT AVG(attendance) FROM table_name_35 WHERE date = "october 10, 1971" AND week > 4
54,536
<question>: What was the Attendance in the game against the New Orleans Saints? <context>: CREATE TABLE table_name_29 (attendance VARCHAR, opponent VARCHAR) <answer>: SELECT COUNT(attendance) FROM table_name_29 WHERE opponent = "new orleans saints"
54,537
<question>: What is the Eagle Riders character voiced by Japanese voice actor Katsuji Mori? <context>: CREATE TABLE table_name_27 (eagle_riders VARCHAR, japanese_voice_actor VARCHAR) <answer>: SELECT eagle_riders FROM table_name_27 WHERE japanese_voice_actor = "katsuji mori"
54,538
<question>: Which weapon was used when the Battle of the Planets was Jason? <context>: CREATE TABLE table_name_48 (weapon VARCHAR, battle_of_the_planets VARCHAR) <answer>: SELECT weapon FROM table_name_48 WHERE battle_of_the_planets = "jason"
54,539
<question>: Who was the voice actor (ADV TV/Sentai OVA dub) for the Gatchaman, jun? <context>: CREATE TABLE table_name_22 (voice_actor__adv_tv_sentai_ova_dub_ VARCHAR, gatchaman VARCHAR) <answer>: SELECT voice_actor__adv_tv_sentai_ova_dub_ FROM table_name_22 WHERE gatchaman = "jun"
54,540
<question>: Which Japanese voice actor had the Mecha of airplane? <context>: CREATE TABLE table_name_28 (japanese_voice_actor VARCHAR, mecha VARCHAR) <answer>: SELECT japanese_voice_actor FROM table_name_28 WHERE mecha = "airplane"
54,541
<question>: Which 1st leg has a Team 1 of drita? <context>: CREATE TABLE table_name_3 (team_1 VARCHAR) <answer>: SELECT 1 AS st_leg FROM table_name_3 WHERE team_1 = "drita"
54,542
<question>: Which Team 2 has a Team 1 of vardar? <context>: CREATE TABLE table_name_76 (team_2 VARCHAR, team_1 VARCHAR) <answer>: SELECT team_2 FROM table_name_76 WHERE team_1 = "vardar"
54,543
<question>: What years was the jersey number(s) smaller than 3? <context>: CREATE TABLE table_name_1 (years VARCHAR, jersey_number_s_ INTEGER) <answer>: SELECT years FROM table_name_1 WHERE jersey_number_s_ < 3
54,544
<question>: Which position was played by the player wearing jersey number 40? <context>: CREATE TABLE table_name_23 (position VARCHAR, jersey_number_s_ VARCHAR) <answer>: SELECT position FROM table_name_23 WHERE jersey_number_s_ = 40
54,545
<question>: What pick number was the rhp with a hometown/school of university of hawaii? <context>: CREATE TABLE table_name_42 (pick INTEGER, position VARCHAR, hometown_school VARCHAR) <answer>: SELECT MIN(pick) FROM table_name_42 WHERE position = "rhp" AND hometown_school = "university of hawaii"
54,546
<question>: What player was drafted number 10? <context>: CREATE TABLE table_name_75 (player VARCHAR, pick VARCHAR) <answer>: SELECT player FROM table_name_75 WHERE pick = 10
54,547
<question>: What number pick was the player with the hometown school of concordia college? <context>: CREATE TABLE table_name_96 (pick VARCHAR, hometown_school VARCHAR) <answer>: SELECT pick FROM table_name_96 WHERE hometown_school = "concordia college"
54,548
<question>: What is the date of game 66? <context>: CREATE TABLE table_name_34 (date VARCHAR, game VARCHAR) <answer>: SELECT date FROM table_name_34 WHERE game = 66
54,549
<question>: What is the game on February 21? <context>: CREATE TABLE table_name_34 (game VARCHAR, date VARCHAR) <answer>: SELECT game FROM table_name_34 WHERE date = "february 21"
54,550
<question>: What is the average number of draws that has a played entry of less than 30 and a goal difference greater than 2? <context>: CREATE TABLE table_name_9 (draws INTEGER, goal_difference VARCHAR, played VARCHAR) <answer>: SELECT AVG(draws) FROM table_name_9 WHERE goal_difference > 2 AND played < 30
54,551
<question>: What is the average number played that has fewer than 11 wins, more than 42 goals, more than 22 points, and 11 losses? <context>: CREATE TABLE table_name_91 (played INTEGER, losses VARCHAR, points VARCHAR, wins VARCHAR, goals_for VARCHAR) <answer>: SELECT AVG(played) FROM table_name_91 WHERE wins < 11 AND goals_for > 42 AND points > 22 AND losses = 11
54,552
<question>: What is the total of the goal difference entries for entries with fewer than 49 goals and position smaller than 8? <context>: CREATE TABLE table_name_9 (goal_difference VARCHAR, goals_for VARCHAR, position VARCHAR) <answer>: SELECT COUNT(goal_difference) FROM table_name_9 WHERE goals_for < 49 AND position < 8
54,553
<question>: What is the lowest played for the entry with position of 2 and fewer than 9 losses? <context>: CREATE TABLE table_name_61 (played INTEGER, position VARCHAR, losses VARCHAR) <answer>: SELECT MIN(played) FROM table_name_61 WHERE position = 2 AND losses < 9
54,554
<question>: What is the total number of losses for entries that have 12 wins and a goal difference smaller than -14? <context>: CREATE TABLE table_name_37 (losses VARCHAR, wins VARCHAR, goal_difference VARCHAR) <answer>: SELECT COUNT(losses) FROM table_name_37 WHERE wins = 12 AND goal_difference < -14
54,555
<question>: What are the goals for Pelletieri in ARG? <context>: CREATE TABLE table_name_18 (goals_l_c_e_ VARCHAR, nat VARCHAR, name VARCHAR) <answer>: SELECT goals_l_c_e_ FROM table_name_18 WHERE nat = "arg" AND name = "pelletieri"
54,556
<question>: What are the fewest ends with an App(L/C/E) of 51 (44/6/1)? <context>: CREATE TABLE table_name_3 (ends INTEGER, app_l_c_e_ VARCHAR) <answer>: SELECT MIN(ends) FROM table_name_3 WHERE app_l_c_e_ = "51 (44/6/1)"
54,557
<question>: Who has a nationality of GRE and an App(L/C/E) of 49 (40/8/1)? <context>: CREATE TABLE table_name_98 (name VARCHAR, nat VARCHAR, app_l_c_e_ VARCHAR) <answer>: SELECT name FROM table_name_98 WHERE nat = "gre" AND app_l_c_e_ = "49 (40/8/1)"
54,558
<question>: What are the gaols(L/C/E) with an App(L/C/E) of 55 (47/5/3)? <context>: CREATE TABLE table_name_50 (goals_l_c_e_ VARCHAR, app_l_c_e_ VARCHAR) <answer>: SELECT goals_l_c_e_ FROM table_name_50 WHERE app_l_c_e_ = "55 (47/5/3)"
54,559
<question>: who won the lifetime achievement in the year 1998? <context>: CREATE TABLE table_name_39 (lifetime_achievement VARCHAR, year VARCHAR) <answer>: SELECT lifetime_achievement FROM table_name_39 WHERE year = 1998
54,560
<question>: Constructor with total time of 2:45.416 <context>: CREATE TABLE table_name_72 (constructor VARCHAR, q1 VARCHAR, q2_time VARCHAR) <answer>: SELECT constructor FROM table_name_72 WHERE q1 + q2_time = "2:45.416"
54,561
<question>: Driver at larger than 10 with a Q1 of 18. <context>: CREATE TABLE table_name_28 (driver VARCHAR, q1_order VARCHAR, q1_pos VARCHAR) <answer>: SELECT driver FROM table_name_28 WHERE q1_order > 10 AND q1_pos = 18
54,562
<question>: Who was the opponent when the record was 55-14? <context>: CREATE TABLE table_name_52 (opponent VARCHAR, record VARCHAR) <answer>: SELECT opponent FROM table_name_52 WHERE record = "55-14"
54,563
<question>: What was the game number when record is 59-15? <context>: CREATE TABLE table_name_71 (game INTEGER, record VARCHAR) <answer>: SELECT MIN(game) FROM table_name_71 WHERE record = "59-15"
54,564
<question>: What is the date that the record was 51-14? <context>: CREATE TABLE table_name_62 (date VARCHAR, record VARCHAR) <answer>: SELECT date FROM table_name_62 WHERE record = "51-14"
54,565
<question>: What is the sum of Pick #, when College is Laurier? <context>: CREATE TABLE table_name_79 (pick__number INTEGER, college VARCHAR) <answer>: SELECT SUM(pick__number) FROM table_name_79 WHERE college = "laurier"
54,566
<question>: What is CFL Team, when Pick # is greater than 34, and when College is Boise State? <context>: CREATE TABLE table_name_86 (cfl_team VARCHAR, pick__number VARCHAR, college VARCHAR) <answer>: SELECT cfl_team FROM table_name_86 WHERE pick__number > 34 AND college = "boise state"
54,567
<question>: What is the lowest Pick #, when Position is REC, and when CFL Team is Hamilton Tiger-Cats? <context>: CREATE TABLE table_name_62 (pick__number INTEGER, position VARCHAR, cfl_team VARCHAR) <answer>: SELECT MIN(pick__number) FROM table_name_62 WHERE position = "rec" AND cfl_team = "hamilton tiger-cats"
54,568
<question>: What is Player, when Position is DB, and when College is Saint Mary's? <context>: CREATE TABLE table_name_71 (player VARCHAR, position VARCHAR, college VARCHAR) <answer>: SELECT player FROM table_name_71 WHERE position = "db" AND college = "saint mary's"
54,569
<question>: What is Position, when Pick # is less than 40, and when College is Western? <context>: CREATE TABLE table_name_40 (position VARCHAR, pick__number VARCHAR, college VARCHAR) <answer>: SELECT position FROM table_name_40 WHERE pick__number < 40 AND college = "western"
54,570
<question>: Which Date has a Time of 12:00? <context>: CREATE TABLE table_name_80 (date VARCHAR, time VARCHAR) <answer>: SELECT date FROM table_name_80 WHERE time = "12:00"
54,571
<question>: Set 1 of 25–20, what was Set 2? <context>: CREATE TABLE table_name_38 (set_2 VARCHAR, set_1 VARCHAR) <answer>: SELECT set_2 FROM table_name_38 WHERE set_1 = "25–20"
54,572
<question>: What royal house did Shaokang belong to? <context>: CREATE TABLE table_name_94 (royal_house VARCHAR, name VARCHAR) <answer>: SELECT royal_house FROM table_name_94 WHERE name = "shaokang"
54,573
<question>: What is the highest rank of a building erected in 1976 with fewer than 21 floors? <context>: CREATE TABLE table_name_60 (rank INTEGER, year VARCHAR, floors VARCHAR) <answer>: SELECT MAX(rank) FROM table_name_60 WHERE year = 1976 AND floors < 21
54,574
<question>: What team was the opponent when February shows more than 2, with a game number less than 55? <context>: CREATE TABLE table_name_92 (opponent VARCHAR, february VARCHAR, game VARCHAR) <answer>: SELECT opponent FROM table_name_92 WHERE february > 2 AND game < 55
54,575
<question>: What is the game number when the Toronto Maple Leafs were the opponent, and the February was less than 17? <context>: CREATE TABLE table_name_49 (game INTEGER, opponent VARCHAR, february VARCHAR) <answer>: SELECT AVG(game) FROM table_name_49 WHERE opponent = "toronto maple leafs" AND february < 17
54,576
<question>: What is the number of the game when the opponent was the New York Islanders, and a February less than 24? <context>: CREATE TABLE table_name_62 (game INTEGER, opponent VARCHAR, february VARCHAR) <answer>: SELECT SUM(game) FROM table_name_62 WHERE opponent = "new york islanders" AND february < 24
54,577
<question>: What is the lowest game number when the record was 26-24-9? <context>: CREATE TABLE table_name_58 (game INTEGER, record VARCHAR) <answer>: SELECT MIN(game) FROM table_name_58 WHERE record = "26-24-9"
54,578
<question>: What rank has less than 16 gold, more than 2 bronze and silver, and a total of 14? <context>: CREATE TABLE table_name_44 (rank VARCHAR, total VARCHAR, silver VARCHAR, gold VARCHAR, bronze VARCHAR) <answer>: SELECT rank FROM table_name_44 WHERE gold < 16 AND bronze > 2 AND silver > 2 AND total = 14
54,579
<question>: What's the silver for rank 1 with less than 2 bronze? <context>: CREATE TABLE table_name_92 (silver INTEGER, rank VARCHAR, bronze VARCHAR) <answer>: SELECT MIN(silver) FROM table_name_92 WHERE rank = "1" AND bronze < 2
54,580
<question>: What's the lowest total when there's less than 16 bronze and more than 6 silver? <context>: CREATE TABLE table_name_13 (total INTEGER, bronze VARCHAR, silver VARCHAR) <answer>: SELECT MIN(total) FROM table_name_13 WHERE bronze < 16 AND silver > 6
54,581
<question>: What's the lowest gold with a total over 15 and less than 16 silver? <context>: CREATE TABLE table_name_98 (gold INTEGER, total VARCHAR, silver VARCHAR) <answer>: SELECT MIN(gold) FROM table_name_98 WHERE total > 15 AND silver < 16
54,582
<question>: Which Gold has a Rank of 7, a Nation of italy, and a Silver smaller than 0? <context>: CREATE TABLE table_name_40 (gold VARCHAR, silver VARCHAR, rank VARCHAR, nation VARCHAR) <answer>: SELECT COUNT(gold) FROM table_name_40 WHERE rank = "7" AND nation = "italy" AND silver < 0
54,583
<question>: Which Gold has a Total larger than 3, a Rank of total, and a Silver larger than 8? <context>: CREATE TABLE table_name_60 (gold INTEGER, silver VARCHAR, rank VARCHAR) <answer>: SELECT AVG(gold) FROM table_name_60 WHERE "total" > 3 AND rank = "total" AND silver > 8
54,584
<question>: Which Club team has a Pick larger than 139? <context>: CREATE TABLE table_name_55 (club_team VARCHAR, pick INTEGER) <answer>: SELECT club_team FROM table_name_55 WHERE pick > 139
54,585
<question>: Which Nationality has a Pick larger than 109, and a Round smaller than 5? <context>: CREATE TABLE table_name_9 (nationality VARCHAR, pick VARCHAR, round VARCHAR) <answer>: SELECT nationality FROM table_name_9 WHERE pick > 109 AND round < 5
54,586
<question>: Which school was Lawrence Roberts from ? <context>: CREATE TABLE table_name_13 (school_club_team VARCHAR, player VARCHAR) <answer>: SELECT school_club_team FROM table_name_13 WHERE player = "lawrence roberts"
54,587
<question>: Which school was Chris Robinson from? <context>: CREATE TABLE table_name_60 (school_club_team VARCHAR, player VARCHAR) <answer>: SELECT school_club_team FROM table_name_60 WHERE player = "chris robinson"
54,588
<question>: What was the position that Chris Robinson played? <context>: CREATE TABLE table_name_79 (position VARCHAR, player VARCHAR) <answer>: SELECT position FROM table_name_79 WHERE player = "chris robinson"
54,589
<question>: In which years did Zach Randolph play for the Grizzlies? <context>: CREATE TABLE table_name_27 (years_for_grizzlies VARCHAR, player VARCHAR) <answer>: SELECT years_for_grizzlies FROM table_name_27 WHERE player = "zach randolph"
54,590
<question>: Which player played for Western Kentucky? <context>: CREATE TABLE table_name_61 (player VARCHAR, school_club_team VARCHAR) <answer>: SELECT player FROM table_name_61 WHERE school_club_team = "western kentucky"
54,591
<question>: What was the score on January 14 when the Chicago Black Hawks were home against the New York Rangers? <context>: CREATE TABLE table_name_18 (score VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR) <answer>: SELECT score FROM table_name_18 WHERE home = "chicago black hawks" AND visitor = "new york rangers" AND date = "january 14"
54,592
<question>: Who was the home team on February 18 that had a visitor of the Chicago Black Hawks? <context>: CREATE TABLE table_name_56 (home VARCHAR, visitor VARCHAR, date VARCHAR) <answer>: SELECT home FROM table_name_56 WHERE visitor = "chicago black hawks" AND date = "february 18"
54,593
<question>: What is points diff when points against is 123? <context>: CREATE TABLE table_name_73 (points_diff VARCHAR, points_against VARCHAR) <answer>: SELECT points_diff FROM table_name_73 WHERE points_against = "123"
54,594
<question>: Which team has 123 points agaibst the other team? <context>: CREATE TABLE table_name_83 (team VARCHAR, points_against VARCHAR) <answer>: SELECT team FROM table_name_83 WHERE points_against = "123"
54,595
<question>: What is the points against when try diff is +23? <context>: CREATE TABLE table_name_67 (points_against VARCHAR, try_diff VARCHAR) <answer>: SELECT points_against FROM table_name_67 WHERE try_diff = "+23"
54,596
<question>: What is points when try diff is +23? <context>: CREATE TABLE table_name_7 (points_for VARCHAR, try_diff VARCHAR) <answer>: SELECT points_for FROM table_name_7 WHERE try_diff = "+23"
54,597
<question>: What is points sgsinst when points diff is +96? <context>: CREATE TABLE table_name_70 (points_against VARCHAR, points_diff VARCHAR) <answer>: SELECT points_against FROM table_name_70 WHERE points_diff = "+96"
54,598
<question>: How many laps led when the Grid was 15? <context>: CREATE TABLE table_name_29 (laps VARCHAR, grid VARCHAR) <answer>: SELECT laps AS Led FROM table_name_29 WHERE grid = "15"
54,599
<question>: Name the Time/Retired when the points were 32. <context>: CREATE TABLE table_name_84 (time_retired VARCHAR, points VARCHAR) <answer>: SELECT time_retired FROM table_name_84 WHERE points = "32"