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