text stringlengths 114 1.06k |
|---|
### question: How many Gold does the Nation in Rank 12 with less than 2 Total medals have? ### answer: SELECT MAX(gold) FROM table_name_45 WHERE rank = "12" AND total < 2 ### context: CREATE TABLE table_name_45 (gold INTEGER, rank VARCHAR, total VARCHAR) |
### question: Which NHL team got pick 89? ### answer: SELECT nhl_team FROM table_name_49 WHERE pick__number = "89" ### context: CREATE TABLE table_name_49 (nhl_team VARCHAR, pick__number VARCHAR) |
### question: Who plays goaltender for the Vancouver Canucks? ### answer: SELECT player FROM table_name_22 WHERE position = "goaltender" AND nhl_team = "vancouver canucks" ### context: CREATE TABLE table_name_22 (player VARCHAR, position VARCHAR, nhl_team VARCHAR) |
### question: What is the % Change at London Heathrow airport? ### answer: SELECT _percentage_change FROM table_name_68 WHERE airport = "london heathrow airport" ### context: CREATE TABLE table_name_68 (_percentage_change VARCHAR, airport VARCHAR) |
### question: What 2003 rank does the airport IATA code SIN have? ### answer: SELECT 2003 AS rank FROM table_name_60 WHERE code__iata_ = "sin" ### context: CREATE TABLE table_name_60 (code__iata_ VARCHAR) |
### question: Which airport has an IATA code of AMS? ### answer: SELECT airport FROM table_name_73 WHERE code__iata_ = "ams" ### context: CREATE TABLE table_name_73 (airport VARCHAR, code__iata_ VARCHAR) |
### question: What is the IATA code of the airport that has a Total Cargo of 1,838,894 Metric Tonnes? ### answer: SELECT code__iata_ FROM table_name_20 WHERE total_cargo__metric_tonnes_ = "1,838,894" ### context: CREATE TABLE table_name_20 (code__iata_ VARCHAR, total_cargo__metric_tonnes_ VARCHAR) |
### question: What is the 2003 rank for Los Angeles International airport? ### answer: SELECT 2003 AS rank FROM table_name_17 WHERE airport = "los angeles international airport" ### context: CREATE TABLE table_name_17 (airport VARCHAR) |
### question: What district is Wyatt Aiken in? ### answer: SELECT district FROM table_name_19 WHERE incumbent = "wyatt aiken" ### context: CREATE TABLE table_name_19 (district VARCHAR, incumbent VARCHAR) |
### question: Silver larger than 0, and a Total smaller than 3, and a Nation of bulgaria, and a Bronze smaller than 0 had what sum of gold? ### answer: SELECT SUM(gold) FROM table_name_51 WHERE silver > 0 AND total < 3 AND nation = "bulgaria" AND bronze < 0 ### context: CREATE TABLE table_name_51 (gold INTEGER, bronze ... |
### question: Nation of total has what sum of gold? ### answer: SELECT SUM(gold) FROM table_name_36 WHERE nation = "total" ### context: CREATE TABLE table_name_36 (gold INTEGER, nation VARCHAR) |
### question: Total of 3, and a Gold larger than 0, and a Nation of belarus, and a Silver larger than 2 has what sum of bronze? ### answer: SELECT SUM(bronze) FROM table_name_27 WHERE total = 3 AND gold > 0 AND nation = "belarus" AND silver > 2 ### context: CREATE TABLE table_name_27 (bronze INTEGER, silver VARCHAR, na... |
### question: Bronze of 22 has what average silver? ### answer: SELECT AVG(silver) FROM table_name_99 WHERE bronze = 22 ### context: CREATE TABLE table_name_99 (silver INTEGER, bronze VARCHAR) |
### question: Which position had 5 games played and a record of 1-2-2? ### answer: SELECT position FROM table_name_63 WHERE games_played = 5 AND w_l_d = "1-2-2" ### context: CREATE TABLE table_name_63 (position VARCHAR, games_played VARCHAR, w_l_d VARCHAR) |
### question: What was the name of the leader whose term ended in 2013? ### answer: SELECT name FROM table_name_49 WHERE term_end = "2013" ### context: CREATE TABLE table_name_49 (name VARCHAR, term_end VARCHAR) |
### question: When was the start of the leader's term who was born on January 8, 1859 and whose term ended in 1919? ### answer: SELECT term_start FROM table_name_12 WHERE term_end = "1919" AND date_of_birth = "january 8, 1859" ### context: CREATE TABLE table_name_12 (term_start VARCHAR, term_end VARCHAR, date_of_birth ... |
### question: Which leader born on December 17, 1874 started their term before 1984? ### answer: SELECT name FROM table_name_50 WHERE term_start < 1984 AND date_of_birth = "december 17, 1874" ### context: CREATE TABLE table_name_50 (name VARCHAR, term_start VARCHAR, date_of_birth VARCHAR) |
### question: What date shows the Outcome of winner against nikola fraΕkovΓ‘ carmen klaschka? ### answer: SELECT date FROM table_name_54 WHERE outcome = "winner" AND opponents_in_the_final = "nikola fraΕkovΓ‘ carmen klaschka" ### context: CREATE TABLE table_name_54 (date VARCHAR, outcome VARCHAR, opponents_in_the_final V... |
### question: What is the Outcome of the jounieh tournament? ### answer: SELECT outcome FROM table_name_73 WHERE tournament = "jounieh" ### context: CREATE TABLE table_name_73 (outcome VARCHAR, tournament VARCHAR) |
### question: What date was the score of 6β3 6β4? ### answer: SELECT date FROM table_name_53 WHERE score = "6β3 6β4" ### context: CREATE TABLE table_name_53 (date VARCHAR, score VARCHAR) |
### question: when indiana pacers were the opponent what was the date? ### answer: SELECT date FROM table_name_89 WHERE opponent = "indiana pacers" ### context: CREATE TABLE table_name_89 (date VARCHAR, opponent VARCHAR) |
### question: tries against is 55, what is the try bonus? ### answer: SELECT try_bonus FROM table_name_80 WHERE tries_against = "55" ### context: CREATE TABLE table_name_80 (try_bonus VARCHAR, tries_against VARCHAR) |
### question: tries against is 29, what is the points against? ### answer: SELECT points_against FROM table_name_97 WHERE tries_against = "29" ### context: CREATE TABLE table_name_97 (points_against VARCHAR, tries_against VARCHAR) |
### question: tries against correct as of 2007-10-15 has what tries for? ### answer: SELECT tries_for FROM table_name_54 WHERE tries_against = "correct as of 2007-10-15" ### context: CREATE TABLE table_name_54 (tries_for VARCHAR, tries_against VARCHAR) |
### question: tries against correct as of 2007-10-15 has what tries for? ### answer: SELECT tries_for FROM table_name_31 WHERE tries_against = "correct as of 2007-10-15" ### context: CREATE TABLE table_name_31 (tries_for VARCHAR, tries_against VARCHAR) |
### question: tries against is 88, played is 22, what is the lost? ### answer: SELECT lost FROM table_name_57 WHERE played = "22" AND tries_against = "88" ### context: CREATE TABLE table_name_57 (lost VARCHAR, played VARCHAR, tries_against VARCHAR) |
### question: Who won silver in the year before 2010, the year Chan Ming Shu won gold? ### answer: SELECT silver FROM table_name_21 WHERE year < 2010 AND gold = "chan ming shu" ### context: CREATE TABLE table_name_21 (silver VARCHAR, year VARCHAR, gold VARCHAR) |
### question: What is the location for the year under 2010 and the year Hei Zhi Hong won silver? ### answer: SELECT location FROM table_name_67 WHERE year < 2010 AND silver = "hei zhi hong" ### context: CREATE TABLE table_name_67 (location VARCHAR, year VARCHAR, silver VARCHAR) |
### question: Which location had a year over 2006? ### answer: SELECT location FROM table_name_68 WHERE year > 2006 ### context: CREATE TABLE table_name_68 (location VARCHAR, year INTEGER) |
### question: Score FβA of 2β0, and a Opponents of walsall has what date? ### answer: SELECT date FROM table_name_49 WHERE score_f_a = "2β0" AND opponents = "walsall" ### context: CREATE TABLE table_name_49 (date VARCHAR, score_f_a VARCHAR, opponents VARCHAR) |
### question: Score FβA of 3β0, and a Date of 31 july 2007 had what opponents? ### answer: SELECT opponents FROM table_name_13 WHERE score_f_a = "3β0" AND date = "31 july 2007" ### context: CREATE TABLE table_name_13 (opponents VARCHAR, score_f_a VARCHAR, date VARCHAR) |
### question: Opponents of sheffield wednesday had what date? ### answer: SELECT date FROM table_name_81 WHERE opponents = "sheffield wednesday" ### context: CREATE TABLE table_name_81 (date VARCHAR, opponents VARCHAR) |
### question: Opponents of sheffield wednesday had what date? ### answer: SELECT date FROM table_name_63 WHERE opponents = "sheffield wednesday" ### context: CREATE TABLE table_name_63 (date VARCHAR, opponents VARCHAR) |
### question: Date of 4 august 2007 had what opponents? ### answer: SELECT opponents FROM table_name_17 WHERE date = "4 august 2007" ### context: CREATE TABLE table_name_17 (opponents VARCHAR, date VARCHAR) |
### question: WHich Position has a Player of david laliberte? ### answer: SELECT position FROM table_name_50 WHERE player = "david laliberte" ### context: CREATE TABLE table_name_50 (position VARCHAR, player VARCHAR) |
### question: Which Position has a Player of gino pisellini? ### answer: SELECT position FROM table_name_13 WHERE player = "gino pisellini" ### context: CREATE TABLE table_name_13 (position VARCHAR, player VARCHAR) |
### question: What is the winning score of standard register ping tournament, which has Kelly Robbins as the runner-up? ### answer: SELECT winning_score FROM table_name_46 WHERE tournament = "standard register ping" AND runner_s__up = "kelly robbins" ### context: CREATE TABLE table_name_46 (winning_score VARCHAR, tourn... |
### question: What is the winning score of the tournament on 16 May 1993? ### answer: SELECT winning_score FROM table_name_20 WHERE date = "16 may 1993" ### context: CREATE TABLE table_name_20 (winning_score VARCHAR, date VARCHAR) |
### question: What is the margin of victory of the tournament on 5 Jun 1988? ### answer: SELECT margin_of_victory FROM table_name_75 WHERE date = "5 jun 1988" ### context: CREATE TABLE table_name_75 (margin_of_victory VARCHAR, date VARCHAR) |
### question: What is the winning scor of the tournament with Robin Walton as the runner-up? ### answer: SELECT winning_score FROM table_name_88 WHERE runner_s__up = "robin walton" ### context: CREATE TABLE table_name_88 (winning_score VARCHAR, runner_s__up VARCHAR) |
### question: which NHL team has a College/Junior/Club Team (League) of shattuck-saint mary's school (midget major aaa)? ### answer: SELECT nhl_team FROM table_name_63 WHERE college_junior_club_team__league_ = "shattuck-saint mary's school (midget major aaa)" ### context: CREATE TABLE table_name_63 (nhl_team VARCHAR, c... |
### question: How many Rounds have a Nationality of canada, and a College/Junior/Club Team (League) of fort mcmurray oil barons (ajhl)? ### answer: SELECT COUNT(round) FROM table_name_66 WHERE nationality = "canada" AND college_junior_club_team__league_ = "fort mcmurray oil barons (ajhl)" ### context: CREATE TABLE tabl... |
### question: Which Round has a NHL team of edmonton oilers and a Player of vyacheslav trukhno? ### answer: SELECT AVG(round) FROM table_name_12 WHERE nhl_team = "edmonton oilers" AND player = "vyacheslav trukhno" ### context: CREATE TABLE table_name_12 (round INTEGER, nhl_team VARCHAR, player VARCHAR) |
### question: Which Round has a Nationality of united states, and a College/Junior/Club Team (League) of breck school (ushs)? ### answer: SELECT MIN(round) FROM table_name_19 WHERE nationality = "united states" AND college_junior_club_team__league_ = "breck school (ushs)" ### context: CREATE TABLE table_name_19 (round ... |
### question: What is the max 1-min wind mph when the minimum press is 997? ### answer: SELECT max_1_min_wind_mph__km_h_ FROM table_name_57 WHERE min_press___mbar__ = "997" ### context: CREATE TABLE table_name_57 (max_1_min_wind_mph__km_h_ VARCHAR, min_press___mbar__ VARCHAR) |
### question: How many deaths occurred during Darby? ### answer: SELECT deaths FROM table_name_64 WHERE storm_name = "darby" ### context: CREATE TABLE table_name_64 (deaths VARCHAR, storm_name VARCHAR) |
### question: What is the distance from Jaffa of Jerusalem station? ### answer: SELECT distance_from_jaffa FROM table_name_1 WHERE name_location = "jerusalem" ### context: CREATE TABLE table_name_1 (distance_from_jaffa VARCHAR, name_location VARCHAR) |
### question: What visitor has February 11 as the date? ### answer: SELECT visitor FROM table_name_37 WHERE date = "february 11" ### context: CREATE TABLE table_name_37 (visitor VARCHAR, date VARCHAR) |
### question: Which venue is the friendly match in? ### answer: SELECT venue FROM table_name_7 WHERE competition = "friendly match" ### context: CREATE TABLE table_name_7 (venue VARCHAR, competition VARCHAR) |
### question: What is the result of the friendly match in Seoul? ### answer: SELECT result FROM table_name_47 WHERE competition = "friendly match" AND venue = "seoul" ### context: CREATE TABLE table_name_47 (result VARCHAR, competition VARCHAR, venue VARCHAR) |
### question: What is the result of the 2007 AFC asian cup? ### answer: SELECT result FROM table_name_19 WHERE competition = "2007 afc asian cup" ### context: CREATE TABLE table_name_19 (result VARCHAR, competition VARCHAR) |
### question: Which Runner(s)-up has a Margin of victory of 1 stroke, and a Tournament of world seniors invitational? ### answer: SELECT runner_s__up FROM table_name_34 WHERE margin_of_victory = "1 stroke" AND tournament = "world seniors invitational" ### context: CREATE TABLE table_name_34 (runner_s__up VARCHAR, margi... |
### question: Which Runner(s)-up has a Tournament of general foods pga seniors' championship? ### answer: SELECT runner_s__up FROM table_name_65 WHERE tournament = "general foods pga seniors' championship" ### context: CREATE TABLE table_name_65 (runner_s__up VARCHAR, tournament VARCHAR) |
### question: Which Tournament has a Margin of victory of 2 strokes, and a Winning score of β14 (68-66-68=202)? ### answer: SELECT tournament FROM table_name_10 WHERE margin_of_victory = "2 strokes" AND winning_score = β14(68 - 66 - 68 = 202) ### context: CREATE TABLE table_name_10 (tournament VARCHAR, margin_of_victor... |
### question: Which Date has a Winning score of β9 (70-64-70=203)? ### answer: SELECT date FROM table_name_19 WHERE winning_score = β9(70 - 64 - 70 = 203) ### context: CREATE TABLE table_name_19 (date VARCHAR, winning_score VARCHAR) |
### question: What was the High points when date was February 11? ### answer: SELECT high_points FROM table_name_55 WHERE date = "february 11" ### context: CREATE TABLE table_name_55 (high_points VARCHAR, date VARCHAR) |
### question: What was the team that has a High rebounds of popeye jones (14), and when the Record was 16-28? ### answer: SELECT team FROM table_name_86 WHERE high_rebounds = "popeye jones (14)" AND record = "16-28" ### context: CREATE TABLE table_name_86 (team VARCHAR, high_rebounds VARCHAR, record VARCHAR) |
### question: What is the Location Attendance when the Date was February 27? ### answer: SELECT location_attendance FROM table_name_83 WHERE date = "february 27" ### context: CREATE TABLE table_name_83 (location_attendance VARCHAR, date VARCHAR) |
### question: What is the score of the scores when Game had a Record of 17-29? ### answer: SELECT SUM(game) FROM table_name_27 WHERE record = "17-29" ### context: CREATE TABLE table_name_27 (game INTEGER, record VARCHAR) |
### question: Who has the lead on Lisa Weagle? ### answer: SELECT skip FROM table_name_80 WHERE lead = "lisa weagle" ### context: CREATE TABLE table_name_80 (skip VARCHAR, lead VARCHAR) |
### question: Which event shows Matt St. Louis in second and a skip of John Morris? ### answer: SELECT event FROM table_name_24 WHERE skip = "john morris" AND second = "matt st. louis" ### context: CREATE TABLE table_name_24 (event VARCHAR, skip VARCHAR, second VARCHAR) |
### question: What are the highest attempts that have net yards less than 631, and 2 for the touchdowns? ### answer: SELECT MAX(attempts) FROM table_name_53 WHERE net_yards < 631 AND touchdowns = 2 ### context: CREATE TABLE table_name_53 (attempts INTEGER, net_yards VARCHAR, touchdowns VARCHAR) |
### question: What are the average net yards that have 9 as the touchdowns, 145 as the attempts, and yards per attempt greater than 4.8? ### answer: SELECT AVG(net_yards) FROM table_name_87 WHERE touchdowns = 9 AND attempts = 145 AND yards_per_attempt > 4.8 ### context: CREATE TABLE table_name_87 (net_yards INTEGER, ya... |
### question: How many yards per attempt have net yards greater than 631? ### answer: SELECT SUM(yards_per_attempt) FROM table_name_17 WHERE net_yards > 631 ### context: CREATE TABLE table_name_17 (yards_per_attempt INTEGER, net_yards INTEGER) |
### question: What are the highest touchdowns that have net yards greater than 631, with attempts less than 145? ### answer: SELECT MAX(touchdowns) FROM table_name_34 WHERE net_yards > 631 AND attempts < 145 ### context: CREATE TABLE table_name_34 (touchdowns INTEGER, net_yards VARCHAR, attempts VARCHAR) |
### question: What is the value for Slalom in seasons later than 1994 and overall value greater than 22? ### answer: SELECT slalom FROM table_name_90 WHERE season > 1994 AND overall > 22 ### context: CREATE TABLE table_name_90 (slalom VARCHAR, season VARCHAR, overall VARCHAR) |
### question: How many seasons had a Super G of 2 and overall of 3? ### answer: SELECT COUNT(season) FROM table_name_61 WHERE super_g = "2" AND overall = 3 ### context: CREATE TABLE table_name_61 (season VARCHAR, super_g VARCHAR, overall VARCHAR) |
### question: Who was the Opponent in the Auckland, New Zealand Tournament? ### answer: SELECT opponent FROM table_name_50 WHERE tournament = "auckland, new zealand" ### context: CREATE TABLE table_name_50 (opponent VARCHAR, tournament VARCHAR) |
### question: On what Date was Rafael Nadal the Opponent? ### answer: SELECT date FROM table_name_37 WHERE opponent = "rafael nadal" ### context: CREATE TABLE table_name_37 (date VARCHAR, opponent VARCHAR) |
### question: Who was the Opponent on a Hard (i) Surface? ### answer: SELECT opponent FROM table_name_5 WHERE surface = "hard (i)" ### context: CREATE TABLE table_name_5 (opponent VARCHAR, surface VARCHAR) |
### question: What was the Score at the Auckland, New Zealand Tournament? ### answer: SELECT score FROM table_name_7 WHERE tournament = "auckland, new zealand" ### context: CREATE TABLE table_name_7 (score VARCHAR, tournament VARCHAR) |
### question: What team plays in Dinamo, Brest? ### answer: SELECT team FROM table_name_97 WHERE venue = "dinamo, brest" ### context: CREATE TABLE table_name_97 (team VARCHAR, venue VARCHAR) |
### question: What team plays at Spartak, Mogilev? ### answer: SELECT team FROM table_name_26 WHERE venue = "spartak, mogilev" ### context: CREATE TABLE table_name_26 (team VARCHAR, venue VARCHAR) |
### question: Who was the Producer/Director of Fear Beneath? ### answer: SELECT producer_director FROM table_name_40 WHERE film = "fear beneath" ### context: CREATE TABLE table_name_40 (producer_director VARCHAR, film VARCHAR) |
### question: What film was released in 1996? ### answer: SELECT film FROM table_name_76 WHERE year = 1996 ### context: CREATE TABLE table_name_76 (film VARCHAR, year VARCHAR) |
### question: Who is the Producer/Director of Political Engagement? ### answer: SELECT producer_director FROM table_name_67 WHERE film = "political engagement" ### context: CREATE TABLE table_name_67 (producer_director VARCHAR, film VARCHAR) |
### question: What is the original airdate for episode 7-17 (195) from writer Sidney Slon? ### answer: SELECT original_airdate FROM table_name_5 WHERE writer_s_ = "sidney slon" AND episode = "7-17 (195)" ### context: CREATE TABLE table_name_5 (original_airdate VARCHAR, writer_s_ VARCHAR, episode VARCHAR) |
### question: What is the date of the tournament played in Madrid, Spain? ### answer: SELECT date FROM table_name_90 WHERE tournament = "madrid, spain" ### context: CREATE TABLE table_name_90 (date VARCHAR, tournament VARCHAR) |
### question: What opponent has final as the round? ### answer: SELECT opponent FROM table_name_34 WHERE round = "final" ### context: CREATE TABLE table_name_34 (opponent VARCHAR, round VARCHAR) |
### question: What round has hereford united as the opponent? ### answer: SELECT round FROM table_name_50 WHERE opponent = "hereford united" ### context: CREATE TABLE table_name_50 (round VARCHAR, opponent VARCHAR) |
### question: Which Location /State has a Winner of craig lowndes, and a Date of 29β31 may? ### answer: SELECT location___state FROM table_name_67 WHERE winner = "craig lowndes" AND date = "29β31 may" ### context: CREATE TABLE table_name_67 (location___state VARCHAR, winner VARCHAR, date VARCHAR) |
### question: Which Team has a Winner of craig lowndes, and a Circuit of phillip island grand prix circuit? ### answer: SELECT team FROM table_name_69 WHERE winner = "craig lowndes" AND circuit = "phillip island grand prix circuit" ### context: CREATE TABLE table_name_69 (team VARCHAR, winner VARCHAR, circuit VARCHAR) |
### question: Which Location/ State has a Date of 29β31 may? ### answer: SELECT location___state FROM table_name_36 WHERE date = "29β31 may" ### context: CREATE TABLE table_name_36 (location___state VARCHAR, date VARCHAR) |
### question: Who won at the Circuit of lakeside international raceway? ### answer: SELECT winner FROM table_name_89 WHERE circuit = "lakeside international raceway" ### context: CREATE TABLE table_name_89 (winner VARCHAR, circuit VARCHAR) |
### question: What is the service charge of the boat howitzers with 456 made? ### answer: SELECT service_charge FROM table_name_38 WHERE number_made = 456 ### context: CREATE TABLE table_name_38 (service_charge VARCHAR, number_made VARCHAR) |
### question: What is the service chage of the boat howitzers with a 12-pdr light destination? ### answer: SELECT service_charge FROM table_name_42 WHERE designation = "12-pdr light" ### context: CREATE TABLE table_name_42 (service_charge VARCHAR, designation VARCHAR) |
### question: What is the service charge of the boat howitzers with 1009 made? ### answer: SELECT service_charge FROM table_name_9 WHERE number_made = 1009 ### context: CREATE TABLE table_name_9 (service_charge VARCHAR, number_made VARCHAR) |
### question: What is the bore of the boat howitzers with a 12-pdr heavy designation? ### answer: SELECT bore FROM table_name_8 WHERE designation = "12-pdr heavy" ### context: CREATE TABLE table_name_8 (bore VARCHAR, designation VARCHAR) |
### question: Which attendance has 9 as the tie no.? ### answer: SELECT attendance FROM table_name_43 WHERE tie_no = 9 ### context: CREATE TABLE table_name_43 (attendance VARCHAR, tie_no VARCHAR) |
### question: How many Picks have a Position of defensive end, and an Overall smaller than 33? ### answer: SELECT COUNT(pick__number) FROM table_name_22 WHERE position = "defensive end" AND overall < 33 ### context: CREATE TABLE table_name_22 (pick__number VARCHAR, position VARCHAR, overall VARCHAR) |
### question: Which Overall is the highest one that has a Name of gregory spann, and a Pick # larger than 19? ### answer: SELECT MAX(overall) FROM table_name_9 WHERE name = "gregory spann" AND pick__number > 19 ### context: CREATE TABLE table_name_9 (overall INTEGER, name VARCHAR, pick__number VARCHAR) |
### question: Which Pick # has a Round larger than 5, and a Position of wide receiver, and a Name of gregory spann, and an Overall larger than 228? ### answer: SELECT AVG(pick__number) FROM table_name_67 WHERE round > 5 AND position = "wide receiver" AND name = "gregory spann" AND overall > 228 ### context: CREATE TABL... |
### question: What is the score from the 21-27 Record? ### answer: SELECT score FROM table_name_96 WHERE record = "21-27" ### context: CREATE TABLE table_name_96 (score VARCHAR, record VARCHAR) |
### question: How many people attended the May 28 game? ### answer: SELECT attendance FROM table_name_99 WHERE date = "may 28" ### context: CREATE TABLE table_name_99 (attendance VARCHAR, date VARCHAR) |
### question: What is the average drawn number of the team with less than 70 points and less than 46 played? ### answer: SELECT AVG(drawn) FROM table_name_76 WHERE points < 70 AND played < 46 ### context: CREATE TABLE table_name_76 (drawn INTEGER, points VARCHAR, played VARCHAR) |
### question: What is the highest position of the team with 24 lost and a drawn greater than 9? ### answer: SELECT MAX(position) FROM table_name_62 WHERE lost = 24 AND drawn > 9 ### context: CREATE TABLE table_name_62 (position INTEGER, lost VARCHAR, drawn VARCHAR) |
### question: How many Points has a Game of 82 and a April larger than 10? ### answer: SELECT AVG(points) FROM table_name_11 WHERE game = 82 AND april > 10 ### context: CREATE TABLE table_name_11 (points INTEGER, game VARCHAR, april VARCHAR) |
### question: How many Games have a Score of 3β3 ot? ### answer: SELECT COUNT(game) FROM table_name_98 WHERE score = "3β3 ot" ### context: CREATE TABLE table_name_98 (game VARCHAR, score VARCHAR) |
### question: Which April has a Game of 84 ### answer: SELECT MAX(april) FROM table_name_54 WHERE game = 84 ### context: CREATE TABLE table_name_54 (april INTEGER, game VARCHAR) |
### question: what's the played status when the club was banwen rfc? ### answer: SELECT played FROM table_name_88 WHERE club = "banwen rfc" ### context: CREATE TABLE table_name_88 (played VARCHAR, club VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.