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