Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
57,700 | <question>: What was the Attendance on Week 10? <context>: CREATE TABLE table_name_34 (attendance VARCHAR, week VARCHAR) | SELECT attendance FROM table_name_34 WHERE week = 10 |
57,701 | <question>: How many Points have a Home of pittsburgh, and a Score of 1–7? <context>: CREATE TABLE table_name_11 (points INTEGER, home VARCHAR, score VARCHAR) | SELECT SUM(points) FROM table_name_11 WHERE home = "pittsburgh" AND score = "1–7" |
57,702 | <question>: Which Date has a Record of 7–7–1? <context>: CREATE TABLE table_name_49 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_49 WHERE record = "7–7–1" |
57,703 | <question>: Which Date has a Record of 11–10–2? <context>: CREATE TABLE table_name_92 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_92 WHERE record = "11–10–2" |
57,704 | <question>: Which position had 3 podiums and F/laps of 4? <context>: CREATE TABLE table_name_14 (position VARCHAR, podiums VARCHAR, f_laps VARCHAR) | SELECT position FROM table_name_14 WHERE podiums = "3" AND f_laps = "4" |
57,705 | <question>: What is the number of races associated with Team ASM and 0 poles? <context>: CREATE TABLE table_name_19 (races VARCHAR, poles VARCHAR, team VARCHAR) | SELECT races FROM table_name_19 WHERE poles = "0" AND team = "asm" |
57,706 | <question>: Which team had 1 race, 1 F/lap and in the series 24 hours of Nurburgring? <context>: CREATE TABLE table_name_44 (team VARCHAR, series VARCHAR, races VARCHAR, f_laps VARCHAR) | SELECT team FROM table_name_44 WHERE races = "1" AND f_laps = "1" AND series = "24 hours of nurburgring" |
57,707 | <question>: What is the number of podiums associated with 4 wins? <context>: CREATE TABLE table_name_89 (podiums VARCHAR, wins VARCHAR) | SELECT podiums FROM table_name_89 WHERE wins = "4" |
57,708 | <question>: What is the number of races associated with 7 podiums and a position of 4th? <context>: CREATE TABLE table_name_93 (races VARCHAR, position VARCHAR, podiums VARCHAR) | SELECT races FROM table_name_93 WHERE position = "4th" AND podiums = "7" |
57,709 | <question>: What is the F/Laps value associated with a position of 3rd? <context>: CREATE TABLE table_name_97 (f_laps VARCHAR, position VARCHAR) | SELECT f_laps FROM table_name_97 WHERE position = "3rd" |
57,710 | <question>: Can you tell me the Opponent that has the Time of 0:20? <context>: CREATE TABLE table_name_72 (opponent VARCHAR, time VARCHAR) | SELECT opponent FROM table_name_72 WHERE time = "0:20" |
57,711 | <question>: Can you tell me the Time that has the Opponent of phil baroni? <context>: CREATE TABLE table_name_75 (time VARCHAR, opponent VARCHAR) | SELECT time FROM table_name_75 WHERE opponent = "phil baroni" |
57,712 | <question>: Can you tell me the lowest Round that has the Location of indiana, united states, and the Method of submission (guillotine choke)? <context>: CREATE TABLE table_name_6 (round INTEGER, location VARCHAR, method VARCHAR) | SELECT MIN(round) FROM table_name_6 WHERE location = "indiana, united states" AND method = "submission (guillotine choke)" |
57,713 | <question>: When was la vista built? <context>: CREATE TABLE table_name_9 (built VARCHAR, location VARCHAR) | SELECT built FROM table_name_9 WHERE location = "la vista" |
57,714 | <question>: When was the sargent bridge built? <context>: CREATE TABLE table_name_61 (built VARCHAR, name VARCHAR) | SELECT built FROM table_name_61 WHERE name = "sargent bridge" |
57,715 | <question>: What's the location for the country of platte? <context>: CREATE TABLE table_name_64 (location VARCHAR, county VARCHAR) | SELECT location FROM table_name_64 WHERE county = "platte" |
57,716 | <question>: what is the listing date for nuckolls county? <context>: CREATE TABLE table_name_79 (listed VARCHAR, county VARCHAR) | SELECT listed FROM table_name_79 WHERE county = "nuckolls" |
57,717 | <question>: what's the listing date for the verdigris creek bridge in royal of antelope county? <context>: CREATE TABLE table_name_83 (listed VARCHAR, name VARCHAR, county VARCHAR, location VARCHAR) | SELECT listed FROM table_name_83 WHERE county = "antelope" AND location = "royal" AND name = "verdigris creek bridge" |
57,718 | <question>: what's the county name for the republican river bridge listed on 1992-06-29? <context>: CREATE TABLE table_name_36 (county VARCHAR, listed VARCHAR, name VARCHAR) | SELECT county FROM table_name_36 WHERE listed = "1992-06-29" AND name = "republican river bridge" |
57,719 | <question>: what is the to par when the place is t10 and the score is 72-74-71-69=286? <context>: CREATE TABLE table_name_26 (to_par VARCHAR, place VARCHAR, score VARCHAR) | SELECT to_par FROM table_name_26 WHERE place = "t10" AND score = 72 - 74 - 71 - 69 = 286 |
57,720 | <question>: what is the to par when the player is hale irwin? <context>: CREATE TABLE table_name_80 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_80 WHERE player = "hale irwin" |
57,721 | <question>: what is the to par for Dave hill? <context>: CREATE TABLE table_name_52 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_52 WHERE player = "dave hill" |
57,722 | <question>: what is the place when the score is 68-67-73-68=276? <context>: CREATE TABLE table_name_20 (place VARCHAR, score VARCHAR) | SELECT place FROM table_name_20 WHERE score = 68 - 67 - 73 - 68 = 276 |
57,723 | <question>: Can you tell me the Date that has the Week smaller than 13, and the Opponent of green bay packers? <context>: CREATE TABLE table_name_16 (date VARCHAR, week VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_16 WHERE week < 13 AND opponent = "green bay packers" |
57,724 | <question>: Can you tell me the average Attendance that has the Opponent of new orleans saints, and the Week larger than 12? <context>: CREATE TABLE table_name_45 (attendance INTEGER, opponent VARCHAR, week VARCHAR) | SELECT AVG(attendance) FROM table_name_45 WHERE opponent = "new orleans saints" AND week > 12 |
57,725 | <question>: Can you tell me the Attendance that has the Opponent of new york giants? <context>: CREATE TABLE table_name_70 (attendance VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_70 WHERE opponent = "new york giants" |
57,726 | <question>: What is the density (hab/km²) with a population censo 2007(hab) of 336.293*? <context>: CREATE TABLE table_name_4 (density__hab__km²__ VARCHAR, population_censo_2007_hab_ VARCHAR) | SELECT density__hab__km²__ FROM table_name_4 WHERE population_censo_2007_hab_ = "336.293*" |
57,727 | <question>: What is the under 1 year-old Censo 2007(hab) population with a population censo 2007(hab) of 112.054*? <context>: CREATE TABLE table_name_91 (population_under_1_year_old_censo_2007_hab_ VARCHAR, population_censo_2007_hab_ VARCHAR) | SELECT population_under_1_year_old_censo_2007_hab_ FROM table_name_91 WHERE population_censo_2007_hab_ = "112.054*" |
57,728 | <question>: What is the density (hab/km²) with a population under 1 year-old censo 2007(hab) of * data from the census taken by the Inei? <context>: CREATE TABLE table_name_21 (density__hab__km²__ VARCHAR, population_under_1_year_old_censo_2007_hab_ VARCHAR) | SELECT density__hab__km²__ FROM table_name_21 WHERE population_under_1_year_old_censo_2007_hab_ = "* data from the census taken by the inei" |
57,729 | <question>: What is the elevation msnm for a population censo 2007(hab) of 77.392*? <context>: CREATE TABLE table_name_59 (elevation_msnm VARCHAR, population_censo_2007_hab_ VARCHAR) | SELECT elevation_msnm FROM table_name_59 WHERE population_censo_2007_hab_ = "77.392*" |
57,730 | <question>: What's the report about townsville crocodiles as an away team? <context>: CREATE TABLE table_name_35 (report VARCHAR, away_team VARCHAR) | SELECT report FROM table_name_35 WHERE away_team = "townsville crocodiles" |
57,731 | <question>: What's the record of game 67? <context>: CREATE TABLE table_name_42 (record VARCHAR, game VARCHAR) | SELECT record FROM table_name_42 WHERE game = 67 |
57,732 | <question>: What's the score of the game against the Boston Bruins and after game 68? <context>: CREATE TABLE table_name_62 (score VARCHAR, game VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_62 WHERE game > 68 AND opponent = "boston bruins" |
57,733 | <question>: what is the natural change (per 1000) when the crude death rate (per 1000) is 10? <context>: CREATE TABLE table_name_61 (natural_change__per_1000_ VARCHAR, crude_death_rate__per_1000_ VARCHAR) | SELECT natural_change__per_1000_ FROM table_name_61 WHERE crude_death_rate__per_1000_ = 10 |
57,734 | <question>: what is the crude birth rate (per 1000) when the live births 1 is 356 013? <context>: CREATE TABLE table_name_72 (crude_birth_rate__per_1000_ INTEGER, live_births_1 VARCHAR) | SELECT SUM(crude_birth_rate__per_1000_) FROM table_name_72 WHERE live_births_1 = "356 013" |
57,735 | <question>: what is the natural change (per 1000) when the live births 1 is 278 977? <context>: CREATE TABLE table_name_73 (natural_change__per_1000_ VARCHAR, live_births_1 VARCHAR) | SELECT natural_change__per_1000_ FROM table_name_73 WHERE live_births_1 = "278 977" |
57,736 | <question>: Which Player has a To par of e, and a Country of united states? <context>: CREATE TABLE table_name_68 (player VARCHAR, to_par VARCHAR, country VARCHAR) | SELECT player FROM table_name_68 WHERE to_par = "e" AND country = "united states" |
57,737 | <question>: Which Place has a Score smaller than 72, and a To par of −1, and a Country of spain? <context>: CREATE TABLE table_name_51 (place VARCHAR, country VARCHAR, score VARCHAR, to_par VARCHAR) | SELECT place FROM table_name_51 WHERE score < 72 AND to_par = "−1" AND country = "spain" |
57,738 | <question>: What was john huston's score? <context>: CREATE TABLE table_name_56 (score VARCHAR, player VARCHAR) | SELECT score FROM table_name_56 WHERE player = "john huston" |
57,739 | <question>: What was willie wood's to par? <context>: CREATE TABLE table_name_15 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_15 WHERE player = "willie wood" |
57,740 | <question>: What is the Prize amount of Winner Dominik Nitsche? <context>: CREATE TABLE table_name_15 (prize VARCHAR, winner VARCHAR) | SELECT prize FROM table_name_15 WHERE winner = "dominik nitsche" |
57,741 | <question>: What is the Winner of the Event in Nuevo Vallarta? <context>: CREATE TABLE table_name_63 (winner VARCHAR, city VARCHAR) | SELECT winner FROM table_name_63 WHERE city = "nuevo vallarta" |
57,742 | <question>: What is the Date of the Event in Punta del Este? <context>: CREATE TABLE table_name_68 (date VARCHAR, city VARCHAR) | SELECT date FROM table_name_68 WHERE city = "punta del este" |
57,743 | <question>: What is the Date of the Event with a Prize of $141,426? <context>: CREATE TABLE table_name_92 (date VARCHAR, prize VARCHAR) | SELECT date FROM table_name_92 WHERE prize = "$141,426" |
57,744 | <question>: What is the title of ahaziah? <context>: CREATE TABLE table_name_16 (title VARCHAR, name VARCHAR) | SELECT title FROM table_name_16 WHERE name = "ahaziah" |
57,745 | <question>: What is the type of the king title? <context>: CREATE TABLE table_name_2 (type VARCHAR, title VARCHAR) | SELECT type FROM table_name_2 WHERE title = "king" |
57,746 | <question>: What is the name of the queen regnant? <context>: CREATE TABLE table_name_48 (name VARCHAR, title VARCHAR) | SELECT name FROM table_name_48 WHERE title = "queen regnant" |
57,747 | <question>: What is the total number of Grid, when Rider is Aleix Espargaro? <context>: CREATE TABLE table_name_2 (grid VARCHAR, rider VARCHAR) | SELECT COUNT(grid) FROM table_name_2 WHERE rider = "aleix espargaro" |
57,748 | <question>: What is the Rider, when Grid is less than 16, when Manufacturer is Aprilia, and when Time is +28.288? <context>: CREATE TABLE table_name_23 (rider VARCHAR, time VARCHAR, grid VARCHAR, manufacturer VARCHAR) | SELECT rider FROM table_name_23 WHERE grid < 16 AND manufacturer = "aprilia" AND time = "+28.288" |
57,749 | <question>: What is the average Laps, when Grid is 15? <context>: CREATE TABLE table_name_74 (laps INTEGER, grid VARCHAR) | SELECT AVG(laps) FROM table_name_74 WHERE grid = 15 |
57,750 | <question>: What is the Manufacturer, when Laps is 26, and when Rider is Aleix Espargaro? <context>: CREATE TABLE table_name_47 (manufacturer VARCHAR, laps VARCHAR, rider VARCHAR) | SELECT manufacturer FROM table_name_47 WHERE laps = 26 AND rider = "aleix espargaro" |
57,751 | <question>: What is Date, when Away Team is "Ipswich Town"? <context>: CREATE TABLE table_name_20 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_20 WHERE away_team = "ipswich town" |
57,752 | <question>: What is Tie No, when Away Team is "Millwall"? <context>: CREATE TABLE table_name_71 (tie_no VARCHAR, away_team VARCHAR) | SELECT tie_no FROM table_name_71 WHERE away_team = "millwall" |
57,753 | <question>: What is Score, when Date is "13 March 1985", and when Away Team is "Millwall"? <context>: CREATE TABLE table_name_67 (score VARCHAR, date VARCHAR, away_team VARCHAR) | SELECT score FROM table_name_67 WHERE date = "13 march 1985" AND away_team = "millwall" |
57,754 | <question>: What is Date, when Away Team is "Liverpool"? <context>: CREATE TABLE table_name_91 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_91 WHERE away_team = "liverpool" |
57,755 | <question>: What is Score, when Home Team is "Manchester United"? <context>: CREATE TABLE table_name_50 (score VARCHAR, home_team VARCHAR) | SELECT score FROM table_name_50 WHERE home_team = "manchester united" |
57,756 | <question>: What is Team, when High Rebounds is "Carl Landry (11)"? <context>: CREATE TABLE table_name_78 (team VARCHAR, high_rebounds VARCHAR) | SELECT team FROM table_name_78 WHERE high_rebounds = "carl landry (11)" |
57,757 | <question>: What is Location Attendance, when High Assists is "Rafer Alston (7)", and when High Rebounds is "Yao Ming (13)"? <context>: CREATE TABLE table_name_64 (location_attendance VARCHAR, high_assists VARCHAR, high_rebounds VARCHAR) | SELECT location_attendance FROM table_name_64 WHERE high_assists = "rafer alston (7)" AND high_rebounds = "yao ming (13)" |
57,758 | <question>: What is Score, when Team is "@ Memphis"? <context>: CREATE TABLE table_name_15 (score VARCHAR, team VARCHAR) | SELECT score FROM table_name_15 WHERE team = "@ memphis" |
57,759 | <question>: What is the result of the ajc craven plate (wfa) race? <context>: CREATE TABLE table_name_88 (result VARCHAR, race VARCHAR) | SELECT result FROM table_name_88 WHERE race = "ajc craven plate (wfa)" |
57,760 | <question>: What is the result of the sajc king's cup race, which has a weight heavier than 8.1? <context>: CREATE TABLE table_name_23 (result VARCHAR, weight VARCHAR, race VARCHAR) | SELECT result FROM table_name_23 WHERE weight > 8.1 AND race = "sajc king's cup" |
57,761 | <question>: What is the race with a 10f distance and mollison as the winner or 2nd? <context>: CREATE TABLE table_name_12 (race VARCHAR, distance VARCHAR, winner_or_2nd VARCHAR) | SELECT race FROM table_name_12 WHERE distance = "10f" AND winner_or_2nd = "mollison" |
57,762 | <question>: What is the highest number of Bush with a 32.40% Bush % and a total less than 5,126? <context>: CREATE TABLE table_name_87 (bush_number INTEGER, bush_percentage VARCHAR, total VARCHAR) | SELECT MAX(bush_number) FROM table_name_87 WHERE bush_percentage = "32.40%" AND total < 5 OFFSET 126 |
57,763 | <question>: What is the location and attendance when the score as w 117–109 (ot)? <context>: CREATE TABLE table_name_83 (location_attendance VARCHAR, score VARCHAR) | SELECT location_attendance FROM table_name_83 WHERE score = "w 117–109 (ot)" |
57,764 | <question>: What were the last 5 meetings when Columbia was mu, 4-2? <context>: CREATE TABLE table_name_6 (last_5_meetings VARCHAR, at_columbia VARCHAR) | SELECT last_5_meetings FROM table_name_6 WHERE at_columbia = "mu, 4-2" |
57,765 | <question>: What is the total number of rounds at 5:36? <context>: CREATE TABLE table_name_29 (round VARCHAR, time VARCHAR) | SELECT COUNT(round) FROM table_name_29 WHERE time = "5:36" |
57,766 | <question>: What is the total number of rounds with a 4-0 record? <context>: CREATE TABLE table_name_57 (round VARCHAR, record VARCHAR) | SELECT COUNT(round) FROM table_name_57 WHERE record = "4-0" |
57,767 | <question>: Which district is in the province of Piura? <context>: CREATE TABLE table_name_36 (districts VARCHAR, province VARCHAR) | SELECT districts FROM table_name_36 WHERE province = "piura" |
57,768 | <question>: What is the population of Chimbote? <context>: CREATE TABLE table_name_38 (population INTEGER, name_of_city VARCHAR) | SELECT SUM(population) FROM table_name_38 WHERE name_of_city = "chimbote" |
57,769 | <question>: What is the result of the game that was played at Detroit Lions? <context>: CREATE TABLE table_name_32 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_32 WHERE opponent = "at detroit lions" |
57,770 | <question>: What series number was directed by milan cheylov and written by will dixon? <context>: CREATE TABLE table_name_81 (series__number INTEGER, directed_by VARCHAR, written_by VARCHAR) | SELECT AVG(series__number) FROM table_name_81 WHERE directed_by = "milan cheylov" AND written_by = "will dixon" |
57,771 | <question>: What series # had an original air date of november 30, 1996? <context>: CREATE TABLE table_name_52 (series__number INTEGER, original_air_date VARCHAR) | SELECT MIN(series__number) FROM table_name_52 WHERE original_air_date = "november 30, 1996" |
57,772 | <question>: What was part 4 when part 3 was *hleupun? <context>: CREATE TABLE table_name_65 (part_4 VARCHAR, part_3 VARCHAR) | SELECT part_4 FROM table_name_65 WHERE part_3 = "*hleupun" |
57,773 | <question>: What was the class when part 2 was *hēt? <context>: CREATE TABLE table_name_61 (class VARCHAR, part_2 VARCHAR) | SELECT class FROM table_name_61 WHERE part_2 = "*hēt" |
57,774 | <question>: What was the class when part 4 was *rādanaz? <context>: CREATE TABLE table_name_39 (class VARCHAR, part_4 VARCHAR) | SELECT class FROM table_name_39 WHERE part_4 = "*rādanaz" |
57,775 | <question>: What was part 2 when part 4 was *blōtanaz? <context>: CREATE TABLE table_name_67 (part_2 VARCHAR, part_4 VARCHAR) | SELECT part_2 FROM table_name_67 WHERE part_4 = "*blōtanaz" |
57,776 | <question>: What was part 2 when part 4 was *haldanaz? <context>: CREATE TABLE table_name_69 (part_2 VARCHAR, part_4 VARCHAR) | SELECT part_2 FROM table_name_69 WHERE part_4 = "*haldanaz" |
57,777 | <question>: What was the class when part 3 was *heldun? <context>: CREATE TABLE table_name_79 (class VARCHAR, part_3 VARCHAR) | SELECT class FROM table_name_79 WHERE part_3 = "*heldun" |
57,778 | <question>: What is the Round din Ullevaal? <context>: CREATE TABLE table_name_23 (round VARCHAR, venue VARCHAR) | SELECT round FROM table_name_23 WHERE venue = "ullevaal" |
57,779 | <question>: What Round is in Ullevaal? <context>: CREATE TABLE table_name_99 (round VARCHAR, venue VARCHAR) | SELECT round FROM table_name_99 WHERE venue = "ullevaal" |
57,780 | <question>: In what Venue was the Score 1-1? <context>: CREATE TABLE table_name_76 (venue VARCHAR, score VARCHAR) | SELECT venue FROM table_name_76 WHERE score = "1-1" |
57,781 | <question>: What was the Score of the Semifinal 1? <context>: CREATE TABLE table_name_31 (score VARCHAR, round VARCHAR) | SELECT score FROM table_name_31 WHERE round = "semifinal 1" |
57,782 | <question>: What are the ends for the player with a transfer fee of loan? <context>: CREATE TABLE table_name_33 (ends VARCHAR, transfer_fee VARCHAR) | SELECT ends FROM table_name_33 WHERE transfer_fee = "loan" |
57,783 | <question>: What is the transfer fee for the MLI player with fewer than 63 goals in a year more recent than 2006? <context>: CREATE TABLE table_name_60 (transfer_fee VARCHAR, nat VARCHAR, since VARCHAR, goals VARCHAR) | SELECT transfer_fee FROM table_name_60 WHERE since = "2006" AND goals < 63 AND nat = "mli" |
57,784 | <question>: What is the royal house for Wu at the state of cai? <context>: CREATE TABLE table_name_45 (royal_house VARCHAR, name VARCHAR, state VARCHAR) | SELECT royal_house FROM table_name_45 WHERE name = "wu" AND state = "cai" |
57,785 | <question>: What is the state where the title is listed as count? <context>: CREATE TABLE table_name_63 (state VARCHAR, title VARCHAR) | SELECT state FROM table_name_63 WHERE title = "count" |
57,786 | <question>: What is the state for the royal house of ying? <context>: CREATE TABLE table_name_58 (state VARCHAR, royal_house VARCHAR) | SELECT state FROM table_name_58 WHERE royal_house = "ying" |
57,787 | <question>: Which Opponent in the final has a Score in the final of 6–2, 6–3, 2–6, 7–5? <context>: CREATE TABLE table_name_62 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR) | SELECT opponent_in_the_final FROM table_name_62 WHERE score_in_the_final = "6–2, 6–3, 2–6, 7–5" |
57,788 | <question>: How many Dates have a Score in the final of 6–4, 6–2? <context>: CREATE TABLE table_name_92 (date INTEGER, score_in_the_final VARCHAR) | SELECT SUM(date) FROM table_name_92 WHERE score_in_the_final = "6–4, 6–2" |
57,789 | <question>: Which Surface has an Outcome of runner-up, and a Score in the final of 4–6, 6–7, 6–2, 2–6? <context>: CREATE TABLE table_name_87 (surface VARCHAR, outcome VARCHAR, score_in_the_final VARCHAR) | SELECT surface FROM table_name_87 WHERE outcome = "runner-up" AND score_in_the_final = "4–6, 6–7, 6–2, 2–6" |
57,790 | <question>: Which Opponent in the final has an Outcome of winner, and a Date larger than 1992, and a Surface of clay, and a Score in the final of 3–6, 6–2, 6–1? <context>: CREATE TABLE table_name_65 (opponent_in_the_final VARCHAR, score_in_the_final VARCHAR, surface VARCHAR, outcome VARCHAR, date VARCHAR) | SELECT opponent_in_the_final FROM table_name_65 WHERE outcome = "winner" AND date > 1992 AND surface = "clay" AND score_in_the_final = "3–6, 6–2, 6–1" |
57,791 | <question>: Which Surface has a Score in the final of 2–6, 6–7? <context>: CREATE TABLE table_name_42 (surface VARCHAR, score_in_the_final VARCHAR) | SELECT surface FROM table_name_42 WHERE score_in_the_final = "2–6, 6–7" |
57,792 | <question>: What day in November has a record of 15-6-1? <context>: CREATE TABLE table_name_91 (november INTEGER, record VARCHAR) | SELECT AVG(november) FROM table_name_91 WHERE record = "15-6-1" |
57,793 | <question>: What day in November has the game less than 12? <context>: CREATE TABLE table_name_55 (november VARCHAR, game INTEGER) | SELECT november FROM table_name_55 WHERE game < 12 |
57,794 | <question>: What is the earliest day in November with a record of 15-7-1? <context>: CREATE TABLE table_name_67 (november INTEGER, record VARCHAR) | SELECT MIN(november) FROM table_name_67 WHERE record = "15-7-1" |
57,795 | <question>: What is Finish, when Country is "South Africa"? <context>: CREATE TABLE table_name_54 (finish VARCHAR, country VARCHAR) | SELECT finish FROM table_name_54 WHERE country = "south africa" |
57,796 | <question>: What is Player, when Country is "United States", and when Year(s) Won is "1976"? <context>: CREATE TABLE table_name_40 (player VARCHAR, country VARCHAR, year_s__won VARCHAR) | SELECT player FROM table_name_40 WHERE country = "united states" AND year_s__won = "1976" |
57,797 | <question>: Which first round has a first team of angers sco (d1)? <context>: CREATE TABLE table_name_90 (team_1 VARCHAR) | SELECT 1 AS st_round FROM table_name_90 WHERE team_1 = "angers sco (d1)" |
57,798 | <question>: In which stadium does Club Pro Patria play? <context>: CREATE TABLE table_name_43 (stadium VARCHAR, club VARCHAR) | SELECT stadium FROM table_name_43 WHERE club = "pro patria" |
57,799 | <question>: What was the result of the 2007-08 season for the city of Ferrara? <context>: CREATE TABLE table_name_33 (city VARCHAR) | SELECT 2007 AS _08_season FROM table_name_33 WHERE city = "ferrara" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.