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