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