Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
51,600 | <question>: What is the average 1940 value where 1929 values are 101.4 and 1933 values are over 68.3? <context>: CREATE TABLE table_name_6 (Id VARCHAR) | SELECT AVG(1940) FROM table_name_6 WHERE 1929 = 101.4 AND 1933 > 68.3 |
51,601 | <question>: What is the highest 1937 value that has a 1940 value over 126? <context>: CREATE TABLE table_name_60 (Id VARCHAR) | SELECT MAX(1937) FROM table_name_60 WHERE 1940 > 126 |
51,602 | <question>: At what time is the ბრაზილიის უბანი shown? <context>: CREATE TABLE table_name_43 (timeslot VARCHAR, translation VARCHAR) | SELECT timeslot FROM table_name_43 WHERE translation = "ბრაზილიის უბანი" |
51,603 | <question>: What country was the series finale present and was shown Monday to Sunday at 18:45-21:00? <context>: CREATE TABLE table_name_70 (country VARCHAR, timeslot VARCHAR, series_finale VARCHAR, weekly_schedule VARCHAR) | SELECT country FROM table_name_70 WHERE series_finale = "present" AND weekly_schedule = "monday to sunday" AND timeslot = "18:45-21:00" |
51,604 | <question>: What series finale has the translation ოჰ ეს ცრემლები / პარალელური საიდუმლო? <context>: CREATE TABLE table_name_56 (series_finale VARCHAR, translation VARCHAR) | SELECT series_finale FROM table_name_56 WHERE translation = "ოჰ ეს ცრემლები / პარალელური საიდუმლო" |
51,605 | <question>: What days of the week is the show aired on that runs at 16:45? <context>: CREATE TABLE table_name_21 (weekly_schedule VARCHAR, timeslot VARCHAR) | SELECT weekly_schedule FROM table_name_21 WHERE timeslot = "16:45" |
51,606 | <question>: Which days of the week does the telenovela play that is aired at 11:00? <context>: CREATE TABLE table_name_75 (weekly_schedule VARCHAR, timeslot VARCHAR) | SELECT weekly_schedule FROM table_name_75 WHERE timeslot = "11:00" |
51,607 | <question>: Which Tournament was on 2 October 2006? <context>: CREATE TABLE table_name_98 (tournament VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_98 WHERE date = "2 october 2006" |
51,608 | <question>: Who is the Opponent in the final on 4 April 2011? <context>: CREATE TABLE table_name_16 (opponent_in_the_final VARCHAR, date VARCHAR) | SELECT opponent_in_the_final FROM table_name_16 WHERE date = "4 april 2011" |
51,609 | <question>: What Surface was used on 2 June 2003? <context>: CREATE TABLE table_name_94 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_94 WHERE date = "2 june 2003" |
51,610 | <question>: Which award show nominated The Suite Life on Deck for the Teen Pick Show: Comedy category? <context>: CREATE TABLE table_name_54 (award VARCHAR, category VARCHAR) | SELECT award FROM table_name_54 WHERE category = "teen pick show: comedy" |
51,611 | <question>: Which award show nominated Cole Sprouse for the Favorite TV Actor category? <context>: CREATE TABLE table_name_49 (award VARCHAR, category VARCHAR, recipient VARCHAR) | SELECT award FROM table_name_49 WHERE category = "favorite tv actor" AND recipient = "cole sprouse" |
51,612 | <question>: What category was The Suite Life on Deck nominated for later than 2010? <context>: CREATE TABLE table_name_62 (category VARCHAR, recipient VARCHAR, year VARCHAR) | SELECT category FROM table_name_62 WHERE recipient = "the suite life on deck" AND year > 2010 |
51,613 | <question>: Who won the 2010 Kids' Choice Awards? <context>: CREATE TABLE table_name_30 (recipient VARCHAR, award VARCHAR, result VARCHAR) | SELECT recipient FROM table_name_30 WHERE award = "2010 kids' choice awards" AND result = "won" |
51,614 | <question>: What was the Rd. Time for October 3, 2009? <context>: CREATE TABLE table_name_86 (rd VARCHAR, _time VARCHAR, date VARCHAR) | SELECT rd, _time FROM table_name_86 WHERE date = "october 3, 2009" |
51,615 | <question>: What is the greatest lost where played is less than 9? <context>: CREATE TABLE table_name_51 (lost INTEGER, played INTEGER) | SELECT MAX(lost) FROM table_name_51 WHERE played < 9 |
51,616 | <question>: What is the greatest played with a drawn less than 1 and a position of less than 1? <context>: CREATE TABLE table_name_99 (played INTEGER, drawn VARCHAR, position VARCHAR) | SELECT MAX(played) FROM table_name_99 WHERE drawn < 1 AND position < 1 |
51,617 | <question>: What is the smallest drawn when the points are less than 7 and the against greater than 31? <context>: CREATE TABLE table_name_79 (drawn INTEGER, points VARCHAR, against VARCHAR) | SELECT MIN(drawn) FROM table_name_79 WHERE points < 7 AND against > 31 |
51,618 | <question>: What is the name of the team that has 13 points? <context>: CREATE TABLE table_name_47 (team VARCHAR, points VARCHAR) | SELECT team FROM table_name_47 WHERE points = 13 |
51,619 | <question>: What was the Nominated Work earlier than 2003? <context>: CREATE TABLE table_name_85 (nominated_work VARCHAR, year INTEGER) | SELECT nominated_work FROM table_name_85 WHERE year < 2003 |
51,620 | <question>: What was the Nominated Work earlier than 2003? <context>: CREATE TABLE table_name_62 (nominated_work VARCHAR, year INTEGER) | SELECT nominated_work FROM table_name_62 WHERE year < 2003 |
51,621 | <question>: What was the Nominated Work earlier than 2003? <context>: CREATE TABLE table_name_95 (nominated_work VARCHAR, year INTEGER) | SELECT nominated_work FROM table_name_95 WHERE year < 2003 |
51,622 | <question>: Which method's event was flawless fighting championship 1: the beginning? <context>: CREATE TABLE table_name_42 (method VARCHAR, event VARCHAR) | SELECT method FROM table_name_42 WHERE event = "flawless fighting championship 1: the beginning" |
51,623 | <question>: Which method's opponent was chris clark? <context>: CREATE TABLE table_name_11 (method VARCHAR, opponent VARCHAR) | SELECT method FROM table_name_11 WHERE opponent = "chris clark" |
51,624 | <question>: Which record's round was 3 when the event was fight festival 27? <context>: CREATE TABLE table_name_19 (record VARCHAR, round VARCHAR, event VARCHAR) | SELECT record FROM table_name_19 WHERE round = 3 AND event = "fight festival 27" |
51,625 | <question>: What is the Fourth place with a Year that is 1978? <context>: CREATE TABLE table_name_58 (fourth_place VARCHAR, year VARCHAR) | SELECT fourth_place FROM table_name_58 WHERE year = 1978 |
51,626 | <question>: What is the Fourth place with a Year that is 1966? <context>: CREATE TABLE table_name_11 (fourth_place VARCHAR, year VARCHAR) | SELECT fourth_place FROM table_name_11 WHERE year = 1966 |
51,627 | <question>: What is the Champion with a Year that is 2008? <context>: CREATE TABLE table_name_65 (champion VARCHAR, year VARCHAR) | SELECT champion FROM table_name_65 WHERE year = 2008 |
51,628 | <question>: Who was the opponent for the game played on September 19, 1994? <context>: CREATE TABLE table_name_15 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_15 WHERE date = "september 19, 1994" |
51,629 | <question>: In which week was attendance at 50,814? <context>: CREATE TABLE table_name_10 (week VARCHAR, attendance VARCHAR) | SELECT COUNT(week) FROM table_name_10 WHERE attendance = "50,814" |
51,630 | <question>: What date after Week 6 was a Bye? <context>: CREATE TABLE table_name_34 (date VARCHAR, week VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_34 WHERE week > 6 AND attendance = "bye" |
51,631 | <question>: What subjunctive also has an inverse subjunctive of måchadns? <context>: CREATE TABLE table_name_85 (subjunctive VARCHAR, inverse_subjunctive VARCHAR) | SELECT subjunctive FROM table_name_85 WHERE inverse_subjunctive = "måchadns" |
51,632 | <question>: What imperative has måcha as 3.sg? <context>: CREATE TABLE table_name_94 (imperative VARCHAR, måcha VARCHAR) | SELECT imperative FROM table_name_94 WHERE måcha = "3.sg" |
51,633 | <question>: The indicative of si måchan has what as the inverse subjunctive? <context>: CREATE TABLE table_name_8 (inverse_subjunctive VARCHAR, indicative VARCHAR) | SELECT inverse_subjunctive FROM table_name_8 WHERE indicative = "si måchan" |
51,634 | <question>: What inverse subjunctive has — as the imperative and a subjunctive of se måchadn? <context>: CREATE TABLE table_name_9 (inverse_subjunctive VARCHAR, imperative VARCHAR, subjunctive VARCHAR) | SELECT inverse_subjunctive FROM table_name_9 WHERE imperative = "—" AND subjunctive = "se måchadn" |
51,635 | <question>: With a subjunctive of du måchast what is the imperative? <context>: CREATE TABLE table_name_37 (imperative VARCHAR, subjunctive VARCHAR) | SELECT imperative FROM table_name_37 WHERE subjunctive = "du måchast" |
51,636 | <question>: What subjunctive has the indicative of se måchan(t)? <context>: CREATE TABLE table_name_77 (subjunctive VARCHAR, indicative VARCHAR) | SELECT subjunctive FROM table_name_77 WHERE indicative = "se måchan(t)" |
51,637 | <question>: What is the Win % in the Span of 2011–2013 with a Lost of less than 1? <context>: CREATE TABLE table_name_91 (win__percentage INTEGER, span VARCHAR, lost VARCHAR) | SELECT AVG(win__percentage) FROM table_name_91 WHERE span = "2011–2013" AND lost < 1 |
51,638 | <question>: How many games were Tied during the Span of 2011–2013 with a less than 80% Win %? <context>: CREATE TABLE table_name_57 (tied VARCHAR, span VARCHAR, win__percentage VARCHAR) | SELECT COUNT(tied) FROM table_name_57 WHERE span = "2011–2013" AND win__percentage < 80 |
51,639 | <question>: On what date were sheets issued in Tallahassee, Florida? <context>: CREATE TABLE table_name_40 (date_of_issue VARCHAR, place_of_issue VARCHAR) | SELECT date_of_issue FROM table_name_40 WHERE place_of_issue = "tallahassee, florida" |
51,640 | <question>: Which printer issued sheets on October 5, 2006? <context>: CREATE TABLE table_name_79 (printer VARCHAR, date_of_issue VARCHAR) | SELECT printer FROM table_name_79 WHERE date_of_issue = "october 5, 2006" |
51,641 | <question>: What is the least amount of silver medals won by Total with more than 1 bronze and more than 18 total medals won? <context>: CREATE TABLE table_name_8 (silver INTEGER, bronze VARCHAR, nation VARCHAR) | SELECT MIN(silver) FROM table_name_8 WHERE bronze > 1 AND nation = "total" AND "total" > 18 |
51,642 | <question>: How many positions have points against less than 28, americano-sp as the team, with a played greater than 8? <context>: CREATE TABLE table_name_7 (position VARCHAR, played VARCHAR, against VARCHAR, team VARCHAR) | SELECT COUNT(position) FROM table_name_7 WHERE against < 28 AND team = "americano-sp" AND played > 8 |
51,643 | <question>: How many losses have points against less than 15? <context>: CREATE TABLE table_name_1 (lost VARCHAR, against INTEGER) | SELECT COUNT(lost) FROM table_name_1 WHERE against < 15 |
51,644 | <question>: What average played has an against less than 15? <context>: CREATE TABLE table_name_40 (played INTEGER, against INTEGER) | SELECT AVG(played) FROM table_name_40 WHERE against < 15 |
51,645 | <question>: How many losses have a played greater than 8, ypiranga-sp as the team, with a position greater than 5? <context>: CREATE TABLE table_name_60 (lost VARCHAR, position VARCHAR, played VARCHAR, team VARCHAR) | SELECT COUNT(lost) FROM table_name_60 WHERE played > 8 AND team = "ypiranga-sp" AND position > 5 |
51,646 | <question>: What lost has a position greater than 2, a drawn greater than 0, with an against greater than 15? <context>: CREATE TABLE table_name_24 (lost VARCHAR, against VARCHAR, position VARCHAR, drawn VARCHAR) | SELECT lost FROM table_name_24 WHERE position > 2 AND drawn > 0 AND against > 15 |
51,647 | <question>: What is the sum of Asian or Amerindian (%), when State is Sergipe, and when Brown (%) is greater than 61,3? <context>: CREATE TABLE table_name_44 (asian_or_amerindian___percentage_ INTEGER, state VARCHAR, brown___percentage_ VARCHAR) | SELECT SUM(asian_or_amerindian___percentage_) FROM table_name_44 WHERE state = "sergipe" AND brown___percentage_ > 61 OFFSET 3 |
51,648 | <question>: How many points were there when there more than 6 losses and less than 14 matches? <context>: CREATE TABLE table_name_16 (points VARCHAR, lost VARCHAR, match VARCHAR) | SELECT COUNT(points) FROM table_name_16 WHERE lost > 6 AND match < 14 |
51,649 | <question>: How few losses were the least number of losses and points higher than 23? <context>: CREATE TABLE table_name_67 (lost INTEGER, points INTEGER) | SELECT MIN(lost) FROM table_name_67 WHERE points > 23 |
51,650 | <question>: What is the highest number of matches with more than 18 points and more than 1 draw? <context>: CREATE TABLE table_name_37 (match INTEGER, points VARCHAR, draw VARCHAR) | SELECT MAX(match) FROM table_name_37 WHERE points > 18 AND draw > 1 |
51,651 | <question>: Who was the champion in the game played at the St. Andrews Links with Dick Chapman as the runner-up? <context>: CREATE TABLE table_name_87 (champion VARCHAR, runner_up VARCHAR, venue VARCHAR) | SELECT champion FROM table_name_87 WHERE runner_up = "dick chapman" AND venue = "st. andrews links" |
51,652 | <question>: What is the score of the match won by Willie Hunter at the Royal Liverpool Golf Club? <context>: CREATE TABLE table_name_21 (score VARCHAR, venue VARCHAR, champion VARCHAR) | SELECT score FROM table_name_21 WHERE venue = "royal liverpool golf club" AND champion = "willie hunter" |
51,653 | <question>: What player from England was the runner-up at the match played at the Royal Porthcawl Golf Club? <context>: CREATE TABLE table_name_83 (runner_up VARCHAR, country VARCHAR, venue VARCHAR) | SELECT runner_up FROM table_name_83 WHERE country = "england" AND venue = "royal porthcawl golf club" |
51,654 | <question>: Who was the champion in the match where C.A. Palmer was the runner-up? <context>: CREATE TABLE table_name_80 (champion VARCHAR, runner_up VARCHAR) | SELECT champion FROM table_name_80 WHERE runner_up = "c.a. palmer" |
51,655 | <question>: What player was the champion in the match where E.A. Lassen was the runner-up? <context>: CREATE TABLE table_name_60 (champion VARCHAR, runner_up VARCHAR) | SELECT champion FROM table_name_60 WHERE runner_up = "e.a. lassen" |
51,656 | <question>: What is the score of the match played in England where Peter McEvoy was the champion and Paul McKellar was runner-up? <context>: CREATE TABLE table_name_34 (score VARCHAR, runner_up VARCHAR, country VARCHAR, champion VARCHAR) | SELECT score FROM table_name_34 WHERE country = "england" AND champion = "peter mcevoy" AND runner_up = "paul mckellar" |
51,657 | <question>: Which federal state has 6 representatives of national average? <context>: CREATE TABLE table_name_3 (federal_state VARCHAR, representatives_of_national_average VARCHAR) | SELECT federal_state FROM table_name_3 WHERE representatives_of_national_average = "6" |
51,658 | <question>: According to the 2010 census, what was the population for the federal state that had less than -6 deputies required ignoring the limits? <context>: CREATE TABLE table_name_47 (population__on_the_census_also_called_censo_2010_ VARCHAR, deputies_required_ignoring_the_limits INTEGER) | SELECT population__on_the_census_also_called_censo_2010_ FROM table_name_47 WHERE deputies_required_ignoring_the_limits < -6 |
51,659 | <question>: What is the lowest number of blocks for players with height of 206 and more than 356 spikes? <context>: CREATE TABLE table_name_69 (block INTEGER, height VARCHAR, spike VARCHAR) | SELECT MIN(block) FROM table_name_69 WHERE height = 206 AND spike > 356 |
51,660 | <question>: What is the number of weight values associated with 340 blocks and more than 353 spikes? <context>: CREATE TABLE table_name_7 (weight VARCHAR, block VARCHAR, spike VARCHAR) | SELECT COUNT(weight) FROM table_name_7 WHERE block = 340 AND spike > 353 |
51,661 | <question>: What award did Forest Whitaker win in 1989? <context>: CREATE TABLE table_name_54 (award VARCHAR, actor VARCHAR, year VARCHAR) | SELECT award FROM table_name_54 WHERE actor = "forest whitaker" AND year = 1989 |
51,662 | <question>: For what motion picture did Samuel L. Jackson win the best supporting actor award before 1997? <context>: CREATE TABLE table_name_42 (motion_picture VARCHAR, year VARCHAR, award VARCHAR, actor VARCHAR) | SELECT motion_picture FROM table_name_42 WHERE award = "best supporting actor" AND actor = "samuel l. jackson" AND year < 1997 |
51,663 | <question>: Which actor won in 1966? <context>: CREATE TABLE table_name_43 (actor VARCHAR, year VARCHAR) | SELECT actor FROM table_name_43 WHERE year = 1966 |
51,664 | <question>: What is the lowest influence with population in the millions less than 60.64, and MEPs less than 22, and 454,059 inhabitant per MEP? <context>: CREATE TABLE table_name_58 (influence INTEGER, inhabitants_per_mep VARCHAR, population_millions VARCHAR, meps VARCHAR) | SELECT MIN(influence) FROM table_name_58 WHERE population_millions < 60.64 AND meps < 22 AND inhabitants_per_mep = 454 OFFSET 059 |
51,665 | <question>: What is the highest population in the millions that has an influence of 1.02? <context>: CREATE TABLE table_name_55 (population_millions INTEGER, influence VARCHAR) | SELECT MAX(population_millions) FROM table_name_55 WHERE influence = 1.02 |
51,666 | <question>: What is the sum of the population in millions that has an influence less than 2.91, a MEP smaller than 13, a member of Latvia, and more than 286,875 inhabitants per MEP? <context>: CREATE TABLE table_name_49 (population_millions INTEGER, inhabitants_per_mep VARCHAR, member_state VARCHAR, influence VARCHAR, meps VARCHAR) | SELECT SUM(population_millions) FROM table_name_49 WHERE influence < 2.91 AND meps < 13 AND member_state = "latvia" AND inhabitants_per_mep > 286 OFFSET 875 |
51,667 | <question>: What is the highest number of inhabitants per MEP that has MEPs larger than 50, a member of Germany, and a population less than 82.43 million? <context>: CREATE TABLE table_name_26 (inhabitants_per_mep INTEGER, population_millions VARCHAR, meps VARCHAR, member_state VARCHAR) | SELECT MAX(inhabitants_per_mep) FROM table_name_26 WHERE meps > 50 AND member_state = "germany" AND population_millions < 82.43 |
51,668 | <question>: Which World Rank has a Year smaller than 1977, and a Location of eugene? <context>: CREATE TABLE table_name_81 (world_rank VARCHAR, year VARCHAR, location VARCHAR) | SELECT world_rank FROM table_name_81 WHERE year < 1977 AND location = "eugene" |
51,669 | <question>: What's the lowest Year with a World Rank of 5th, with a Result greater than 20.31? <context>: CREATE TABLE table_name_65 (year INTEGER, world_rank VARCHAR, result VARCHAR) | SELECT MIN(year) FROM table_name_65 WHERE world_rank = "5th" AND result > 20.31 |
51,670 | <question>: Which Year has a Result smaller than 20.26, and a Location of eugene? <context>: CREATE TABLE table_name_80 (year INTEGER, result VARCHAR, location VARCHAR) | SELECT SUM(year) FROM table_name_80 WHERE result < 20.26 AND location = "eugene" |
51,671 | <question>: What is the Result with a Location of brussels? <context>: CREATE TABLE table_name_96 (result VARCHAR, location VARCHAR) | SELECT COUNT(result) FROM table_name_96 WHERE location = "brussels" |
51,672 | <question>: What Year has a Result smaller than 20.31, and a World Rank of 5th? <context>: CREATE TABLE table_name_64 (year INTEGER, result VARCHAR, world_rank VARCHAR) | SELECT AVG(year) FROM table_name_64 WHERE result < 20.31 AND world_rank = "5th" |
51,673 | <question>: What is the record when the Nuggets are the home team? <context>: CREATE TABLE table_name_33 (record VARCHAR, home VARCHAR) | SELECT record FROM table_name_33 WHERE home = "nuggets" |
51,674 | <question>: What is the lowest number of points for Drivers that have raced in more than 16 Races? <context>: CREATE TABLE table_name_35 (points INTEGER, races INTEGER) | SELECT MIN(points) FROM table_name_35 WHERE races > 16 |
51,675 | <question>: What is the least number of Races for a Racer with less than 0 Points? <context>: CREATE TABLE table_name_31 (races INTEGER, points INTEGER) | SELECT MIN(races) FROM table_name_31 WHERE points < 0 |
51,676 | <question>: What is the average Year during which the Driver Adrian Quaife-Hobbs has fewer than 2 Poles, and 0 Fast laps? <context>: CREATE TABLE table_name_98 (year INTEGER, drivers VARCHAR, poles VARCHAR, fast_laps VARCHAR) | SELECT AVG(year) FROM table_name_98 WHERE poles < 2 AND fast_laps = 0 AND drivers = "adrian quaife-hobbs" |
51,677 | <question>: Which city contains the KPIX station? <context>: CREATE TABLE table_name_96 (city_of_license__market VARCHAR, station VARCHAR) | SELECT city_of_license__market FROM table_name_96 WHERE station = "kpix" |
51,678 | <question>: Which station has channel TV (DT) of 3 (26)? <context>: CREATE TABLE table_name_74 (station VARCHAR, channel_tv___dt__ VARCHAR) | SELECT station FROM table_name_74 WHERE channel_tv___dt__ = "3 (26)" |
51,679 | <question>: What is the current affiliation when the years owned is between 1955–1995? <context>: CREATE TABLE table_name_62 (current_affiliation VARCHAR, years_owned VARCHAR) | SELECT current_affiliation FROM table_name_62 WHERE years_owned = "1955–1995" |
51,680 | <question>: What is the city containing the KDKA-TV station? <context>: CREATE TABLE table_name_61 (city_of_license__market VARCHAR, station VARCHAR) | SELECT city_of_license__market FROM table_name_61 WHERE station = "kdka-tv" |
51,681 | <question>: Which Channel TV is located in Baltimore? <context>: CREATE TABLE table_name_88 (channel_tv___dt__ VARCHAR, city_of_license__market VARCHAR) | SELECT channel_tv___dt__ FROM table_name_88 WHERE city_of_license__market = "baltimore" |
51,682 | <question>: What is the least number of goals scored in the play-offs among the players that have scored 2 in the FA Cup? <context>: CREATE TABLE table_name_43 (play_offs INTEGER, fa_cup VARCHAR) | SELECT MIN(play_offs) FROM table_name_43 WHERE fa_cup = 2 |
51,683 | <question>: What is the average number of goals scored in the FA Cup among players that have more than 20 total goals, less than 1 FA Trophy goals, and less than 25 league goals? <context>: CREATE TABLE table_name_57 (fa_cup INTEGER, league VARCHAR, total VARCHAR, fa_trophy VARCHAR) | SELECT AVG(fa_cup) FROM table_name_57 WHERE total > 20 AND fa_trophy < 1 AND league < 25 |
51,684 | <question>: What is the latitude and longitude for Surveyor 3? <context>: CREATE TABLE table_name_87 (lat___lon VARCHAR, us_mission VARCHAR) | SELECT lat___lon FROM table_name_87 WHERE us_mission = "surveyor 3" |
51,685 | <question>: What is the largest mass for Tycho Crater? <context>: CREATE TABLE table_name_59 (mass__kg_ INTEGER, landing_zone VARCHAR) | SELECT MAX(mass__kg_) FROM table_name_59 WHERE landing_zone = "tycho crater" |
51,686 | <question>: What Field was Commissioned in 1958, 2005? <context>: CREATE TABLE table_name_24 (field VARCHAR, commissioned VARCHAR) | SELECT field FROM table_name_24 WHERE commissioned = "1958, 2005" |
51,687 | <question>: What is the Annual Generation at Kawerau (Bope)? <context>: CREATE TABLE table_name_83 (annual_generation__average_gwh_ VARCHAR, name VARCHAR) | SELECT annual_generation__average_gwh_ FROM table_name_83 WHERE name = "kawerau (bope)" |
51,688 | <question>: What is the Name of the power station with a Capacity of 25 MW? <context>: CREATE TABLE table_name_9 (name VARCHAR, capacity__mw_ VARCHAR) | SELECT name FROM table_name_9 WHERE capacity__mw_ = 25 |
51,689 | <question>: What is the Name of the power station in the Field of Mokai? <context>: CREATE TABLE table_name_22 (name VARCHAR, field VARCHAR) | SELECT name FROM table_name_22 WHERE field = "mokai" |
51,690 | <question>: How many goals were scored in 2004 when the gp/gs was "did not play"? <context>: CREATE TABLE table_name_25 (goals VARCHAR, gp_gs VARCHAR, year VARCHAR) | SELECT goals FROM table_name_25 WHERE gp_gs = "did not play" AND year = "2004" |
51,691 | <question>: How many assists were there when the total points was 2? <context>: CREATE TABLE table_name_36 (assists VARCHAR, total_points VARCHAR) | SELECT assists FROM table_name_36 WHERE total_points = "2" |
51,692 | <question>: What was the total number of points when there were 7 assists? <context>: CREATE TABLE table_name_98 (total_points VARCHAR, assists VARCHAR) | SELECT total_points FROM table_name_98 WHERE assists = "7" |
51,693 | <question>: What was the gp/gs when the assists was 1? <context>: CREATE TABLE table_name_4 (gp_gs VARCHAR, assists VARCHAR) | SELECT gp_gs FROM table_name_4 WHERE assists = "1" |
51,694 | <question>: what was the gp/gs in 2003 when the total points was "did not play"? <context>: CREATE TABLE table_name_96 (gp_gs VARCHAR, total_points VARCHAR, year VARCHAR) | SELECT gp_gs FROM table_name_96 WHERE total_points = "did not play" AND year = "2003" |
51,695 | <question>: What was the outcome for Jan Pisecky and his partner? <context>: CREATE TABLE table_name_32 (outcome VARCHAR, partner VARCHAR) | SELECT outcome FROM table_name_32 WHERE partner = "jan pisecky" |
51,696 | <question>: What player weight 235? <context>: CREATE TABLE table_name_29 (player VARCHAR, weight VARCHAR) | SELECT player FROM table_name_29 WHERE weight = 235 |
51,697 | <question>: What is the height of the F who weighs less than 195? <context>: CREATE TABLE table_name_82 (height VARCHAR, pos VARCHAR, weight VARCHAR) | SELECT height FROM table_name_82 WHERE pos = "f" AND weight < 195 |
51,698 | <question>: What team does F Trey Gilder play for? <context>: CREATE TABLE table_name_63 (team VARCHAR, pos VARCHAR, player VARCHAR) | SELECT team FROM table_name_63 WHERE pos = "f" AND player = "trey gilder" |
51,699 | <question>: What player plays for the Dakota Wizards? <context>: CREATE TABLE table_name_73 (player VARCHAR, team VARCHAR) | SELECT player FROM table_name_73 WHERE team = "dakota wizards" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.