Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
53,000 | <question>: What's the dipole moment of ethyl acetate (etoac)? <context>: CREATE TABLE table_name_78 (dipole_moment___d__ VARCHAR, solvent VARCHAR) | SELECT dipole_moment___d__ FROM table_name_78 WHERE solvent = "ethyl acetate (etoac)" |
53,001 | <question>: what's the boiling point of diethyl ether? <context>: CREATE TABLE table_name_74 (boiling_point VARCHAR, solvent VARCHAR) | SELECT boiling_point FROM table_name_74 WHERE solvent = "diethyl ether" |
53,002 | <question>: What is Type, when Works Number is 75823? <context>: CREATE TABLE table_name_16 (type VARCHAR, works_number VARCHAR) | SELECT type FROM table_name_16 WHERE works_number = "75823" |
53,003 | <question>: What is Date, when Type is DS4-4-750, and when Works Number is 74409? <context>: CREATE TABLE table_name_93 (date VARCHAR, type VARCHAR, works_number VARCHAR) | SELECT date FROM table_name_93 WHERE type = "ds4-4-750" AND works_number = "74409" |
53,004 | <question>: What is Works Number, when Type is RS-11, and when Number is 61? <context>: CREATE TABLE table_name_7 (works_number VARCHAR, type VARCHAR, number VARCHAR) | SELECT works_number FROM table_name_7 WHERE type = "rs-11" AND number = "61" |
53,005 | <question>: What is Builder, when Date is 1925? <context>: CREATE TABLE table_name_21 (builder VARCHAR, date VARCHAR) | SELECT builder FROM table_name_21 WHERE date = "1925" |
53,006 | <question>: What is Works Number, when Number is 55? <context>: CREATE TABLE table_name_44 (works_number VARCHAR, number VARCHAR) | SELECT works_number FROM table_name_44 WHERE number = "55" |
53,007 | <question>: What is Builder, when Date is 1953? <context>: CREATE TABLE table_name_71 (builder VARCHAR, date VARCHAR) | SELECT builder FROM table_name_71 WHERE date = "1953" |
53,008 | <question>: Which Attendance is the lowest one that has a Record of 5β5β0? <context>: CREATE TABLE table_name_77 (attendance INTEGER, record VARCHAR) | SELECT MIN(attendance) FROM table_name_77 WHERE record = "5β5β0" |
53,009 | <question>: Which Date has a Record of 4β2β0? <context>: CREATE TABLE table_name_68 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_68 WHERE record = "4β2β0" |
53,010 | <question>: Which Record has a Visitor of pittsburgh, and a Score of 4β0? <context>: CREATE TABLE table_name_23 (record VARCHAR, visitor VARCHAR, score VARCHAR) | SELECT record FROM table_name_23 WHERE visitor = "pittsburgh" AND score = "4β0" |
53,011 | <question>: What was the away team score when Waverley Park was the ground and the home team was collingwood? <context>: CREATE TABLE table_name_80 (away_team VARCHAR, ground VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_80 WHERE ground = "waverley park" AND home_team = "collingwood" |
53,012 | <question>: From what country did someone score 71? <context>: CREATE TABLE table_name_72 (country VARCHAR, score VARCHAR) | SELECT country FROM table_name_72 WHERE score = 71 |
53,013 | <question>: What is the attendance sum of the game on March 16, 1990 with a loss record? <context>: CREATE TABLE table_name_40 (attendance INTEGER, record VARCHAR, date VARCHAR) | SELECT SUM(attendance) FROM table_name_40 WHERE record = "loss" AND date = "march 16, 1990" |
53,014 | <question>: What was the outcome of the match on August 20, 1978? <context>: CREATE TABLE table_name_53 (outcome VARCHAR, date VARCHAR) | SELECT outcome FROM table_name_53 WHERE date = "august 20, 1978" |
53,015 | <question>: Which Round has a Pick smaller than 6? <context>: CREATE TABLE table_name_77 (round INTEGER, pick INTEGER) | SELECT SUM(round) FROM table_name_77 WHERE pick < 6 |
53,016 | <question>: Which Round has an Overall smaller than 6? <context>: CREATE TABLE table_name_84 (round INTEGER, overall INTEGER) | SELECT MAX(round) FROM table_name_84 WHERE overall < 6 |
53,017 | <question>: Which Position has a College of washington, and an Overall of 46? <context>: CREATE TABLE table_name_18 (position VARCHAR, college VARCHAR, overall VARCHAR) | SELECT position FROM table_name_18 WHERE college = "washington" AND overall = 46 |
53,018 | <question>: Which Round has a Position of qb, and an Overall larger than 6? <context>: CREATE TABLE table_name_17 (round INTEGER, position VARCHAR, overall VARCHAR) | SELECT MAX(round) FROM table_name_17 WHERE position = "qb" AND overall > 6 |
53,019 | <question>: What date was Bury the home team? <context>: CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_67 WHERE away_team = "bury" |
53,020 | <question>: What team was the home team when Tottenham Hotspur is the away team? <context>: CREATE TABLE table_name_86 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_86 WHERE away_team = "tottenham hotspur" |
53,021 | <question>: What college did the #22 overall draft pick attend? <context>: CREATE TABLE table_name_39 (college VARCHAR, pick__number VARCHAR) | SELECT college FROM table_name_39 WHERE pick__number = 22 |
53,022 | <question>: What draft pick number attended syracuse and was drafted by the Carolina panthers? <context>: CREATE TABLE table_name_38 (pick__number INTEGER, nfl_team VARCHAR, college VARCHAR) | SELECT SUM(pick__number) FROM table_name_38 WHERE nfl_team = "carolina panthers" AND college = "syracuse" |
53,023 | <question>: Which Lead Margin has a Poll Source of rasmussen reports/ fox news? <context>: CREATE TABLE table_name_75 (lead_margin INTEGER, poll_source VARCHAR) | SELECT MIN(lead_margin) FROM table_name_75 WHERE poll_source = "rasmussen reports/ fox news" |
53,024 | <question>: Which Poll Source has a Date administered of october 30 β november 2, 2008? <context>: CREATE TABLE table_name_18 (poll_source VARCHAR, date_administered VARCHAR) | SELECT poll_source FROM table_name_18 WHERE date_administered = "october 30 β november 2, 2008" |
53,025 | <question>: At which site was Northwestern an opponent? <context>: CREATE TABLE table_name_67 (site VARCHAR, opponent_number VARCHAR) | SELECT site FROM table_name_67 WHERE opponent_number = "northwestern" |
53,026 | <question>: What result did Indiana have when they were an opponent? <context>: CREATE TABLE table_name_78 (result VARCHAR, opponent_number VARCHAR) | SELECT result FROM table_name_78 WHERE opponent_number = "indiana" |
53,027 | <question>: What is the attendance when the result was w61-7? <context>: CREATE TABLE table_name_12 (attendance VARCHAR, result VARCHAR) | SELECT attendance FROM table_name_12 WHERE result = "w61-7" |
53,028 | <question>: What shows for miles [One Way] when the fans took 340? <context>: CREATE TABLE table_name_89 (one_way VARCHAR, miles_ INTEGER, fans_took VARCHAR) | SELECT AVG(miles_)[one_way] FROM table_name_89 WHERE fans_took = "340" |
53,029 | <question>: what is the reported birth date when the reported age is 110 years, 185 days? <context>: CREATE TABLE table_name_58 (reported_birth_date VARCHAR, reported_age VARCHAR) | SELECT reported_birth_date FROM table_name_58 WHERE reported_age = "110 years, 185 days" |
53,030 | <question>: what is the reported age when the reported birth date is 22 december 1878? <context>: CREATE TABLE table_name_62 (reported_age VARCHAR, reported_birth_date VARCHAR) | SELECT reported_age FROM table_name_62 WHERE reported_birth_date = "22 december 1878" |
53,031 | <question>: what is the region when the reported age is 111 years, 107 days? <context>: CREATE TABLE table_name_50 (region VARCHAR, reported_age VARCHAR) | SELECT region FROM table_name_50 WHERE reported_age = "111 years, 107 days" |
53,032 | <question>: what is the reported death date for laura svehaug? <context>: CREATE TABLE table_name_97 (reported_death_date VARCHAR, name VARCHAR) | SELECT reported_death_date FROM table_name_97 WHERE name = "laura svehaug" |
53,033 | <question>: Who has a reported age of 111 years, 66 days? <context>: CREATE TABLE table_name_38 (name VARCHAR, reported_age VARCHAR) | SELECT name FROM table_name_38 WHERE reported_age = "111 years, 66 days" |
53,034 | <question>: Who has a reported death of 6 march 1998? <context>: CREATE TABLE table_name_63 (name VARCHAR, reported_death_date VARCHAR) | SELECT name FROM table_name_63 WHERE reported_death_date = "6 march 1998" |
53,035 | <question>: Date for less than 122 countries and a 47% rank? <context>: CREATE TABLE table_name_60 (date VARCHAR, countries_surveyed VARCHAR, _percentage_rank VARCHAR) | SELECT date FROM table_name_60 WHERE countries_surveyed < 122 AND _percentage_rank = "47" |
53,036 | <question>: What high assists has the high points of andrew bynum (23)? <context>: CREATE TABLE table_name_71 (high_assists VARCHAR, high_points VARCHAR) | SELECT high_assists FROM table_name_71 WHERE high_points = "andrew bynum (23)" |
53,037 | <question>: What score is the team of charlotte? <context>: CREATE TABLE table_name_48 (score VARCHAR, team VARCHAR) | SELECT score FROM table_name_48 WHERE team = "charlotte" |
53,038 | <question>: What was strikeforce: barnett vs. cormier's record? <context>: CREATE TABLE table_name_26 (record VARCHAR, event VARCHAR) | SELECT record FROM table_name_26 WHERE event = "strikeforce: barnett vs. cormier" |
53,039 | <question>: What is the total of q > 1.4 when q > 1.3 is 455, and q >1.2 is less than 3,028? <context>: CREATE TABLE table_name_51 (q_ INTEGER) | SELECT SUM(q_) > _1.4 FROM table_name_51 WHERE q_ > _1.3 = 455 AND q_ > _1.2 < 3 OFFSET 028 |
53,040 | <question>: Who was the losing team with a total of 24 when the winning team was Sydney Roosters? <context>: CREATE TABLE table_name_44 (losing_team VARCHAR, total VARCHAR, winning_team VARCHAR) | SELECT losing_team FROM table_name_44 WHERE total = 24 AND winning_team = "sydney roosters" |
53,041 | <question>: Which venue had a losing team of south sydney rabbitohs? <context>: CREATE TABLE table_name_16 (venue VARCHAR, losing_team VARCHAR) | SELECT venue FROM table_name_16 WHERE losing_team = "south sydney rabbitohs" |
53,042 | <question>: What day was the total smaller than 19 at Venue of anz stadium? <context>: CREATE TABLE table_name_42 (date VARCHAR, total VARCHAR, venue VARCHAR) | SELECT date FROM table_name_42 WHERE total < 19 AND venue = "anz stadium" |
53,043 | <question>: What was the Attendance before Week 17 with a Record of Bye? <context>: CREATE TABLE table_name_77 (attendance VARCHAR, week VARCHAR, record VARCHAR) | SELECT attendance FROM table_name_77 WHERE week < 17 AND record = "bye" |
53,044 | <question>: What is the Kickoff Time on January 7, 2002? <context>: CREATE TABLE table_name_72 (kickoff_time VARCHAR, date VARCHAR) | SELECT kickoff_time FROM table_name_72 WHERE date = "january 7, 2002" |
53,045 | <question>: What was the Opponent in the game with a Result of L 24β14? <context>: CREATE TABLE table_name_38 (opponent VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_38 WHERE result = "l 24β14" |
53,046 | <question>: What was the Result of the game with an Attendance of 69,365? <context>: CREATE TABLE table_name_46 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_46 WHERE attendance = "69,365" |
53,047 | <question>: Which event won by KCLMS in 2008 has KCLMS as the winner and less than 10 wins by KCL? <context>: CREATE TABLE table_name_74 (events_won_by_kcl VARCHAR, year VARCHAR, winner VARCHAR, events_won_by_kclMS VARCHAR) | SELECT events_won_by_kcl FROM table_name_74 WHERE winner = "kclms" AND events_won_by_kclMS < 10 AND year = 2008 |
53,048 | <question>: How many years were the events won by KCLMS less than 7? <context>: CREATE TABLE table_name_8 (year VARCHAR, events_won_by_kclMS INTEGER) | SELECT COUNT(year) FROM table_name_8 WHERE events_won_by_kclMS < 7 |
53,049 | <question>: What is the average value for events won by KCL in a year earlier than 2004? <context>: CREATE TABLE table_name_58 (events_won_by_kcl INTEGER, year INTEGER) | SELECT AVG(events_won_by_kcl) FROM table_name_58 WHERE year < 2004 |
53,050 | <question>: What is the appointment day for 4 December 2008 vacancy? <context>: CREATE TABLE table_name_40 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR) | SELECT date_of_appointment FROM table_name_40 WHERE date_of_vacancy = "4 december 2008" |
53,051 | <question>: Which outgoing manager has tabled 16th position? <context>: CREATE TABLE table_name_83 (outgoing_manager VARCHAR, position_in_table VARCHAR) | SELECT outgoing_manager FROM table_name_83 WHERE position_in_table = "16th" |
53,052 | <question>: Which position is team mons who was replaced by Christophe Dessy (caretaker)? <context>: CREATE TABLE table_name_91 (position_in_table VARCHAR, team VARCHAR, replaced_by VARCHAR) | SELECT position_in_table FROM table_name_91 WHERE team = "mons" AND replaced_by = "christophe dessy (caretaker)" |
53,053 | <question>: What is the table position for 4 December 2008 vacancy? <context>: CREATE TABLE table_name_13 (position_in_table VARCHAR, date_of_vacancy VARCHAR) | SELECT position_in_table FROM table_name_13 WHERE date_of_vacancy = "4 december 2008" |
53,054 | <question>: How many laps have 50 points? <context>: CREATE TABLE table_name_65 (laps VARCHAR, points VARCHAR) | SELECT laps FROM table_name_65 WHERE points = "50" |
53,055 | <question>: What is the grid of team dreyer & reinbold racing, which has 26 points? <context>: CREATE TABLE table_name_14 (grid VARCHAR, team VARCHAR, points VARCHAR) | SELECT grid FROM table_name_14 WHERE team = "dreyer & reinbold racing" AND points = "26" |
53,056 | <question>: How many points have 75 laps? <context>: CREATE TABLE table_name_6 (points VARCHAR, laps VARCHAR) | SELECT points FROM table_name_6 WHERE laps = "75" |
53,057 | <question>: How many points have 88 laps and a grid of 14? <context>: CREATE TABLE table_name_99 (points VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT points FROM table_name_99 WHERE laps = "88" AND grid = "14" |
53,058 | <question>: How many laps have a +0.4865 time/retired? <context>: CREATE TABLE table_name_34 (laps VARCHAR, time_retired VARCHAR) | SELECT laps FROM table_name_34 WHERE time_retired = "+0.4865" |
53,059 | <question>: When did the ATV that deorbited on 29 september 2008, launch? <context>: CREATE TABLE table_name_93 (launch_date VARCHAR, deorbit_date VARCHAR) | SELECT launch_date FROM table_name_93 WHERE deorbit_date = "29 september 2008" |
53,060 | <question>: When did the atv-002 launch? <context>: CREATE TABLE table_name_22 (launch_date VARCHAR, designation VARCHAR) | SELECT launch_date FROM table_name_22 WHERE designation = "atv-002" |
53,061 | <question>: When did Edoardo Amaldi launch? <context>: CREATE TABLE table_name_25 (launch_date VARCHAR, name VARCHAR) | SELECT launch_date FROM table_name_25 WHERE name = "edoardo amaldi" |
53,062 | <question>: When did the ATV that launched on 9 March 2008, deorbit? <context>: CREATE TABLE table_name_9 (deorbit_date VARCHAR, launch_date VARCHAR) | SELECT deorbit_date FROM table_name_9 WHERE launch_date = "9 march 2008" |
53,063 | <question>: Who was the partner on the game which took place on a clay surface with opponents of marco chiudinelli michael lammer and a runner-up result? <context>: CREATE TABLE table_name_74 (partner VARCHAR, opponents VARCHAR, outcome VARCHAR, surface VARCHAR) | SELECT partner FROM table_name_74 WHERE outcome = "runner-up" AND surface = "clay" AND opponents = "marco chiudinelli michael lammer" |
53,064 | <question>: Who were the opponent in the match on a clay surface that had a score of 6β3, 7β6 (11β9)? <context>: CREATE TABLE table_name_84 (opponents VARCHAR, surface VARCHAR, score VARCHAR) | SELECT opponents FROM table_name_84 WHERE surface = "clay" AND score = "6β3, 7β6 (11β9)" |
53,065 | <question>: What is Season, when Races is less than 16? <context>: CREATE TABLE table_name_7 (season VARCHAR, races INTEGER) | SELECT season FROM table_name_7 WHERE races < 16 |
53,066 | <question>: What is the sum of Poles, when Podiums is 0, and when Races is 17? <context>: CREATE TABLE table_name_35 (poles INTEGER, podiums VARCHAR, races VARCHAR) | SELECT SUM(poles) FROM table_name_35 WHERE podiums = 0 AND races = 17 |
53,067 | <question>: What is Poles, when Races is less than 16? <context>: CREATE TABLE table_name_99 (poles VARCHAR, races INTEGER) | SELECT poles FROM table_name_99 WHERE races < 16 |
53,068 | <question>: What is the lowest Races, when Podiums is greater than 1? <context>: CREATE TABLE table_name_53 (races INTEGER, podiums INTEGER) | SELECT MIN(races) FROM table_name_53 WHERE podiums > 1 |
53,069 | <question>: How many people on average attended the game in week 14? <context>: CREATE TABLE table_name_68 (attendance INTEGER, week VARCHAR) | SELECT AVG(attendance) FROM table_name_68 WHERE week = 14 |
53,070 | <question>: The game in week 11 has what result? <context>: CREATE TABLE table_name_70 (result VARCHAR, week VARCHAR) | SELECT result FROM table_name_70 WHERE week = 11 |
53,071 | <question>: For the game against the San Francisco 49ers what was the total attendance? <context>: CREATE TABLE table_name_12 (attendance INTEGER, opponent VARCHAR) | SELECT SUM(attendance) FROM table_name_12 WHERE opponent = "san francisco 49ers" |
53,072 | <question>: What is the Place that has a To standard of β1, and a Score of 71-68-76=215? <context>: CREATE TABLE table_name_71 (place VARCHAR, to_par VARCHAR, score VARCHAR) | SELECT place FROM table_name_71 WHERE to_par = "β1" AND score = 71 - 68 - 76 = 215 |
53,073 | <question>: What is the Player that has a To standard of β7? <context>: CREATE TABLE table_name_47 (player VARCHAR, to_par VARCHAR) | SELECT player FROM table_name_47 WHERE to_par = "β7" |
53,074 | <question>: What is the Player that has a To standard of β4? <context>: CREATE TABLE table_name_15 (player VARCHAR, to_par VARCHAR) | SELECT player FROM table_name_15 WHERE to_par = "β4" |
53,075 | <question>: What is the Player that has a To standard of β1, and a Score of 71-68-76=215? <context>: CREATE TABLE table_name_60 (player VARCHAR, to_par VARCHAR, score VARCHAR) | SELECT player FROM table_name_60 WHERE to_par = "β1" AND score = 71 - 68 - 76 = 215 |
53,076 | <question>: What is the Player that has a To standard of β4? <context>: CREATE TABLE table_name_71 (player VARCHAR, to_par VARCHAR) | SELECT player FROM table_name_71 WHERE to_par = "β4" |
53,077 | <question>: Which rank is 40 for s Wicket with a player of Daniel Marsh? <context>: CREATE TABLE table_name_63 (rank VARCHAR, s_wicket VARCHAR, player VARCHAR) | SELECT rank FROM table_name_63 WHERE s_wicket = "40" AND player = "daniel marsh" |
53,078 | <question>: Which rank has a s wicket at 40 and 28.42 is the average? <context>: CREATE TABLE table_name_66 (rank VARCHAR, s_wicket VARCHAR, average VARCHAR) | SELECT rank FROM table_name_66 WHERE s_wicket = "40" AND average = "28.42" |
53,079 | <question>: Which value for s wicket is associated with Shaun Young? <context>: CREATE TABLE table_name_68 (s_wicket VARCHAR, player VARCHAR) | SELECT s_wicket FROM table_name_68 WHERE player = "shaun young" |
53,080 | <question>: Which player has a s wicket at 48? <context>: CREATE TABLE table_name_84 (player VARCHAR, s_wicket VARCHAR) | SELECT player FROM table_name_84 WHERE s_wicket = "48" |
53,081 | <question>: What is the s wicket value associated with Shaun Young? <context>: CREATE TABLE table_name_51 (s_wicket VARCHAR, player VARCHAR) | SELECT s_wicket FROM table_name_51 WHERE player = "shaun young" |
53,082 | <question>: What is the date of the game where the NY Islanders are the home team? <context>: CREATE TABLE table_name_2 (date VARCHAR, home VARCHAR) | SELECT date FROM table_name_2 WHERE home = "ny islanders" |
53,083 | <question>: What is the score of the game where the NY Islanders are the home team? <context>: CREATE TABLE table_name_10 (score VARCHAR, home VARCHAR) | SELECT score FROM table_name_10 WHERE home = "ny islanders" |
53,084 | <question>: Who was the home team on February 3? <context>: CREATE TABLE table_name_68 (home VARCHAR, date VARCHAR) | SELECT home FROM table_name_68 WHERE date = "february 3" |
53,085 | <question>: What is the sum of Overall, when Round is less than 24, and when College is North Carolina State? <context>: CREATE TABLE table_name_50 (overall INTEGER, round VARCHAR, college VARCHAR) | SELECT SUM(overall) FROM table_name_50 WHERE round < 24 AND college = "north carolina state" |
53,086 | <question>: What is the total number of Pick, when Position is OT, when Overall is greater than 91, when Round is greater than 21, and when College is Mississippi? <context>: CREATE TABLE table_name_98 (pick VARCHAR, college VARCHAR, round VARCHAR, position VARCHAR, overall VARCHAR) | SELECT COUNT(pick) FROM table_name_98 WHERE position = "ot" AND overall > 91 AND round > 21 AND college = "mississippi" |
53,087 | <question>: What is the lowest Overall, when College is Hardin-Simmons, and when Round is greater than 26? <context>: CREATE TABLE table_name_17 (overall INTEGER, college VARCHAR, round VARCHAR) | SELECT MIN(overall) FROM table_name_17 WHERE college = "hardin-simmons" AND round > 26 |
53,088 | <question>: What is the score of the tournament with younes el aynaoui as the opponent? <context>: CREATE TABLE table_name_37 (score VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_37 WHERE opponent = "younes el aynaoui" |
53,089 | <question>: What is the date of the tournament with carlos moyΓ as the opponent? <context>: CREATE TABLE table_name_6 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_6 WHERE opponent = "carlos moyΓ " |
53,090 | <question>: What is the tournament with greg rusedski as the opponent? <context>: CREATE TABLE table_name_57 (tournament VARCHAR, opponent VARCHAR) | SELECT tournament FROM table_name_57 WHERE opponent = "greg rusedski" |
53,091 | <question>: What is the surface on 26 May 1996? <context>: CREATE TABLE table_name_75 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_75 WHERE date = "26 may 1996" |
53,092 | <question>: What club did united states player ty harden play for? <context>: CREATE TABLE table_name_55 (club VARCHAR, nationality VARCHAR, player VARCHAR) | SELECT club FROM table_name_55 WHERE nationality = "united states" AND player = "ty harden" |
53,093 | <question>: Which seaosn had a player of rohan ricketts? <context>: CREATE TABLE table_name_26 (season VARCHAR, player VARCHAR) | SELECT COUNT(season) FROM table_name_26 WHERE player = "rohan ricketts" |
53,094 | <question>: What is Tries Against, when Points Against is 213? <context>: CREATE TABLE table_name_78 (tries_against VARCHAR, points_against VARCHAR) | SELECT tries_against FROM table_name_78 WHERE points_against = "213" |
53,095 | <question>: What is Tries Against, when Tries For is 21? <context>: CREATE TABLE table_name_56 (tries_against VARCHAR, tries_for VARCHAR) | SELECT tries_against FROM table_name_56 WHERE tries_for = "21" |
53,096 | <question>: What is Try Diff, when Points Diff is +71? <context>: CREATE TABLE table_name_18 (try_diff VARCHAR, points_diff VARCHAR) | SELECT try_diff FROM table_name_18 WHERE points_diff = "+71" |
53,097 | <question>: What is Try Diff, when Points Against is 213? <context>: CREATE TABLE table_name_42 (try_diff VARCHAR, points_against VARCHAR) | SELECT try_diff FROM table_name_42 WHERE points_against = "213" |
53,098 | <question>: What is Tries Against, when Try Diff is +15? <context>: CREATE TABLE table_name_34 (tries_against VARCHAR, try_diff VARCHAR) | SELECT tries_against FROM table_name_34 WHERE try_diff = "+15" |
53,099 | <question>: Which archbishop vacated the throne on May 17, 1907? <context>: CREATE TABLE table_name_42 (archbishop VARCHAR, vacated_throne VARCHAR) | SELECT archbishop FROM table_name_42 WHERE vacated_throne = "may 17, 1907" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.