Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
56,800 | <question>: What is the minimum hydroelectricity with a less than 116.4 total, and a greater than 18.637 solar? <context>: CREATE TABLE table_name_51 (hydroelectricity INTEGER, total VARCHAR, solar VARCHAR) | SELECT MIN(hydroelectricity) FROM table_name_51 WHERE total < 116.4 AND solar > 18.637 |
56,801 | <question>: In 2011 with a less than 13.333 wind power what is the mean hydroelectricity? <context>: CREATE TABLE table_name_73 (hydroelectricity INTEGER, year VARCHAR, wind_power VARCHAR) | SELECT AVG(hydroelectricity) FROM table_name_73 WHERE year > 2011 AND wind_power < 13.333 |
56,802 | <question>: What country has a less than 136.1 total and a 0.02 solar? <context>: CREATE TABLE table_name_38 (country VARCHAR, total VARCHAR, solar VARCHAR) | SELECT country FROM table_name_38 WHERE total < 136.1 AND solar = 0.02 |
56,803 | <question>: Home for away of hispano? <context>: CREATE TABLE table_name_4 (home VARCHAR, away VARCHAR) | SELECT home FROM table_name_4 WHERE away = "hispano" |
56,804 | <question>: Which Position has a Pick # smaller than 23, and a Player of garrett sutherland? <context>: CREATE TABLE table_name_12 (position VARCHAR, pick__number VARCHAR, player VARCHAR) | SELECT position FROM table_name_12 WHERE pick__number < 23 AND player = "garrett sutherland" |
56,805 | <question>: Name the CFL Team which has a Player of chris evraire? <context>: CREATE TABLE table_name_53 (cfl_team VARCHAR, player VARCHAR) | SELECT cfl_team FROM table_name_53 WHERE player = "chris evraire" |
56,806 | <question>: Name The Player who has a Pick # of 27? <context>: CREATE TABLE table_name_13 (player VARCHAR, pick__number VARCHAR) | SELECT player FROM table_name_13 WHERE pick__number = 27 |
56,807 | <question>: Name the Player who has a CFL Team of toronto? <context>: CREATE TABLE table_name_24 (player VARCHAR, cfl_team VARCHAR) | SELECT player FROM table_name_24 WHERE cfl_team = "toronto" |
56,808 | <question>: Name the Pick # which has a Position of lb, and a CFL Team of winnipeg? <context>: CREATE TABLE table_name_74 (pick__number INTEGER, position VARCHAR, cfl_team VARCHAR) | SELECT SUM(pick__number) FROM table_name_74 WHERE position = "lb" AND cfl_team = "winnipeg" |
56,809 | <question>: WHAT IS THE SUM OF ATTENDANCE FOR DETROIT, WHEN POINTS ARE LARGER THAN 33? <context>: CREATE TABLE table_name_26 (attendance INTEGER, home VARCHAR, points VARCHAR) | SELECT SUM(attendance) FROM table_name_26 WHERE home = "detroit" AND points > 33 |
56,810 | <question>: What was the location and attendance for the game on December 12? <context>: CREATE TABLE table_name_68 (location_attendance VARCHAR, date VARCHAR) | SELECT location_attendance FROM table_name_68 WHERE date = "december 12" |
56,811 | <question>: What is the lowest Touchdowns, when Player is Andrew Glover, and when Yards is greater than 281? <context>: CREATE TABLE table_name_14 (touchdowns INTEGER, player VARCHAR, yards VARCHAR) | SELECT MIN(touchdowns) FROM table_name_14 WHERE player = "andrew glover" AND yards > 281 |
56,812 | <question>: What is the average Touchdowns, when Yards is less than 293, and when Long is greater than 39? <context>: CREATE TABLE table_name_7 (touchdowns INTEGER, yards VARCHAR, long VARCHAR) | SELECT AVG(touchdowns) FROM table_name_7 WHERE yards < 293 AND long > 39 |
56,813 | <question>: What is the total number of Attempts, when Touchdowns is 6? <context>: CREATE TABLE table_name_61 (attempts VARCHAR, touchdowns VARCHAR) | SELECT COUNT(attempts) FROM table_name_61 WHERE touchdowns = 6 |
56,814 | <question>: What is Venue, when Extra is Pentathlon? <context>: CREATE TABLE table_name_39 (venue VARCHAR, extra VARCHAR) | SELECT venue FROM table_name_39 WHERE extra = "pentathlon" |
56,815 | <question>: What is the highest Year, when Extra is Pentathlon? <context>: CREATE TABLE table_name_33 (year INTEGER, extra VARCHAR) | SELECT MAX(year) FROM table_name_33 WHERE extra = "pentathlon" |
56,816 | <question>: What is the sum of Year, when Result is 9th? <context>: CREATE TABLE table_name_10 (year INTEGER, result VARCHAR) | SELECT SUM(year) FROM table_name_10 WHERE result = "9th" |
56,817 | <question>: What is Tournament, when Result is 2nd, and when Year is 2009? <context>: CREATE TABLE table_name_74 (tournament VARCHAR, result VARCHAR, year VARCHAR) | SELECT tournament FROM table_name_74 WHERE result = "2nd" AND year = 2009 |
56,818 | <question>: What is Result, when Venue is Götzis , Austria? <context>: CREATE TABLE table_name_77 (result VARCHAR, venue VARCHAR) | SELECT result FROM table_name_77 WHERE venue = "götzis , austria" |
56,819 | <question>: What label does Germany have? <context>: CREATE TABLE table_name_24 (label VARCHAR, region VARCHAR) | SELECT label FROM table_name_24 WHERE region = "germany" |
56,820 | <question>: What region has the Chrysalis label, and a Catalog of chr 1047? <context>: CREATE TABLE table_name_13 (region VARCHAR, label VARCHAR, catalog VARCHAR) | SELECT region FROM table_name_13 WHERE label = "chrysalis" AND catalog = "chr 1047" |
56,821 | <question>: When did the United Kingdom format a stereo LP? <context>: CREATE TABLE table_name_29 (date VARCHAR, region VARCHAR, format VARCHAR) | SELECT date FROM table_name_29 WHERE region = "united kingdom" AND format = "stereo lp" |
56,822 | <question>: What region goes along with January 1974? <context>: CREATE TABLE table_name_93 (region VARCHAR, date VARCHAR) | SELECT region FROM table_name_93 WHERE date = "january 1974" |
56,823 | <question>: What is the label from 1973 that has a catalog number of l 35023? <context>: CREATE TABLE table_name_98 (label VARCHAR, date VARCHAR, catalog VARCHAR) | SELECT label FROM table_name_98 WHERE date = "1973" AND catalog = "l 35023" |
56,824 | <question>: How many wins did the driver with 1 second and more than 12 races have? <context>: CREATE TABLE table_name_98 (wins VARCHAR, second VARCHAR, races VARCHAR) | SELECT wins FROM table_name_98 WHERE second = "1" AND races > 12 |
56,825 | <question>: What is the lowest Loss number when the Gain is less than 61 and the Avg/G is 6? <context>: CREATE TABLE table_name_94 (loss INTEGER, gain VARCHAR, avg_g VARCHAR) | SELECT MIN(loss) FROM table_name_94 WHERE gain < 61 AND avg_g = 6 |
56,826 | <question>: What is the sum of Avg/G for Dan Dierking when the Loss is 0 and the Gain is more than 34? <context>: CREATE TABLE table_name_95 (avg_g INTEGER, gain VARCHAR, loss VARCHAR, name VARCHAR) | SELECT SUM(avg_g) FROM table_name_95 WHERE loss = 0 AND name = "dan dierking" AND gain > 34 |
56,827 | <question>: Who was the visiting team on April 6? <context>: CREATE TABLE table_name_27 (visitor VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_27 WHERE date = "april 6" |
56,828 | <question>: What was the date of the game that led to a 4-3 record? <context>: CREATE TABLE table_name_64 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_64 WHERE record = "4-3" |
56,829 | <question>: Who was the home team in the game that led to a 2-3 series record? <context>: CREATE TABLE table_name_10 (home VARCHAR, record VARCHAR) | SELECT home FROM table_name_10 WHERE record = "2-3" |
56,830 | <question>: Which home team had a score of 100-86? <context>: CREATE TABLE table_name_29 (home_team VARCHAR, score VARCHAR) | SELECT home_team FROM table_name_29 WHERE score = "100-86" |
56,831 | <question>: Which report corresponds to the State Sports Centre? <context>: CREATE TABLE table_name_89 (report VARCHAR, venue VARCHAR) | SELECT report FROM table_name_89 WHERE venue = "state sports centre" |
56,832 | <question>: Who was the away team at the Win Entertainment Centre? <context>: CREATE TABLE table_name_31 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_31 WHERE venue = "win entertainment centre" |
56,833 | <question>: Can you tell me the total number of Gain that has the Name of williams, jonathan, and the Loss larger than 3? <context>: CREATE TABLE table_name_55 (gain VARCHAR, name VARCHAR, loss VARCHAR) | SELECT COUNT(gain) FROM table_name_55 WHERE name = "williams, jonathan" AND loss > 3 |
56,834 | <question>: Can you tell me the sum of Loss that has the Gain of 2646? <context>: CREATE TABLE table_name_82 (loss INTEGER, gain VARCHAR) | SELECT SUM(loss) FROM table_name_82 WHERE gain = 2646 |
56,835 | <question>: Can you tell me the sum of Gain that has the Name of kass, rob, and the Avg/g smaller than 1.9? <context>: CREATE TABLE table_name_75 (gain INTEGER, name VARCHAR, avg_g VARCHAR) | SELECT SUM(gain) FROM table_name_75 WHERE name = "kass, rob" AND avg_g < 1.9 |
56,836 | <question>: Can you tell me the lowest Long that has the Gain of 20, and the Loss smaller than 0? <context>: CREATE TABLE table_name_19 (long INTEGER, gain VARCHAR, loss VARCHAR) | SELECT MIN(long) FROM table_name_19 WHERE gain = 20 AND loss < 0 |
56,837 | <question>: What is the highest ERP W with a w216bo call sign? <context>: CREATE TABLE table_name_10 (erp_w INTEGER, call_sign VARCHAR) | SELECT MAX(erp_w) FROM table_name_10 WHERE call_sign = "w216bo" |
56,838 | <question>: What kind of Crowd has a Ground of subiaco oval? <context>: CREATE TABLE table_name_41 (crowd INTEGER, ground VARCHAR) | SELECT SUM(crowd) FROM table_name_41 WHERE ground = "subiaco oval" |
56,839 | <question>: How many Crowd that has a Date on saturday, 29 january and an Away team of collingwood? <context>: CREATE TABLE table_name_67 (crowd INTEGER, date VARCHAR, away_team VARCHAR) | SELECT AVG(crowd) FROM table_name_67 WHERE date = "saturday, 29 january" AND away_team = "collingwood" |
56,840 | <question>: On which date after week 11 was the opponent the arizona cardinals? <context>: CREATE TABLE table_name_88 (date VARCHAR, week VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_88 WHERE week > 11 AND opponent = "arizona cardinals" |
56,841 | <question>: What was the lead with an alternate of li dongyan? <context>: CREATE TABLE table_name_78 (lead VARCHAR, alternate VARCHAR) | SELECT lead FROM table_name_78 WHERE alternate = "li dongyan" |
56,842 | <question>: Which lead had a season of 2007-08? <context>: CREATE TABLE table_name_18 (lead VARCHAR, season VARCHAR) | SELECT lead FROM table_name_18 WHERE season = "2007-08" |
56,843 | <question>: Which lead had a season of 2009-10? <context>: CREATE TABLE table_name_40 (lead VARCHAR, season VARCHAR) | SELECT lead FROM table_name_40 WHERE season = "2009-10" |
56,844 | <question>: Which Name has a Yes Saturday and a Yes Evening? <context>: CREATE TABLE table_name_49 (name VARCHAR, saturday VARCHAR, evening VARCHAR) | SELECT name FROM table_name_49 WHERE saturday = "yes" AND evening = "yes" |
56,845 | <question>: Name the Daytime which has Saturday of yes and a Name of exmouth? <context>: CREATE TABLE table_name_5 (daytime VARCHAR, saturday VARCHAR, name VARCHAR) | SELECT daytime FROM table_name_5 WHERE saturday = "yes" AND name = "exmouth" |
56,846 | <question>: Name the Evening that has a Sunday of no, and a Name of s. vidal/plant express? <context>: CREATE TABLE table_name_18 (evening VARCHAR, sunday VARCHAR, name VARCHAR) | SELECT evening FROM table_name_18 WHERE sunday = "no" AND name = "s. vidal/plant express" |
56,847 | <question>: Name the Daytime which has a Name of exmouth? <context>: CREATE TABLE table_name_22 (daytime VARCHAR, name VARCHAR) | SELECT daytime FROM table_name_22 WHERE name = "exmouth" |
56,848 | <question>: Which Saturday has a Sunday of yes and a Evening of yes? <context>: CREATE TABLE table_name_80 (saturday VARCHAR, sunday VARCHAR, evening VARCHAR) | SELECT saturday FROM table_name_80 WHERE sunday = "yes" AND evening = "yes" |
56,849 | <question>: Which Saturday has a Name of confederation? <context>: CREATE TABLE table_name_68 (saturday VARCHAR, name VARCHAR) | SELECT saturday FROM table_name_68 WHERE name = "confederation" |
56,850 | <question>: What was the GP-GS for the 2009 season? <context>: CREATE TABLE table_name_52 (gp_gs VARCHAR, season VARCHAR) | SELECT gp_gs FROM table_name_52 WHERE season = "2009" |
56,851 | <question>: Which GP-GS had a long of 17 and a season of total? <context>: CREATE TABLE table_name_13 (gp_gs VARCHAR, long VARCHAR, season VARCHAR) | SELECT gp_gs FROM table_name_13 WHERE long = "17" AND season = "total" |
56,852 | <question>: Which Long has redshirt for its Avg/G? <context>: CREATE TABLE table_name_97 (long VARCHAR, avg_g VARCHAR) | SELECT long FROM table_name_97 WHERE avg_g = "redshirt" |
56,853 | <question>: What was the Av/G of the 2009 season? <context>: CREATE TABLE table_name_74 (avg_g VARCHAR, season VARCHAR) | SELECT avg_g FROM table_name_74 WHERE season = "2009" |
56,854 | <question>: For the Avg/G of 5.9, what was the long? <context>: CREATE TABLE table_name_56 (long VARCHAR, avg_g VARCHAR) | SELECT long FROM table_name_56 WHERE avg_g = "5.9" |
56,855 | <question>: What is the Location Attendance, when High Points is "D. McKey (24)", and when Score is "L 96-105"? <context>: CREATE TABLE table_name_55 (location_attendance VARCHAR, high_points VARCHAR, score VARCHAR) | SELECT location_attendance FROM table_name_55 WHERE high_points = "d. mckey (24)" AND score = "l 96-105" |
56,856 | <question>: What is High Rebounds, when Game is greater than 33, and when Score is "W 132-101"? <context>: CREATE TABLE table_name_44 (high_rebounds VARCHAR, game VARCHAR, score VARCHAR) | SELECT high_rebounds FROM table_name_44 WHERE game > 33 AND score = "w 132-101" |
56,857 | <question>: What is Team, when Game is "32"? <context>: CREATE TABLE table_name_96 (team VARCHAR, game VARCHAR) | SELECT team FROM table_name_96 WHERE game = 32 |
56,858 | <question>: What is the sum of Game, when High Points is "D. McKey (24)", and when Team is "@ Dallas Mavericks"? <context>: CREATE TABLE table_name_35 (game INTEGER, high_points VARCHAR, team VARCHAR) | SELECT SUM(game) FROM table_name_35 WHERE high_points = "d. mckey (24)" AND team = "@ dallas mavericks" |
56,859 | <question>: Which Tournament has Opponents of marc lópez santiago ventura? <context>: CREATE TABLE table_name_16 (tournament VARCHAR, opponents VARCHAR) | SELECT tournament FROM table_name_16 WHERE opponents = "marc lópez santiago ventura" |
56,860 | <question>: Which Opponents have a Partnering of alessandro motti, and a Date of 12 september 2005? <context>: CREATE TABLE table_name_60 (opponents VARCHAR, partnering VARCHAR, date VARCHAR) | SELECT opponents FROM table_name_60 WHERE partnering = "alessandro motti" AND date = "12 september 2005" |
56,861 | <question>: Which Opponents have a Score of 6–4, 6–3? <context>: CREATE TABLE table_name_59 (opponents VARCHAR, score VARCHAR) | SELECT opponents FROM table_name_59 WHERE score = "6–4, 6–3" |
56,862 | <question>: Which Tournament has a Surface of hard, and a Date of 24 september 2011? <context>: CREATE TABLE table_name_40 (tournament VARCHAR, surface VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_40 WHERE surface = "hard" AND date = "24 september 2011" |
56,863 | <question>: How many rounds did the match at GCF: Strength and Honor last? <context>: CREATE TABLE table_name_49 (round INTEGER, event VARCHAR) | SELECT AVG(round) FROM table_name_49 WHERE event = "gcf: strength and honor" |
56,864 | <question>: What is the total population for Saint-Antoine with an area squared of 6.43? <context>: CREATE TABLE table_name_60 (population INTEGER, official_name VARCHAR, area_km_2 VARCHAR) | SELECT SUM(population) FROM table_name_60 WHERE official_name = "saint-antoine" AND area_km_2 > 6.43 |
56,865 | <question>: What is the current status of a location with a census ranking of 1,769 of 5,008 and population greater than 930? <context>: CREATE TABLE table_name_21 (status VARCHAR, population VARCHAR, census_ranking VARCHAR) | SELECT status FROM table_name_21 WHERE population > 930 AND census_ranking = "1,769 of 5,008" |
56,866 | <question>: How many games in February have a record of 40-15-5? <context>: CREATE TABLE table_name_8 (february INTEGER, record VARCHAR) | SELECT SUM(february) FROM table_name_8 WHERE record = "40-15-5" |
56,867 | <question>: What is the lowest numbered game with an opponent of Minnesota North Stars earlier than February 25? <context>: CREATE TABLE table_name_95 (game INTEGER, opponent VARCHAR, february VARCHAR) | SELECT MIN(game) FROM table_name_95 WHERE opponent = "minnesota north stars" AND february < 25 |
56,868 | <question>: How many games have the New York Islanders as an opponent before February 7? <context>: CREATE TABLE table_name_63 (game INTEGER, opponent VARCHAR, february VARCHAR) | SELECT SUM(game) FROM table_name_63 WHERE opponent = "new york islanders" AND february < 7 |
56,869 | <question>: What is the earliest February date with a record of 37-13-4 in a game earlier than 54? <context>: CREATE TABLE table_name_52 (february INTEGER, record VARCHAR, game VARCHAR) | SELECT MIN(february) FROM table_name_52 WHERE record = "37-13-4" AND game < 54 |
56,870 | <question>: What is the date of the game when the record is 2-0? <context>: CREATE TABLE table_name_53 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_53 WHERE record = "2-0" |
56,871 | <question>: What is the average game number when the record is 4-1? <context>: CREATE TABLE table_name_18 (game INTEGER, record VARCHAR) | SELECT AVG(game) FROM table_name_18 WHERE record = "4-1" |
56,872 | <question>: What is the location and attendance of game 1? <context>: CREATE TABLE table_name_95 (location_attendance VARCHAR, game VARCHAR) | SELECT location_attendance FROM table_name_95 WHERE game = 1 |
56,873 | <question>: What is the date of the game located in Madison Square Garden, when the team is Seattle and the game number is less than 6? <context>: CREATE TABLE table_name_36 (date VARCHAR, team VARCHAR, location_attendance VARCHAR, game VARCHAR) | SELECT date FROM table_name_36 WHERE location_attendance = "madison square garden" AND game < 6 AND team = "seattle" |
56,874 | <question>: What is the location and attendance of the game when the score is 125-100? <context>: CREATE TABLE table_name_89 (location_attendance VARCHAR, score VARCHAR) | SELECT location_attendance FROM table_name_89 WHERE score = "125-100" |
56,875 | <question>: Who was the winning driver in 1956? <context>: CREATE TABLE table_name_93 (winning_driver VARCHAR, year VARCHAR) | SELECT winning_driver FROM table_name_93 WHERE year = "1956" |
56,876 | <question>: Which circuit did Peter Whitehead win? <context>: CREATE TABLE table_name_43 (circuit VARCHAR, winning_driver VARCHAR) | SELECT circuit FROM table_name_43 WHERE winning_driver = "peter whitehead" |
56,877 | <question>: What report did Jack Brabham win? <context>: CREATE TABLE table_name_21 (report VARCHAR, winning_driver VARCHAR) | SELECT report FROM table_name_21 WHERE winning_driver = "jack brabham" |
56,878 | <question>: What year did Ferrari win the Kyalami circuit? <context>: CREATE TABLE table_name_16 (year VARCHAR, circuit VARCHAR, winning_constructor VARCHAR) | SELECT year FROM table_name_16 WHERE circuit = "kyalami" AND winning_constructor = "ferrari" |
56,879 | <question>: Which circuit did Jim Clark win in 1962? <context>: CREATE TABLE table_name_38 (circuit VARCHAR, winning_driver VARCHAR, year VARCHAR) | SELECT circuit FROM table_name_38 WHERE winning_driver = "jim clark" AND year = "1962" |
56,880 | <question>: On what Date was the 2011 LG Cup Competittion? <context>: CREATE TABLE table_name_46 (date VARCHAR, competition VARCHAR) | SELECT date FROM table_name_46 WHERE competition = "2011 lg cup" |
56,881 | <question>: What is the pick for the player with 2 years in the NBA and who plays for the Utah Jazz? <context>: CREATE TABLE table_name_68 (pick VARCHAR, previous_team VARCHAR, nba_years_ VARCHAR, a_ VARCHAR) | SELECT pick FROM table_name_68 WHERE nba_years_[a_] = "2" AND previous_team = "utah jazz" |
56,882 | <question>: What was the final score for the game in which Carmelo Anthony (26) was the high points scorer? <context>: CREATE TABLE table_name_78 (score VARCHAR, high_points VARCHAR) | SELECT score FROM table_name_78 WHERE high_points = "carmelo anthony (26)" |
56,883 | <question>: In which game number was Chris Andersen (12) the high rebounds scorer? <context>: CREATE TABLE table_name_48 (game VARCHAR, high_rebounds VARCHAR) | SELECT game FROM table_name_48 WHERE high_rebounds = "chris andersen (12)" |
56,884 | <question>: What was the final score for the game played against @ Milwaukee? <context>: CREATE TABLE table_name_39 (score VARCHAR, team VARCHAR) | SELECT score FROM table_name_39 WHERE team = "@ milwaukee" |
56,885 | <question>: For the game played against the L.A. Lakers, where was the match played and what was the attendance level? <context>: CREATE TABLE table_name_80 (location_attendance VARCHAR, team VARCHAR) | SELECT location_attendance FROM table_name_80 WHERE team = "l.a. lakers" |
56,886 | <question>: What is Name, when Laps is "50", when Grid is greater than 9, when Team is "Jim Beam Racing", and when Time/Retired is "+ 18.0s"? <context>: CREATE TABLE table_name_35 (name VARCHAR, time_retired VARCHAR, team VARCHAR, laps VARCHAR, grid VARCHAR) | SELECT name FROM table_name_35 WHERE laps = 50 AND grid > 9 AND team = "jim beam racing" AND time_retired = "+ 18.0s" |
56,887 | <question>: What is the lowest Laps, when Grid is greater than 7, and when Name is "Fabian Coulthard"? <context>: CREATE TABLE table_name_83 (laps INTEGER, grid VARCHAR, name VARCHAR) | SELECT MIN(laps) FROM table_name_83 WHERE grid > 7 AND name = "fabian coulthard" |
56,888 | <question>: What is Time/Retired, when Laps is less than 49, and when Name is "Michael Caruso"? <context>: CREATE TABLE table_name_65 (time_retired VARCHAR, laps VARCHAR, name VARCHAR) | SELECT time_retired FROM table_name_65 WHERE laps < 49 AND name = "michael caruso" |
56,889 | <question>: What is Time/Retired, when Team is "Team Vodafone", and when Grid is greater than 4? <context>: CREATE TABLE table_name_16 (time_retired VARCHAR, team VARCHAR, grid VARCHAR) | SELECT time_retired FROM table_name_16 WHERE team = "team vodafone" AND grid > 4 |
56,890 | <question>: What is the draw number of the Artist Dav Mcnamara and a place bigger than 4? <context>: CREATE TABLE table_name_75 (draw VARCHAR, artist VARCHAR, place VARCHAR) | SELECT COUNT(draw) FROM table_name_75 WHERE artist = "dav mcnamara" AND place > 4 |
56,891 | <question>: What is the stadium name that has 144 as the runs? <context>: CREATE TABLE table_name_86 (stadium VARCHAR, runs VARCHAR) | SELECT stadium FROM table_name_86 WHERE runs = "144" |
56,892 | <question>: For what year was 100* runs happen? <context>: CREATE TABLE table_name_45 (year VARCHAR, runs VARCHAR) | SELECT year FROM table_name_45 WHERE runs = "100*" |
56,893 | <question>: How many runs happened in 2013? <context>: CREATE TABLE table_name_18 (runs VARCHAR, year VARCHAR) | SELECT runs FROM table_name_18 WHERE year = "2013" |
56,894 | <question>: With 42 as the match what are the runs? <context>: CREATE TABLE table_name_42 (runs VARCHAR, match VARCHAR) | SELECT runs FROM table_name_42 WHERE match = "42" |
56,895 | <question>: In 2009 with 100* runs, what is the match? <context>: CREATE TABLE table_name_8 (match VARCHAR, year VARCHAR, runs VARCHAR) | SELECT match FROM table_name_8 WHERE year = "2009" AND runs = "100*" |
56,896 | <question>: When the game was played in the stadium called stadium what was the match? <context>: CREATE TABLE table_name_90 (match VARCHAR) | SELECT match FROM table_name_90 WHERE "stadium" = "stadium" |
56,897 | <question>: What is the 2nd round with a score of 3 - 3, and a team 1 fc gueugnon (d2)? <context>: CREATE TABLE table_name_86 (score VARCHAR, team_1 VARCHAR) | SELECT 2 AS nd_round FROM table_name_86 WHERE score = "3 - 3" AND team_1 = "fc gueugnon (d2)" |
56,898 | <question>: What is the 2nd round with a score of 3 - 3, and a team 2 fc lorient (d2)? <context>: CREATE TABLE table_name_60 (score VARCHAR, team_2 VARCHAR) | SELECT 2 AS nd_round FROM table_name_60 WHERE score = "3 - 3" AND team_2 = "fc lorient (d2)" |
56,899 | <question>: What is the 1st round with a team 2 paris sg (d1)? <context>: CREATE TABLE table_name_91 (team_2 VARCHAR) | SELECT 1 AS st_round FROM table_name_91 WHERE team_2 = "paris sg (d1)" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.