Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
6,400 | <question>: Where is the frequency 102.3mhz and 5kw power? <context>: CREATE TABLE table_19215259_1 (location VARCHAR, power__kw_ VARCHAR, frequency VARCHAR) | SELECT location FROM table_19215259_1 WHERE power__kw_ = "5kW" AND frequency = "102.3MHz" |
6,401 | <question>: Where is the frequency 92.3mhz? <context>: CREATE TABLE table_19215259_1 (location VARCHAR, frequency VARCHAR) | SELECT location FROM table_19215259_1 WHERE frequency = "92.3MHz" |
6,402 | <question>: What is the highest no.? <context>: CREATE TABLE table_1924975_1 (no INTEGER) | SELECT MAX(no) FROM table_1924975_1 |
6,403 | <question>: What is the q1+q2 time in which q1 is 1:18.574? <context>: CREATE TABLE table_1924975_1 (q1 VARCHAR, q2_time VARCHAR, q1_time VARCHAR) | SELECT q1 + q2_time FROM table_1924975_1 WHERE q1_time = "1:18.574" |
6,404 | <question>: when q1 pos is 8 what is the q1+q2 time? <context>: CREATE TABLE table_1924975_1 (q1 VARCHAR, q2_time VARCHAR, q1_pos VARCHAR) | SELECT q1 + q2_time FROM table_1924975_1 WHERE q1_pos = 8 |
6,405 | <question>: when the q1+q2 time was 2.34.736, what was the total pos number? <context>: CREATE TABLE table_1924975_1 (pos VARCHAR, q1 VARCHAR, q2_time VARCHAR) | SELECT COUNT(pos) FROM table_1924975_1 WHERE q1 + q2_time = "2.34.736" |
6,406 | <question>: When the q1 time is 1:16.218 what is the highest q1 pos? <context>: CREATE TABLE table_1924975_1 (q1_pos INTEGER, q1_time VARCHAR) | SELECT MAX(q1_pos) FROM table_1924975_1 WHERE q1_time = "1:16.218" |
6,407 | <question>: What is the largest 6-car-sets for fiscal year 1968? <context>: CREATE TABLE table_19255192_1 (fiscal_year VARCHAR) | SELECT MAX(6 AS _car_sets) FROM table_19255192_1 WHERE fiscal_year = 1968 |
6,408 | <question>: What is the lowest fiscal year if total vehicles is 490? <context>: CREATE TABLE table_19255192_1 (fiscal_year INTEGER, total_vehicles VARCHAR) | SELECT MIN(fiscal_year) FROM table_19255192_1 WHERE total_vehicles = 490 |
6,409 | <question>: Name the degree for otorhinolaryngology <context>: CREATE TABLE table_19304764_2 (degree_diploma VARCHAR, discipline VARCHAR) | SELECT degree_diploma FROM table_19304764_2 WHERE discipline = "Otorhinolaryngology" |
6,410 | <question>: Name the total seats for otorhinolaryngology <context>: CREATE TABLE table_19304764_2 (total_seats VARCHAR, discipline VARCHAR) | SELECT total_seats FROM table_19304764_2 WHERE discipline = "Otorhinolaryngology" |
6,411 | <question>: Name the recognised seats for pharmacology <context>: CREATE TABLE table_19304764_2 (recognised_seats VARCHAR, discipline VARCHAR) | SELECT recognised_seats FROM table_19304764_2 WHERE discipline = "Pharmacology" |
6,412 | <question>: Name the total number of seats for general surgery <context>: CREATE TABLE table_19304764_2 (permitted_seats VARCHAR, discipline VARCHAR) | SELECT COUNT(permitted_seats) FROM table_19304764_2 WHERE discipline = "General Surgery" |
6,413 | <question>: Name the least recognised seats <context>: CREATE TABLE table_19304764_2 (recognised_seats INTEGER) | SELECT MIN(recognised_seats) FROM table_19304764_2 |
6,414 | <question>: How many nations do the FMS international team represent? <context>: CREATE TABLE table_19312274_3 (nation VARCHAR, name VARCHAR) | SELECT COUNT(nation) FROM table_19312274_3 WHERE name = "FMS International" |
6,415 | <question>: What is the smallest number of fastest laps listed? <context>: CREATE TABLE table_19312274_3 (fastest_laps INTEGER) | SELECT MIN(fastest_laps) FROM table_19312274_3 |
6,416 | <question>: How many championship titles for LRS Formula / Laurent RΓ©don Motorsport? <context>: CREATE TABLE table_19312274_3 (championship_titles VARCHAR, name VARCHAR) | SELECT championship_titles FROM table_19312274_3 WHERE name = "LRS Formula / Laurent RΓ©don Motorsport" |
6,417 | <question>: What's the version of AutoCAD Architectural Desktop 3? <context>: CREATE TABLE table_19329117_1 (version VARCHAR, official_name VARCHAR) | SELECT version FROM table_19329117_1 WHERE official_name = "AutoCAD Architectural Desktop 3" |
6,418 | <question>: In what season did the team get in the conference finals of the playoffs? <context>: CREATE TABLE table_1939214_1 (regular_season VARCHAR, playoffs VARCHAR) | SELECT regular_season FROM table_1939214_1 WHERE playoffs = "Conference Finals" |
6,419 | <question>: What was the team's status in the USISL Pro League playoffs? <context>: CREATE TABLE table_1939214_1 (playoffs VARCHAR, league VARCHAR) | SELECT playoffs FROM table_1939214_1 WHERE league = "USISL Pro league" |
6,420 | <question>: In what year did the team compete in the 2nd, Northeast season of the USL PDL League? <context>: CREATE TABLE table_1939214_1 (year VARCHAR, league VARCHAR, regular_season VARCHAR) | SELECT year FROM table_1939214_1 WHERE league = "USL PDL" AND regular_season = "2nd, Northeast" |
6,421 | <question>: What did the team do in the Open Cup in the 2nd, Northeast season of the USISL D-3 Pro League? <context>: CREATE TABLE table_1939214_1 (open_cup VARCHAR, league VARCHAR, regular_season VARCHAR) | SELECT open_cup FROM table_1939214_1 WHERE league = "USISL D-3 Pro league" AND regular_season = "2nd, Northeast" |
6,422 | <question>: In what year did the team compete in the USISL Pro League? <context>: CREATE TABLE table_1939214_1 (year VARCHAR, league VARCHAR) | SELECT year FROM table_1939214_1 WHERE league = "USISL Pro league" |
6,423 | <question>: If %2001 is 0.1%, what is the minimum Arabs 2001 number? <context>: CREATE TABLE table_1939367_1 (arabs_2001 INTEGER, _percentage_2001 VARCHAR) | SELECT MIN(arabs_2001) FROM table_1939367_1 WHERE _percentage_2001 = "0.1%" |
6,424 | <question>: If the province is Manitoba, what is the Arabs 2001 number? <context>: CREATE TABLE table_1939367_1 (arabs_2001 INTEGER, province VARCHAR) | SELECT MAX(arabs_2001) FROM table_1939367_1 WHERE province = "Manitoba" |
6,425 | <question>: What is the province amount if the % 2011 is 0.0% <context>: CREATE TABLE table_1939367_1 (province VARCHAR, _percentage_2011 VARCHAR) | SELECT COUNT(province) FROM table_1939367_1 WHERE _percentage_2011 = "0.0%" |
6,426 | <question>: If the province is British Columbia, what is the Arabs 2001 total number? <context>: CREATE TABLE table_1939367_1 (arabs_2001 VARCHAR, province VARCHAR) | SELECT COUNT(arabs_2001) FROM table_1939367_1 WHERE province = "British Columbia" |
6,427 | <question>: If the province is Nunavut, what is the Arabs 2011 amount? <context>: CREATE TABLE table_1939367_1 (arabs_2011 VARCHAR, province VARCHAR) | SELECT arabs_2011 FROM table_1939367_1 WHERE province = "Nunavut" |
6,428 | <question>: When did the tournament, in which the runner-up was Song-Hee Kim, happen <context>: CREATE TABLE table_1940012_2 (date VARCHAR, runner_s__up VARCHAR) | SELECT date FROM table_1940012_2 WHERE runner_s__up = "Song-Hee Kim" |
6,429 | <question>: What was the amount of winners share (in $) in the game with a margin victory of 2 strokes? <context>: CREATE TABLE table_1940012_2 (winners_share___$__ VARCHAR, margin_of_victory VARCHAR) | SELECT winners_share___$__ FROM table_1940012_2 WHERE margin_of_victory = "2 strokes" |
6,430 | <question>: What was the winning score in the Sybase Classic tournament? <context>: CREATE TABLE table_1940012_2 (winning_score VARCHAR, tournament VARCHAR) | SELECT winning_score FROM table_1940012_2 WHERE tournament = "Sybase Classic" |
6,431 | <question>: What was the winning score in the tournament, ending with Birdie Kim as a runner-up? <context>: CREATE TABLE table_1940012_2 (winning_score VARCHAR, runner_s__up VARCHAR) | SELECT winning_score FROM table_1940012_2 WHERE runner_s__up = "Birdie Kim" |
6,432 | <question>: How many Latin Americans were there in the Northwest Territories in 2011? <context>: CREATE TABLE table_1939405_2 (latin_americans_2011 INTEGER, province VARCHAR) | SELECT MIN(latin_americans_2011) FROM table_1939405_2 WHERE province = "Northwest Territories" |
6,433 | <question>: How many results of the count of Latin Americans in Yukon in 2001 are there? <context>: CREATE TABLE table_1939405_2 (latin_americans_2001 VARCHAR, province VARCHAR) | SELECT COUNT(latin_americans_2001) FROM table_1939405_2 WHERE province = "Yukon" |
6,434 | <question>: What's the percentage in 2001 in Manitoba where the percentage in 2011 is 0.8%? <context>: CREATE TABLE table_1939405_2 (_percentage_2001 VARCHAR, _percentage_2011 VARCHAR, province VARCHAR) | SELECT _percentage_2001 FROM table_1939405_2 WHERE _percentage_2011 = "0.8%" AND province = "Manitoba" |
6,435 | <question>: What are the percentages in 2001 in all the provinces where the percentage in 2011 is 0.2%? <context>: CREATE TABLE table_1939405_2 (_percentage_2001 VARCHAR, _percentage_2011 VARCHAR) | SELECT _percentage_2001 FROM table_1939405_2 WHERE _percentage_2011 = "0.2%" |
6,436 | <question>: How many Latin Americans were there in 2001 in the province with 0.0% 2001 and 0.2% 2011? <context>: CREATE TABLE table_1939405_2 (latin_americans_2001 INTEGER, _percentage_2001 VARCHAR, _percentage_2011 VARCHAR) | SELECT MAX(latin_americans_2001) FROM table_1939405_2 WHERE _percentage_2001 = "0.0%" AND _percentage_2011 = "0.2%" |
6,437 | <question>: How many Latin Americans lived in 2011 in Saskatchewan? <context>: CREATE TABLE table_1939405_2 (latin_americans_2011 INTEGER, province VARCHAR) | SELECT MIN(latin_americans_2011) FROM table_1939405_2 WHERE province = "Saskatchewan" |
6,438 | <question>: What is the minimum number of wins possible for the Champ Car World Series among all the drivers? <context>: CREATE TABLE table_19524523_1 (champ_car_world_series__2004_2007_ INTEGER) | SELECT MIN(champ_car_world_series__2004_2007_) FROM table_19524523_1 |
6,439 | <question>: What is the most Champ Car wins for any driver with a USAC record of 2? <context>: CREATE TABLE table_19524523_1 (champ_car_world_series__2004_2007_ INTEGER, usac__1956_1995_ VARCHAR) | SELECT MAX(champ_car_world_series__2004_2007_) FROM table_19524523_1 WHERE usac__1956_1995_ = 2 |
6,440 | <question>: How many afc titles did the Cleveland Browns have? <context>: CREATE TABLE table_1952065_4 (afc_titles INTEGER, teams_with_division_titles VARCHAR) | SELECT MAX(afc_titles) FROM table_1952065_4 WHERE teams_with_division_titles = "Cleveland Browns" |
6,441 | <question>: How many division championships did the Pittsburgh Steelers have? <context>: CREATE TABLE table_1952065_4 (division_championships VARCHAR, teams_with_division_titles VARCHAR) | SELECT division_championships FROM table_1952065_4 WHERE teams_with_division_titles = "Pittsburgh Steelers" |
6,442 | <question>: How many afc titles were there when there were 2 super bowl wins? <context>: CREATE TABLE table_1952065_4 (afc_titles INTEGER, super_bowl_wins VARCHAR) | SELECT MAX(afc_titles) FROM table_1952065_4 WHERE super_bowl_wins = 2 |
6,443 | <question>: How many division title teams were in the division championships 9 times? <context>: CREATE TABLE table_1952065_4 (teams_with_division_titles VARCHAR, division_championships VARCHAR) | SELECT COUNT(teams_with_division_titles) FROM table_1952065_4 WHERE division_championships = 9 |
6,444 | <question>: What is the highest number of division championships where playoff berths were 11? <context>: CREATE TABLE table_1952065_4 (division_championships INTEGER, playoff_berths VARCHAR) | SELECT MAX(division_championships) FROM table_1952065_4 WHERE playoff_berths = 11 |
6,445 | <question>: Who in the original Toronto cast played the character played by Kate Rockwell in the current Broadway cast? <context>: CREATE TABLE table_19529639_3 (original_toronto_cast VARCHAR, current_broadway_cast VARCHAR) | SELECT original_toronto_cast FROM table_19529639_3 WHERE current_broadway_cast = "Kate Rockwell" |
6,446 | <question>: What member of the current West End cast plays the character played by Jodie Jacobs in the original West End cast? <context>: CREATE TABLE table_19529639_3 (current_west_end_cast VARCHAR, original_west_end_cast VARCHAR) | SELECT current_west_end_cast FROM table_19529639_3 WHERE original_west_end_cast = "Jodie Jacobs" |
6,447 | <question>: What member of the current Broadway cast plays the character played by Constantine Maroulis from the original Broadway cast? <context>: CREATE TABLE table_19529639_3 (current_broadway_cast VARCHAR, original_broadway_cast VARCHAR) | SELECT current_broadway_cast FROM table_19529639_3 WHERE original_broadway_cast = "Constantine Maroulis" |
6,448 | <question>: How many different actors from the Second national tour year 2 played the character played by Oliver Tompsett from the original West End cast? <context>: CREATE TABLE table_19529639_3 (second_national_tour_year_2 VARCHAR, original_west_end_cast VARCHAR) | SELECT COUNT(second_national_tour_year_2) FROM table_19529639_3 WHERE original_west_end_cast = "Oliver Tompsett" |
6,449 | <question>: What member of the original Toronto cast played the character played by Constantine Maroulis in the first national tour cast? <context>: CREATE TABLE table_19529639_3 (original_toronto_cast VARCHAR, first_national_tour_cast VARCHAR) | SELECT original_toronto_cast FROM table_19529639_3 WHERE first_national_tour_cast = "Constantine Maroulis" |
6,450 | <question>: Name the # for bill finger edmond hamilton dick sprang , et al. <context>: CREATE TABLE table_19534677_1 (_number VARCHAR, creators VARCHAR) | SELECT _number FROM table_19534677_1 WHERE creators = "Bill Finger Edmond Hamilton Dick Sprang , et al." |
6,451 | <question>: Name the volume line for number 8 <context>: CREATE TABLE table_19534677_1 (volume_line VARCHAR, _number VARCHAR) | SELECT volume_line FROM table_19534677_1 WHERE _number = 8 |
6,452 | <question>: Name the total number for material collected for 978-1401221935 <context>: CREATE TABLE table_19534677_1 (material_collected VARCHAR, isbn VARCHAR) | SELECT COUNT(material_collected) FROM table_19534677_1 WHERE isbn = "978-1401221935" |
6,453 | <question>: Name the umbr of creators for flash of two worlds <context>: CREATE TABLE table_19534677_1 (creators VARCHAR, volume_title VARCHAR) | SELECT COUNT(creators) FROM table_19534677_1 WHERE volume_title = "Flash of Two Worlds" |
6,454 | <question>: Name the total number of material collected for justice league of america by george pΓ©rez, vol. 2 <context>: CREATE TABLE table_19534677_1 (material_collected VARCHAR, volume_title VARCHAR) | SELECT COUNT(material_collected) FROM table_19534677_1 WHERE volume_title = "Justice League of America by George PΓ©rez, Vol. 2" |
6,455 | <question>: What is the highest overall number one(s)? <context>: CREATE TABLE table_19542477_8 (number_one_s_ INTEGER) | SELECT MAX(number_one_s_) FROM table_19542477_8 |
6,456 | <question>: Name the player for 1945 for player <context>: CREATE TABLE table_19611329_1 (year_inducted VARCHAR, inducted_as VARCHAR) | SELECT "player" FROM table_19611329_1 WHERE year_inducted = 1945 AND inducted_as = "player" |
6,457 | <question>: Name the inducted as for joe medwick category:articles with hcards <context>: CREATE TABLE table_19611329_1 (inducted_as VARCHAR, player VARCHAR) | SELECT inducted_as FROM table_19611329_1 WHERE player = "Joe Medwick Category:Articles with hCards" |
6,458 | <question>: What teams drive cars manufactured by Toyota? <context>: CREATE TABLE table_1963459_2 (team VARCHAR, manufacturer VARCHAR) | SELECT team FROM table_1963459_2 WHERE manufacturer = "Toyota" |
6,459 | <question>: What is Jon Thorne's average speed? <context>: CREATE TABLE table_1963459_2 (average_speed__mph_ VARCHAR, team VARCHAR) | SELECT average_speed__mph_ FROM table_1963459_2 WHERE team = "Jon Thorne" |
6,460 | <question>: What day did the race in 1974 take place on? <context>: CREATE TABLE table_1963459_2 (date VARCHAR, year VARCHAR) | SELECT date FROM table_1963459_2 WHERE year = 1974 |
6,461 | <question>: What is Tony Stewart's average speed? <context>: CREATE TABLE table_1963459_2 (average_speed__mph_ VARCHAR, driver VARCHAR) | SELECT average_speed__mph_ FROM table_1963459_2 WHERE driver = "Tony Stewart" |
6,462 | <question>: What year was the average speed 145.24 <context>: CREATE TABLE table_1963459_2 (year INTEGER, average_speed__mph_ VARCHAR) | SELECT MAX(year) FROM table_1963459_2 WHERE average_speed__mph_ = "145.24" |
6,463 | <question>: How many surfaces were played on in 2005 where the score was 6β7 (4β7) , 3β6, 7β6 (7β2) , 3β6? <context>: CREATE TABLE table_1964010_2 (surface VARCHAR, year VARCHAR, score VARCHAR) | SELECT COUNT(surface) FROM table_1964010_2 WHERE year = 2005 AND score = "6β7 (4β7) , 3β6, 7β6 (7β2) , 3β6" |
6,464 | <question>: Who are the opponents of Mike Byron and partner in matches where the score was 6β4, 4β6, 7β6 (7β4)? <context>: CREATE TABLE table_1964010_2 (opponents VARCHAR, score VARCHAR) | SELECT opponents FROM table_1964010_2 WHERE score = "6β4, 4β6, 7β6 (7β4)" |
6,465 | <question>: What player is from the California Golden Seals? <context>: CREATE TABLE table_1965650_10 (player VARCHAR, nhl_team VARCHAR) | SELECT player FROM table_1965650_10 WHERE nhl_team = "California Golden Seals" |
6,466 | <question>: What team does Lee Palmer play for? <context>: CREATE TABLE table_1965650_10 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_1965650_10 WHERE player = "Lee Palmer" |
6,467 | <question>: What country is Alain Labrecque from? <context>: CREATE TABLE table_1965650_10 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_1965650_10 WHERE player = "Alain Labrecque" |
6,468 | <question>: What is Boston Bruins minimum pick? <context>: CREATE TABLE table_1965650_10 (pick__number INTEGER, nhl_team VARCHAR) | SELECT MIN(pick__number) FROM table_1965650_10 WHERE nhl_team = "Boston Bruins" |
6,469 | <question>: Name the position of glenn goldup <context>: CREATE TABLE table_1965650_2 (position VARCHAR, player VARCHAR) | SELECT position FROM table_1965650_2 WHERE player = "Glenn Goldup" |
6,470 | <question>: Name the least pick number for colin campbell <context>: CREATE TABLE table_1965650_2 (pick__number INTEGER, player VARCHAR) | SELECT MIN(pick__number) FROM table_1965650_2 WHERE player = "Colin Campbell" |
6,471 | <question>: Name the player for pick number for 30 <context>: CREATE TABLE table_1965650_2 (player VARCHAR, pick__number VARCHAR) | SELECT player FROM table_1965650_2 WHERE pick__number = 30 |
6,472 | <question>: Name the college/junior club team for jimmy jones <context>: CREATE TABLE table_1965650_2 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_1965650_2 WHERE player = "Jimmy Jones" |
6,473 | <question>: Who was the MVP the season Scaligera Verona were Champions? <context>: CREATE TABLE table_19651669_1 (mvp VARCHAR, champion VARCHAR) | SELECT mvp FROM table_19651669_1 WHERE champion = "Scaligera Verona" |
6,474 | <question>: Who was the finalist in the season 2007-08? <context>: CREATE TABLE table_19651669_1 (finalist VARCHAR, season VARCHAR) | SELECT finalist FROM table_19651669_1 WHERE season = "2007-08" |
6,475 | <question>: Who was the finalist when the final venue was Varese? <context>: CREATE TABLE table_19651669_1 (finalist VARCHAR, final_venue VARCHAR) | SELECT finalist FROM table_19651669_1 WHERE final_venue = "Varese" |
6,476 | <question>: Who was the finalist when the MVP was Romain Sato? <context>: CREATE TABLE table_19651669_1 (finalist VARCHAR, mvp VARCHAR) | SELECT finalist FROM table_19651669_1 WHERE mvp = "Romain Sato" |
6,477 | <question>: Who was the champion for the 1998-99 season? <context>: CREATE TABLE table_19651669_1 (champion VARCHAR, season VARCHAR) | SELECT champion FROM table_19651669_1 WHERE season = "1998-99" |
6,478 | <question>: How many final venues were there in the 1997-98 season? <context>: CREATE TABLE table_19651669_1 (final_venue VARCHAR, season VARCHAR) | SELECT COUNT(final_venue) FROM table_19651669_1 WHERE season = "1997-98" |
6,479 | <question>: What player was drafted to the Detroit Red Wings? <context>: CREATE TABLE table_1965650_7 (player VARCHAR, nhl_team VARCHAR) | SELECT player FROM table_1965650_7 WHERE nhl_team = "Detroit Red Wings" |
6,480 | <question>: Who did Dan Follet play for before the draft? <context>: CREATE TABLE table_1965650_7 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_1965650_7 WHERE player = "Dan Follet" |
6,481 | <question>: How many teams have a player named Denis Andersen? <context>: CREATE TABLE table_1965650_7 (nhl_team VARCHAR, player VARCHAR) | SELECT COUNT(nhl_team) FROM table_1965650_7 WHERE player = "Denis Andersen" |
6,482 | <question>: Which College did the Buffalo Sabres' pick play for? <context>: CREATE TABLE table_1965650_7 (college_junior_club_team VARCHAR, nhl_team VARCHAR) | SELECT college_junior_club_team FROM table_1965650_7 WHERE nhl_team = "Buffalo Sabres" |
6,483 | <question>: What NHL team does Denis Desgagnes play for? <context>: CREATE TABLE table_1965650_8 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_1965650_8 WHERE player = "Denis Desgagnes" |
6,484 | <question>: What cub team or college did Bob Law come from? <context>: CREATE TABLE table_1965650_8 (college_junior_club_team VARCHAR, player VARCHAR) | SELECT college_junior_club_team FROM table_1965650_8 WHERE player = "Bob Law" |
6,485 | <question>: What NHL team did jim koleff play on? <context>: CREATE TABLE table_1965650_8 (nhl_team VARCHAR, player VARCHAR) | SELECT nhl_team FROM table_1965650_8 WHERE player = "Jim Koleff" |
6,486 | <question>: How many teams have skyhawks as a nickname? <context>: CREATE TABLE table_1969634_1 (division VARCHAR, nickname VARCHAR) | SELECT COUNT(division) FROM table_1969634_1 WHERE nickname = "Skyhawks" |
6,487 | <question>: What is the total enrollment for the school in garden city, new york? <context>: CREATE TABLE table_1969634_1 (enrollment VARCHAR, location VARCHAR) | SELECT enrollment FROM table_1969634_1 WHERE location = "Garden City, New York" |
6,488 | <question>: How many schools with greyhounds as their nickname? <context>: CREATE TABLE table_1969634_1 (institution VARCHAR, nickname VARCHAR) | SELECT COUNT(institution) FROM table_1969634_1 WHERE nickname = "Greyhounds" |
6,489 | <question>: How many schools named southern new hampshire university? <context>: CREATE TABLE table_1969634_1 (enrollment VARCHAR, institution VARCHAR) | SELECT COUNT(enrollment) FROM table_1969634_1 WHERE institution = "Southern New Hampshire University" |
6,490 | <question>: When no.55 ipb spartak racing is the g1 winning team what are the results? <context>: CREATE TABLE table_19722436_2 (results VARCHAR, gt1_winning_team VARCHAR) | SELECT results FROM table_19722436_2 WHERE gt1_winning_team = "No.55 IPB Spartak Racing" |
6,491 | <question>: When peter kox roman rusinov is the gt1 of the winning team how many lmp1 winning teams are there? <context>: CREATE TABLE table_19722436_2 (lmp1_winning_team VARCHAR, gt1_winning_team VARCHAR) | SELECT COUNT(lmp1_winning_team) FROM table_19722436_2 WHERE gt1_winning_team = "Peter Kox Roman Rusinov" |
6,492 | <question>: When julien jousse patrice goueslard yann clairay is teh gt1 of the winning team how many measurements of rnd. are there? <context>: CREATE TABLE table_19722436_2 (rnd VARCHAR, gt1_winning_team VARCHAR) | SELECT COUNT(rnd) FROM table_19722436_2 WHERE gt1_winning_team = "Julien Jousse Patrice Goueslard Yann Clairay" |
6,493 | <question>: How many nicknames were associated with Milton, Massachusetts? <context>: CREATE TABLE table_1973729_1 (nickname VARCHAR, location VARCHAR) | SELECT COUNT(nickname) FROM table_1973729_1 WHERE location = "Milton, Massachusetts" |
6,494 | <question>: Where is the Eastern Nazarene College located? <context>: CREATE TABLE table_1973729_1 (location VARCHAR, institution VARCHAR) | SELECT location FROM table_1973729_1 WHERE institution = "Eastern Nazarene College" |
6,495 | <question>: How many years are listed under joined for the Nor'easters? <context>: CREATE TABLE table_1973729_1 (joined VARCHAR, nickname VARCHAR) | SELECT COUNT(joined) FROM table_1973729_1 WHERE nickname = "Nor'easters" |
6,496 | <question>: What location contains a school that has an enrollment of 2686? <context>: CREATE TABLE table_1973729_1 (location VARCHAR, enrollment VARCHAR) | SELECT location FROM table_1973729_1 WHERE enrollment = 2686 |
6,497 | <question>: In what year did the Lions join? <context>: CREATE TABLE table_1973729_1 (joined INTEGER, nickname VARCHAR) | SELECT MIN(joined) FROM table_1973729_1 WHERE nickname = "Lions" |
6,498 | <question>: Which conference has the nickname Chargers? <context>: CREATE TABLE table_1973729_2 (current_conference VARCHAR, nickname VARCHAR) | SELECT current_conference FROM table_1973729_2 WHERE nickname = "Chargers" |
6,499 | <question>: Which conference has the nickname Lions? <context>: CREATE TABLE table_1973729_2 (current_conference VARCHAR, nickname VARCHAR) | SELECT current_conference FROM table_1973729_2 WHERE nickname = "Lions" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.