question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
what is the company when the country is greece and the author is aeschylus? | CREATE TABLE table_name_28 (company VARCHAR, country VARCHAR, author VARCHAR) | {
"SQL_Query": "SELECT company FROM table_name_28 WHERE country = \"greece\" AND author = \"aeschylus\""
} |
what is the country when the base is ljubljana? | CREATE TABLE table_name_67 (country VARCHAR, base VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_67 WHERE base = \"ljubljana\""
} |
what is the base when the play is thesmophoriazusae? | CREATE TABLE table_name_67 (base VARCHAR, play VARCHAR) | {
"SQL_Query": "SELECT base FROM table_name_67 WHERE play = \"thesmophoriazusae\""
} |
what is the company when the base is ljubljana? | CREATE TABLE table_name_63 (company VARCHAR, base VARCHAR) | {
"SQL_Query": "SELECT company FROM table_name_63 WHERE base = \"ljubljana\""
} |
what is the play when the company is cyprus theatre organisation? | CREATE TABLE table_name_61 (play VARCHAR, company VARCHAR) | {
"SQL_Query": "SELECT play FROM table_name_61 WHERE company = \"cyprus theatre organisation\""
} |
What was the highest rank for rowers who represented Denmark? | CREATE TABLE table_name_94 (rank INTEGER, country VARCHAR) | {
"SQL_Query": "SELECT MAX(rank) FROM table_name_94 WHERE country = \"denmark\""
} |
What was the time for the rowers representing great britain? | CREATE TABLE table_name_27 (time VARCHAR, country VARCHAR) | {
"SQL_Query": "SELECT time FROM table_name_27 WHERE country = \"great britain\""
} |
Which Arena has an Opponent of @ oilers, and a Date of may 25? | CREATE TABLE table_name_79 (arena VARCHAR, opponent VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT arena FROM table_name_79 WHERE opponent = \"@ oilers\" AND date = \"may 25\""
} |
How much attendance has a Loss of roloson (11–5)? | CREATE TABLE table_name_70 (attendance INTEGER, loss VARCHAR) | {
"SQL_Query": "SELECT SUM(attendance) FROM table_name_70 WHERE loss = \"roloson (11–5)\""
} |
Which Attendance has an Arena of arrowhead pond of anaheim, and a Loss of giguere (3–3)? | CREATE TABLE table_name_74 (attendance INTEGER, arena VARCHAR, loss VARCHAR) | {
"SQL_Query": "SELECT MAX(attendance) FROM table_name_74 WHERE arena = \"arrowhead pond of anaheim\" AND loss = \"giguere (3–3)\""
} |
Which Attendance has an Opponent of @ oilers, and a Date of may 25? | CREATE TABLE table_name_25 (attendance INTEGER, opponent VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT MAX(attendance) FROM table_name_25 WHERE opponent = \"@ oilers\" AND date = \"may 25\""
} |
What was the attendance on may 21? | CREATE TABLE table_name_75 (attendance INTEGER, date VARCHAR) | {
"SQL_Query": "SELECT MAX(attendance) FROM table_name_75 WHERE date = \"may 21\""
} |
Who's the athlete with a wind of 1.7 and from the United States? | CREATE TABLE table_name_50 (athlete VARCHAR, nationality VARCHAR, wind VARCHAR) | {
"SQL_Query": "SELECT athlete FROM table_name_50 WHERE nationality = \"united states\" AND wind = \"1.7\""
} |
Who was the athlete with a wind of 1.8? | CREATE TABLE table_name_45 (athlete VARCHAR, wind VARCHAR) | {
"SQL_Query": "SELECT athlete FROM table_name_45 WHERE wind = \"1.8\""
} |
What's the wind when the time was 19.32? | CREATE TABLE table_name_83 (wind VARCHAR, time VARCHAR) | {
"SQL_Query": "SELECT wind FROM table_name_83 WHERE time = \"19.32\""
} |
What's the highest total of Romania when the bronze was less than 2? | CREATE TABLE table_name_14 (total INTEGER, nation VARCHAR, bronze VARCHAR) | {
"SQL_Query": "SELECT MAX(total) FROM table_name_14 WHERE nation = \"romania\" AND bronze < 2"
} |
What's the total of rank number 6 with more than 2 silver? | CREATE TABLE table_name_71 (total INTEGER, rank VARCHAR, silver VARCHAR) | {
"SQL_Query": "SELECT MAX(total) FROM table_name_71 WHERE rank = \"6\" AND silver > 2"
} |
What percentage of browsers were using Internet Explorer during the period in which 27.85% were using Firefox? | CREATE TABLE table_name_39 (internet_explorer VARCHAR, firefox VARCHAR) | {
"SQL_Query": "SELECT internet_explorer FROM table_name_39 WHERE firefox = \"27.85%\""
} |
What percentage of browsers were using Internet Explorer in April 2009? | CREATE TABLE table_name_81 (internet_explorer VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT internet_explorer FROM table_name_81 WHERE date = \"april 2009\""
} |
What percentage of browsers were using Safari during the period in which 31.27% were using Firefox? | CREATE TABLE table_name_62 (safari VARCHAR, firefox VARCHAR) | {
"SQL_Query": "SELECT safari FROM table_name_62 WHERE firefox = \"31.27%\""
} |
What percentage of browsers were using Opera in October 2010? | CREATE TABLE table_name_53 (opera VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT opera FROM table_name_53 WHERE date = \"october 2010\""
} |
What percentage of browsers were using Opera in November 2009? | CREATE TABLE table_name_69 (opera VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT opera FROM table_name_69 WHERE date = \"november 2009\""
} |
What country has sa/b as the notes, and a time of 5:51.30? | CREATE TABLE table_name_55 (country VARCHAR, notes VARCHAR, time VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_55 WHERE notes = \"sa/b\" AND time = \"5:51.30\""
} |
Who were the rowers when notes were sa/b, with a time of 5:51.30? | CREATE TABLE table_name_76 (rowers VARCHAR, notes VARCHAR, time VARCHAR) | {
"SQL_Query": "SELECT rowers FROM table_name_76 WHERE notes = \"sa/b\" AND time = \"5:51.30\""
} |
What country is ranked larger than 4? | CREATE TABLE table_name_72 (country VARCHAR, rank INTEGER) | {
"SQL_Query": "SELECT country FROM table_name_72 WHERE rank > 4"
} |
What's the least enrolled when the mascot was the Trojans? | CREATE TABLE table_name_8 (enrollment INTEGER, mascot VARCHAR) | {
"SQL_Query": "SELECT MIN(enrollment) FROM table_name_8 WHERE mascot = \"trojans\""
} |
What's the IHSAA class of the Red Devils? | CREATE TABLE table_name_77 (ihsaa_class VARCHAR, mascot VARCHAR) | {
"SQL_Query": "SELECT ihsaa_class FROM table_name_77 WHERE mascot = \"red devils\""
} |
What's the rank for February 11, 2012 with less than 18,735 in attendance? | CREATE TABLE table_name_67 (rank INTEGER, date VARCHAR, attendance VARCHAR) | {
"SQL_Query": "SELECT AVG(rank) FROM table_name_67 WHERE date = \"february 11, 2012\" AND attendance < 18 OFFSET 735"
} |
What is Cynthia Mobumba's height? | CREATE TABLE table_name_83 (height__ft_ VARCHAR, contestant VARCHAR) | {
"SQL_Query": "SELECT height__ft_ FROM table_name_83 WHERE contestant = \"cynthia mobumba\""
} |
What is the hometown of the player from Indonesia? | CREATE TABLE table_name_31 (hometown VARCHAR, country VARCHAR) | {
"SQL_Query": "SELECT hometown FROM table_name_31 WHERE country = \"indonesia\""
} |
From what school was the player drafted in round 3? | CREATE TABLE table_name_88 (school VARCHAR, round VARCHAR) | {
"SQL_Query": "SELECT school FROM table_name_88 WHERE round = 3"
} |
From what school was the linebacker that had a pick less than 245 and was drafted in round 6? | CREATE TABLE table_name_50 (school VARCHAR, round VARCHAR, position VARCHAR, pick VARCHAR) | {
"SQL_Query": "SELECT school FROM table_name_50 WHERE position = \"linebacker\" AND pick < 245 AND round = 6"
} |
What was the Rebuildjahr(e) for the T2AA class? | CREATE TABLE table_name_17 (rebuildjahr_e_ VARCHAR, class VARCHAR) | {
"SQL_Query": "SELECT rebuildjahr_e_ FROM table_name_17 WHERE class = \"t2aa\""
} |
What is the total of quantity rebuilt if the type is 1B N2T and the railway number is 88, 118? | CREATE TABLE table_name_4 (quantity_rebuilt VARCHAR, type VARCHAR, railway_number_s_ VARCHAR) | {
"SQL_Query": "SELECT COUNT(quantity_rebuilt) FROM table_name_4 WHERE type = \"1b n2t\" AND railway_number_s_ = \"88, 118\""
} |
What date was Chester the away team? | CREATE TABLE table_name_67 (date VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_67 WHERE away_team = \"chester\""
} |
What's the score when the Wolverhampton Wanderers played at home? | CREATE TABLE table_name_4 (score VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_4 WHERE home_team = \"wolverhampton wanderers\""
} |
Who was the home team that played against Manchester United? | CREATE TABLE table_name_86 (home_team VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT home_team FROM table_name_86 WHERE away_team = \"manchester united\""
} |
What's the score when the tie number was 6? | CREATE TABLE table_name_35 (score VARCHAR, tie_no VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_35 WHERE tie_no = \"6\""
} |
What's the score when the tie number was replay? | CREATE TABLE table_name_70 (score VARCHAR, tie_no VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_70 WHERE tie_no = \"replay\""
} |
What's the episode of Batman? | CREATE TABLE table_name_38 (episode VARCHAR, program VARCHAR) | {
"SQL_Query": "SELECT episode FROM table_name_38 WHERE program = \"batman\""
} |
What's the first aired date when Professor Hubert Whitehead was the role? | CREATE TABLE table_name_30 (first_aired VARCHAR, role VARCHAR) | {
"SQL_Query": "SELECT first_aired FROM table_name_30 WHERE role = \"professor hubert whitehead\""
} |
What's the first aired date of the Animated Series episode? | CREATE TABLE table_name_91 (first_aired VARCHAR, episode VARCHAR) | {
"SQL_Query": "SELECT first_aired FROM table_name_91 WHERE episode = \"animated series\""
} |
What's the roles of the Bionic Woman? | CREATE TABLE table_name_4 (role VARCHAR, program VARCHAR) | {
"SQL_Query": "SELECT role FROM table_name_4 WHERE program = \"the bionic woman\""
} |
What episode was first aired in 1976? | CREATE TABLE table_name_85 (episode VARCHAR, first_aired VARCHAR) | {
"SQL_Query": "SELECT episode FROM table_name_85 WHERE first_aired = \"1976\""
} |
What is the most total goals for a player having 0 FA Cup goals and 41 League appearances? | CREATE TABLE table_name_98 (total_goals INTEGER, fa_cup_goals VARCHAR, league_apps VARCHAR) | {
"SQL_Query": "SELECT MAX(total_goals) FROM table_name_98 WHERE fa_cup_goals = 0 AND league_apps = \"41\""
} |
How many bronze medals were won when the total is more than 1, and gold is more than 0? | CREATE TABLE table_name_62 (bronze INTEGER, total VARCHAR, gold VARCHAR) | {
"SQL_Query": "SELECT AVG(bronze) FROM table_name_62 WHERE total > 1 AND gold > 0"
} |
What is the rank when there was less than 1 gold, 0 bronze, and more than 1 total? | CREATE TABLE table_name_23 (rank INTEGER, total VARCHAR, gold VARCHAR, bronze VARCHAR) | {
"SQL_Query": "SELECT SUM(rank) FROM table_name_23 WHERE gold < 1 AND bronze = 0 AND total > 1"
} |
What is the total when there were less than 0 bronze? | CREATE TABLE table_name_24 (total VARCHAR, bronze INTEGER) | {
"SQL_Query": "SELECT COUNT(total) FROM table_name_24 WHERE bronze < 0"
} |
What is the rank when there is 0 gold, the total is more than 1, and silver is more than 0? | CREATE TABLE table_name_58 (rank INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR) | {
"SQL_Query": "SELECT MAX(rank) FROM table_name_58 WHERE gold = 0 AND total > 1 AND silver > 0"
} |
What is the number of gold medals for Lithuania (ltu), when the total is more than 1? | CREATE TABLE table_name_57 (gold INTEGER, nation VARCHAR, total VARCHAR) | {
"SQL_Query": "SELECT MAX(gold) FROM table_name_57 WHERE nation = \"lithuania (ltu)\" AND total > 1"
} |
What is the release date of production number 1327? | CREATE TABLE table_name_60 (release_date VARCHAR, production_number VARCHAR) | {
"SQL_Query": "SELECT release_date FROM table_name_60 WHERE production_number = 1327"
} |
What is the highest production number released on 1955-04-02 with i. freleng as the director? | CREATE TABLE table_name_66 (production_number INTEGER, director VARCHAR, release_date VARCHAR) | {
"SQL_Query": "SELECT MAX(production_number) FROM table_name_66 WHERE director = \"i. freleng\" AND release_date = \"1955-04-02\""
} |
What is the title with the production number greater than 1334 released on 1955-08-27? | CREATE TABLE table_name_65 (title VARCHAR, production_number VARCHAR, release_date VARCHAR) | {
"SQL_Query": "SELECT title FROM table_name_65 WHERE production_number > 1334 AND release_date = \"1955-08-27\""
} |
How many years did the role of Steve Rhoades last? | CREATE TABLE table_name_21 (years VARCHAR, role VARCHAR) | {
"SQL_Query": "SELECT years FROM table_name_21 WHERE role = \"steve rhoades\""
} |
How many episodes did the actor David Faustino appear in? | CREATE TABLE table_name_37 (episodes VARCHAR, actor VARCHAR) | {
"SQL_Query": "SELECT episodes FROM table_name_37 WHERE actor = \"david faustino\""
} |
Which County has a Rank larger than 8, and a Player of joe mckenna? | CREATE TABLE table_name_29 (county VARCHAR, rank VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT county FROM table_name_29 WHERE rank > 8 AND player = \"joe mckenna\""
} |
Which Total has a County of kilkenny, and a Tally of 1–4, and a Rank larger than 10? | CREATE TABLE table_name_13 (total INTEGER, rank VARCHAR, county VARCHAR, tally VARCHAR) | {
"SQL_Query": "SELECT AVG(total) FROM table_name_13 WHERE county = \"kilkenny\" AND tally = \"1–4\" AND rank > 10"
} |
What is galway county's total? | CREATE TABLE table_name_80 (total INTEGER, county VARCHAR) | {
"SQL_Query": "SELECT SUM(total) FROM table_name_80 WHERE county = \"galway\""
} |
What is the event when the class is time trial hc a? | CREATE TABLE table_name_95 (event VARCHAR, class VARCHAR) | {
"SQL_Query": "SELECT event FROM table_name_95 WHERE class = \"time trial hc a\""
} |
Who received gold when the event is road race details and silver is max weber germany (ger)? | CREATE TABLE table_name_96 (gold VARCHAR, event VARCHAR, silver VARCHAR) | {
"SQL_Query": "SELECT gold FROM table_name_96 WHERE event = \"road race details\" AND silver = \"max weber germany (ger)\""
} |
Who received gold when the event is time trial details and silver is simon richardson great britain (gbr)? | CREATE TABLE table_name_2 (gold VARCHAR, event VARCHAR, silver VARCHAR) | {
"SQL_Query": "SELECT gold FROM table_name_2 WHERE event = \"time trial details\" AND silver = \"simon richardson great britain (gbr)\""
} |
who received gold when silver is wolfgang eibeck austria (aut)? | CREATE TABLE table_name_42 (gold VARCHAR, silver VARCHAR) | {
"SQL_Query": "SELECT gold FROM table_name_42 WHERE silver = \"wolfgang eibeck austria (aut)\""
} |
what is the event when gold is darren kenny great britain (gbr)? | CREATE TABLE table_name_1 (event VARCHAR, gold VARCHAR) | {
"SQL_Query": "SELECT event FROM table_name_1 WHERE gold = \"darren kenny great britain (gbr)\""
} |
Who directed Bunker Hill Bunny? | CREATE TABLE table_name_77 (director VARCHAR, title VARCHAR) | {
"SQL_Query": "SELECT director FROM table_name_77 WHERE title = \"bunker hill bunny\""
} |
Who directed An Egg Scramble? | CREATE TABLE table_name_53 (director VARCHAR, title VARCHAR) | {
"SQL_Query": "SELECT director FROM table_name_53 WHERE title = \"an egg scramble\""
} |
Who was the opposing team in the game attended by 65,554? | CREATE TABLE table_name_35 (opponent VARCHAR, attendance VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_35 WHERE attendance = \"65,554\""
} |
what is the highest draw when the place is less than 3 and the percentage is 30.71%? | CREATE TABLE table_name_61 (draw INTEGER, place VARCHAR, percentage VARCHAR) | {
"SQL_Query": "SELECT MAX(draw) FROM table_name_61 WHERE place < 3 AND percentage = \"30.71%\""
} |
what is the least draw when the place is higher than 4? | CREATE TABLE table_name_62 (draw INTEGER, place INTEGER) | {
"SQL_Query": "SELECT MIN(draw) FROM table_name_62 WHERE place > 4"
} |
What is the lowest pick of the defensive tackle player dave haverdick? | CREATE TABLE table_name_30 (pick INTEGER, position VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT MIN(pick) FROM table_name_30 WHERE position = \"defensive tackle\" AND player = \"dave haverdick\""
} |
What is the average pick of player jim h. mitchell? | CREATE TABLE table_name_3 (pick INTEGER, player VARCHAR) | {
"SQL_Query": "SELECT AVG(pick) FROM table_name_3 WHERE player = \"jim h. mitchell\""
} |
With a Col (m) larger than 2012, what is Mount Kazbek's Prominence (m)? | CREATE TABLE table_name_88 (prominence__m_ VARCHAR, col__m_ VARCHAR, peak VARCHAR) | {
"SQL_Query": "SELECT prominence__m_ FROM table_name_88 WHERE col__m_ > 2012 AND peak = \"mount kazbek\""
} |
What genre has a station of Class 95FM? | CREATE TABLE table_name_53 (genre VARCHAR, station VARCHAR) | {
"SQL_Query": "SELECT genre FROM table_name_53 WHERE station = \"class 95fm\""
} |
What is the genre of the BBC World Service? | CREATE TABLE table_name_77 (genre VARCHAR, station VARCHAR) | {
"SQL_Query": "SELECT genre FROM table_name_77 WHERE station = \"bbc world service\""
} |
Which station is operated by BBC Radio under the talk radio genre? | CREATE TABLE table_name_63 (station VARCHAR, genre VARCHAR, operator VARCHAR) | {
"SQL_Query": "SELECT station FROM table_name_63 WHERE genre = \"talk radio\" AND operator = \"bbc radio\""
} |
What's the sum of Silver with total smaller than 560, a Bronze larger than 6, and a Gold of 3? | CREATE TABLE table_name_70 (silver INTEGER, gold VARCHAR, total VARCHAR, bronze VARCHAR) | {
"SQL_Query": "SELECT SUM(silver) FROM table_name_70 WHERE total < 560 AND bronze > 6 AND gold = 3"
} |
What's the sum of Gold with a Bronze that's larger than 15, Silver that's smaller than 197, the Nation of Saint Lucia, and has a Total that is larger than 50? | CREATE TABLE table_name_89 (gold INTEGER, total VARCHAR, nation VARCHAR, bronze VARCHAR, silver VARCHAR) | {
"SQL_Query": "SELECT SUM(gold) FROM table_name_89 WHERE bronze > 15 AND silver < 197 AND nation = \"saint lucia\" AND total > 50"
} |
What Nation has a Bronze that is smaller than 10 with a Silver of 5? | CREATE TABLE table_name_72 (nation VARCHAR, bronze VARCHAR, silver VARCHAR) | {
"SQL_Query": "SELECT nation FROM table_name_72 WHERE bronze < 10 AND silver = 5"
} |
What's the total number of Silver that has Gold that's larger than 0, Bronze that's smaller than 23, a Total that's larger than 22, and has the Nation of Saint Kitts and Nevis? | CREATE TABLE table_name_96 (silver VARCHAR, nation VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR) | {
"SQL_Query": "SELECT COUNT(silver) FROM table_name_96 WHERE gold > 0 AND bronze < 23 AND total > 22 AND nation = \"saint kitts and nevis\""
} |
What is listed as the highest Silver that also has a Gold of 4 and a Total that's larger than 25? | CREATE TABLE table_name_70 (silver INTEGER, gold VARCHAR, total VARCHAR) | {
"SQL_Query": "SELECT MAX(silver) FROM table_name_70 WHERE gold = 4 AND total > 25"
} |
What's the lost when there were more than 16 points and had a drawn less than 1? | CREATE TABLE table_name_18 (lost INTEGER, points VARCHAR, drawn VARCHAR) | {
"SQL_Query": "SELECT SUM(lost) FROM table_name_18 WHERE points > 16 AND drawn < 1"
} |
What's the most points for Ea Schongau with more than 1 drawn? | CREATE TABLE table_name_38 (points INTEGER, name VARCHAR, drawn VARCHAR) | {
"SQL_Query": "SELECT MAX(points) FROM table_name_38 WHERE name = \"ea schongau\" AND drawn > 1"
} |
What's the points that has a lost more 6, played less than 14 and a position more than 1? | CREATE TABLE table_name_54 (points INTEGER, played VARCHAR, position VARCHAR, lost VARCHAR) | {
"SQL_Query": "SELECT SUM(points) FROM table_name_54 WHERE position > 1 AND lost > 6 AND played < 14"
} |
When dis cbs release the DVD set? | CREATE TABLE table_name_76 (dvd_set_release_date VARCHAR, network VARCHAR) | {
"SQL_Query": "SELECT dvd_set_release_date FROM table_name_76 WHERE network = \"cbs\""
} |
What is the total season number for episodes later than episode 30? | CREATE TABLE table_name_67 (season INTEGER, episodes INTEGER) | {
"SQL_Query": "SELECT SUM(season) FROM table_name_67 WHERE episodes > 30"
} |
What year is the Grim Fandango with a windows platform? | CREATE TABLE table_name_36 (year VARCHAR, platform_s_ VARCHAR, game VARCHAR) | {
"SQL_Query": "SELECT year FROM table_name_36 WHERE platform_s_ = \"windows\" AND game = \"grim fandango\""
} |
What game in the genre of adventure, has a windows platform and its year is after 1997? | CREATE TABLE table_name_20 (game VARCHAR, genre VARCHAR, year VARCHAR, platform_s_ VARCHAR) | {
"SQL_Query": "SELECT game FROM table_name_20 WHERE year > 1997 AND platform_s_ = \"windows\" AND genre = \"adventure\""
} |
What is the 2.15 for Tom Parsons? | CREATE TABLE table_name_9 (athlete VARCHAR) | {
"SQL_Query": "SELECT 215 FROM table_name_9 WHERE athlete = \"tom parsons\""
} |
Which athlete from Brazil has 2.20 O and 2.25 of XXX? | CREATE TABLE table_name_81 (athlete VARCHAR, nationality VARCHAR) | {
"SQL_Query": "SELECT athlete FROM table_name_81 WHERE 220 = \"o\" AND 225 = \"xxx\" AND nationality = \"brazil\""
} |
Which athlete from Germany has 2.20 of O and a 2.25 of O? | CREATE TABLE table_name_68 (athlete VARCHAR, nationality VARCHAR) | {
"SQL_Query": "SELECT athlete FROM table_name_68 WHERE 220 = \"o\" AND 225 = \"o\" AND nationality = \"germany\""
} |
Which 2011 has an Airport of bole international airport? | CREATE TABLE table_name_38 (airport VARCHAR) | {
"SQL_Query": "SELECT MAX(2011) FROM table_name_38 WHERE airport = \"bole international airport\""
} |
What's the release date of Forward March Hare? | CREATE TABLE table_name_10 (release_date VARCHAR, title VARCHAR) | {
"SQL_Query": "SELECT release_date FROM table_name_10 WHERE title = \"forward march hare\""
} |
What's the release date of Upswept Hare? | CREATE TABLE table_name_28 (release_date VARCHAR, title VARCHAR) | {
"SQL_Query": "SELECT release_date FROM table_name_28 WHERE title = \"upswept hare\""
} |
What's the series of Kiss Me Cat? | CREATE TABLE table_name_80 (series VARCHAR, title VARCHAR) | {
"SQL_Query": "SELECT series FROM table_name_80 WHERE title = \"kiss me cat\""
} |
What country is the athlete ekaterina karsten from with a rank less than 4? | CREATE TABLE table_name_85 (country VARCHAR, rank VARCHAR, athlete VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_85 WHERE rank < 4 AND athlete = \"ekaterina karsten\""
} |
What is the time of frida svensson's race that had sa/b under the notes? | CREATE TABLE table_name_81 (time VARCHAR, notes VARCHAR, athlete VARCHAR) | {
"SQL_Query": "SELECT time FROM table_name_81 WHERE notes = \"sa/b\" AND athlete = \"frida svensson\""
} |
What is the race time for emma twigg? | CREATE TABLE table_name_29 (time VARCHAR, athlete VARCHAR) | {
"SQL_Query": "SELECT time FROM table_name_29 WHERE athlete = \"emma twigg\""
} |
What is the total rank for the athlete that had a race time of 7:34.24? | CREATE TABLE table_name_56 (rank VARCHAR, time VARCHAR) | {
"SQL_Query": "SELECT COUNT(rank) FROM table_name_56 WHERE time = \"7:34.24\""
} |
What is the Date of the game with an attendance of 72,051 after Week 9? | CREATE TABLE table_name_4 (date VARCHAR, week VARCHAR, attendance VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_4 WHERE week > 9 AND attendance = \"72,051\""
} |
In what Week was the Attendance 49,097? | CREATE TABLE table_name_51 (week INTEGER, attendance VARCHAR) | {
"SQL_Query": "SELECT AVG(week) FROM table_name_51 WHERE attendance = \"49,097\""
} |
On what Date was the Attendance 73,405? | CREATE TABLE table_name_32 (date VARCHAR, attendance VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_32 WHERE attendance = \"73,405\""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.