question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
Which skipper has 78 points?
CREATE TABLE table_name_90 (skipper VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT skipper FROM table_name_90 WHERE points = \"78\"" }
Which Overall place has a Yacht name of lg flatron?
CREATE TABLE table_name_57 (overall_place VARCHAR, yacht_name VARCHAR)
{ "SQL_Query": "SELECT overall_place FROM table_name_57 WHERE yacht_name = \"lg flatron\"" }
Which Combined elapsed time has a Skipper of stephen wilkins?
CREATE TABLE table_name_17 (combined_elapsed_time VARCHAR, skipper VARCHAR)
{ "SQL_Query": "SELECT combined_elapsed_time FROM table_name_17 WHERE skipper = \"stephen wilkins\"" }
Before the year 1988, what is the lowest number of points that entrant Coloni SpA scored?
CREATE TABLE table_name_84 (points INTEGER, entrant VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT MIN(points) FROM table_name_84 WHERE entrant = \"coloni spa\" AND year < 1988" }
Which chassis used by the entrant Automobiles Gonfaronnaises Sportives scored 0 points?
CREATE TABLE table_name_65 (chassis VARCHAR, points VARCHAR, entrant VARCHAR)
{ "SQL_Query": "SELECT chassis FROM table_name_65 WHERE points = 0 AND entrant = \"automobiles gonfaronnaises sportives\"" }
Who was the entrant before 1988?
CREATE TABLE table_name_41 (entrant VARCHAR, year INTEGER)
{ "SQL_Query": "SELECT entrant FROM table_name_41 WHERE year < 1988" }
Which engine was used in 1987?
CREATE TABLE table_name_89 (engine VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT engine FROM table_name_89 WHERE year = 1987" }
What league did they play in 2001?
CREATE TABLE table_name_39 (league VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT league FROM table_name_39 WHERE year = 2001" }
What open cup did they play in when they finished 2nd, northeast in the reg. season?
CREATE TABLE table_name_21 (open_cup VARCHAR, reg_season VARCHAR)
{ "SQL_Query": "SELECT open_cup FROM table_name_21 WHERE reg_season = \"2nd, northeast\"" }
What is the week with a date of October 9, 1983, and attendance smaller than 40,492?
CREATE TABLE table_name_27 (week VARCHAR, date VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT COUNT(week) FROM table_name_27 WHERE date = \"october 9, 1983\" AND attendance < 40 OFFSET 492" }
What is the lowest attendance with week 14?
CREATE TABLE table_name_30 (attendance INTEGER, week VARCHAR)
{ "SQL_Query": "SELECT MIN(attendance) FROM table_name_30 WHERE week = 14" }
Where did the Oakland Raiders play in week 12 of their 1976 season?
CREATE TABLE table_name_90 (game_site VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT game_site FROM table_name_90 WHERE week = 12" }
How many years did Barclay Nordica Arrows BMW enter with Cosworth v8 engine?
CREATE TABLE table_name_43 (year INTEGER, entrant VARCHAR, engine VARCHAR)
{ "SQL_Query": "SELECT SUM(year) FROM table_name_43 WHERE entrant = \"barclay nordica arrows bmw\" AND engine = \"cosworth v8\"" }
How many years did barclay nordica arrows bmw enter with a bmw str-4 t/c engine with less than 1 point?
CREATE TABLE table_name_98 (year INTEGER, points VARCHAR, engine VARCHAR, entrant VARCHAR)
{ "SQL_Query": "SELECT SUM(year) FROM table_name_98 WHERE engine = \"bmw str-4 t/c\" AND entrant = \"barclay nordica arrows bmw\" AND points < 1" }
How many years was ensign n180b a Chassis with 4 points?
CREATE TABLE table_name_12 (year INTEGER, points VARCHAR, chassis VARCHAR)
{ "SQL_Query": "SELECT SUM(year) FROM table_name_12 WHERE points = 4 AND chassis = \"ensign n180b\"" }
What is the division record for the Indians?
CREATE TABLE table_name_26 (division_record VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT division_record FROM table_name_26 WHERE team = \"indians\"" }
What is the overall record of Indian River?
CREATE TABLE table_name_17 (overall_record VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT overall_record FROM table_name_17 WHERE school = \"indian river\"" }
What was the season outcome of Lake Forest?
CREATE TABLE table_name_43 (season_outcome VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT season_outcome FROM table_name_43 WHERE school = \"lake forest\"" }
How many Deciles are coed?
CREATE TABLE table_name_51 (decile VARCHAR, gender VARCHAR)
{ "SQL_Query": "SELECT COUNT(decile) FROM table_name_51 WHERE gender = \"coed\"" }
Which is the lowest Decile that is coed?
CREATE TABLE table_name_94 (decile INTEGER, gender VARCHAR)
{ "SQL_Query": "SELECT MIN(decile) FROM table_name_94 WHERE gender = \"coed\"" }
What are the years for Kawerau Putauaki School?
CREATE TABLE table_name_98 (years VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT years FROM table_name_98 WHERE name = \"kawerau putauaki school\"" }
What is the round or race of the winning driver Charles Hollings and what was his pole position?
CREATE TABLE table_name_32 (round___race VARCHAR, winning_driver VARCHAR, pole_position VARCHAR)
{ "SQL_Query": "SELECT round___race FROM table_name_32 WHERE winning_driver = \"charles hollings\" AND pole_position = \"charles hollings\"" }
What was the earliest year in which long jump was performed in the world indoor Championships in 5th position?
CREATE TABLE table_name_69 (year INTEGER, position VARCHAR, performance VARCHAR, competition VARCHAR)
{ "SQL_Query": "SELECT MIN(year) FROM table_name_69 WHERE performance = \"long jump\" AND competition = \"world indoor championships\" AND position = \"5th\"" }
What was the latest year in which she took 4th position in Budapest, Hungary?
CREATE TABLE table_name_12 (year INTEGER, position VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT MAX(year) FROM table_name_12 WHERE position = \"4th\" AND venue = \"budapest, hungary\"" }
Which astronaut went on the Apollo 16 mission at the age of 36y 6m 18d to step on the moon?
CREATE TABLE table_name_20 (name VARCHAR, mission VARCHAR, age_at_first_step VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_20 WHERE mission = \"apollo 16\" AND age_at_first_step = \"36y 6m 18d\"" }
David Scott went on which mission?
CREATE TABLE table_name_8 (mission VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT mission FROM table_name_8 WHERE name = \"david scott\"" }
The astronaut who was 37y 8m 4d when making a first step on the moon was in which service?
CREATE TABLE table_name_65 (service VARCHAR, age_at_first_step VARCHAR)
{ "SQL_Query": "SELECT service FROM table_name_65 WHERE age_at_first_step = \"37y 8m 4d\"" }
Pete Conrad was on the Apollo 12 mission but also had what Lunar EVA dates?
CREATE TABLE table_name_27 (lunar_eva_dates VARCHAR, mission VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT lunar_eva_dates FROM table_name_27 WHERE mission = \"apollo 12\" AND name = \"pete conrad\"" }
The Apollo astronaut who was 38y 9m 7d when first stepping on the moon is who?
CREATE TABLE table_name_27 (born VARCHAR, age_at_first_step VARCHAR)
{ "SQL_Query": "SELECT born FROM table_name_27 WHERE age_at_first_step = \"38y 9m 7d\"" }
Which class has a year prior to 2011 and audi r15 tdi as the chassis?
CREATE TABLE table_name_72 (class VARCHAR, year VARCHAR, chassis VARCHAR)
{ "SQL_Query": "SELECT class FROM table_name_72 WHERE year < 2011 AND chassis = \"audi r15 tdi\"" }
Which engine has a year later than 2006 and 60 as the points?
CREATE TABLE table_name_51 (engine VARCHAR, year VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT engine FROM table_name_51 WHERE year > 2006 AND points = \"60\"" }
How many years has an engine of audi 3.6l turbo v8 and 1st as the rank with an audi r8r as the chassis?
CREATE TABLE table_name_10 (year VARCHAR, chassis VARCHAR, engine VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_name_10 WHERE engine = \"audi 3.6l turbo v8\" AND rank = \"1st\" AND chassis = \"audi r8r\"" }
Which entrant has 25th as the rank?
CREATE TABLE table_name_22 (entrant VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT entrant FROM table_name_22 WHERE rank = \"25th\"" }
What is the average year Rich Beem had a to par less than 17?
CREATE TABLE table_name_20 (year_won INTEGER, player VARCHAR, to_par VARCHAR)
{ "SQL_Query": "SELECT AVG(year_won) FROM table_name_20 WHERE player = \"rich beem\" AND to_par < 17" }
What is the earliest year won with a total bigger than 156?
CREATE TABLE table_name_81 (year_won INTEGER, total INTEGER)
{ "SQL_Query": "SELECT MIN(year_won) FROM table_name_81 WHERE total > 156" }
What is the total for Bob Tway for the year won before 2002 with a to par bigger than 7?
CREATE TABLE table_name_2 (total VARCHAR, to_par VARCHAR, year_won VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT COUNT(total) FROM table_name_2 WHERE year_won < 2002 AND player = \"bob tway\" AND to_par > 7" }
What is the to par for Paul Azinger from the United States after 1986 for a total bigger than 145?
CREATE TABLE table_name_72 (to_par VARCHAR, total VARCHAR, player VARCHAR, country VARCHAR, year_won VARCHAR)
{ "SQL_Query": "SELECT COUNT(to_par) FROM table_name_72 WHERE country = \"united states\" AND year_won > 1986 AND player = \"paul azinger\" AND total > 145" }
What is the earliest year won Paul Azinger had with a to par higher than 5?
CREATE TABLE table_name_12 (year_won INTEGER, player VARCHAR, to_par VARCHAR)
{ "SQL_Query": "SELECT MIN(year_won) FROM table_name_12 WHERE player = \"paul azinger\" AND to_par > 5" }
What is the year won by Australia with a to par bigger than 16?
CREATE TABLE table_name_22 (year_won VARCHAR, country VARCHAR, to_par VARCHAR)
{ "SQL_Query": "SELECT COUNT(year_won) FROM table_name_22 WHERE country = \"australia\" AND to_par > 16" }
What is the Lifespan when the Representative is Theodore F. Kluttz?
CREATE TABLE table_name_96 (lifespan VARCHAR, representative VARCHAR)
{ "SQL_Query": "SELECT lifespan FROM table_name_96 WHERE representative = \"theodore f. kluttz\"" }
What week's game had a result of l 35–37?
CREATE TABLE table_name_88 (week VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT week FROM table_name_88 WHERE result = \"l 35–37\"" }
What year was trio brdeact wind allass the entrant?
CREATE TABLE table_name_16 (year VARCHAR, entrant VARCHAR)
{ "SQL_Query": "SELECT year FROM table_name_16 WHERE entrant = \"trio brdeact wind allass\"" }
What is the year when kurtis kraft 500f was the chassis?
CREATE TABLE table_name_46 (year INTEGER, chassis VARCHAR)
{ "SQL_Query": "SELECT SUM(year) FROM table_name_46 WHERE chassis = \"kurtis kraft 500f\"" }
What is the earliest year when the points were more than 0?
CREATE TABLE table_name_38 (year INTEGER, points INTEGER)
{ "SQL_Query": "SELECT MIN(year) FROM table_name_38 WHERE points > 0" }
What's the school name in Balclutha that has a Decile of 7 and a roll larger than 186?
CREATE TABLE table_name_91 (name VARCHAR, roll VARCHAR, area VARCHAR, decile VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_91 WHERE area = \"balclutha\" AND decile < 7 AND roll > 186" }
Which school in Balclutha has a roll smaller than 55?
CREATE TABLE table_name_52 (name VARCHAR, area VARCHAR, roll VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_52 WHERE area = \"balclutha\" AND roll < 55" }
When has winnipeg jets with a Score of 4–6?
CREATE TABLE table_name_82 (date VARCHAR, home VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_82 WHERE home = \"winnipeg jets\" AND score = \"4–6\"" }
When is Edmonton Oilers in?
CREATE TABLE table_name_99 (date VARCHAR, home VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_99 WHERE home = \"edmonton oilers\"" }
What is the Score that has a Winnipeg Jets as Visitor on april 7?
CREATE TABLE table_name_10 (score VARCHAR, visitor VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_10 WHERE visitor = \"winnipeg jets\" AND date = \"april 7\"" }
What is the Score on April 6?
CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_71 WHERE date = \"april 6\"" }
When has a Record of 1–0?
CREATE TABLE table_name_52 (date VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_52 WHERE record = \"1–0\"" }
What is the LLWS when the Year is 2003?
CREATE TABLE table_name_37 (llws VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT llws FROM table_name_37 WHERE year = 2003" }
What is the earliest Year when the City is Peabody?
CREATE TABLE table_name_2 (year INTEGER, city VARCHAR)
{ "SQL_Query": "SELECT MIN(year) FROM table_name_2 WHERE city = \"peabody\"" }
What is the total number of Years when the LLWS is 4th place, and when the City is Westport?
CREATE TABLE table_name_19 (year VARCHAR, llws VARCHAR, city VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_name_19 WHERE llws = \"4th place\" AND city = \"westport\"" }
What team has Pony as the kit manufacturer and Gary Mabbutt as the captain?
CREATE TABLE table_name_9 (team VARCHAR, kit_manufacturer VARCHAR, captain VARCHAR)
{ "SQL_Query": "SELECT team FROM table_name_9 WHERE kit_manufacturer = \"pony\" AND captain = \"gary mabbutt\"" }
Who is the manager 1 for Leeds United?
CREATE TABLE table_name_95 (manager_1 VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT manager_1 FROM table_name_95 WHERE team = \"leeds united\"" }
What is the team with a Pony kit manufacturer and Julian Dicks as the captain?
CREATE TABLE table_name_27 (team VARCHAR, kit_manufacturer VARCHAR, captain VARCHAR)
{ "SQL_Query": "SELECT team FROM table_name_27 WHERE kit_manufacturer = \"pony\" AND captain = \"julian dicks\"" }
What team has a kit manufacturer of Umbro and Eric Cantona as captain?
CREATE TABLE table_name_41 (team VARCHAR, kit_manufacturer VARCHAR, captain VARCHAR)
{ "SQL_Query": "SELECT team FROM table_name_41 WHERE kit_manufacturer = \"umbro\" AND captain = \"eric cantona\"" }
Who is the manager 1 with Puma as the kit manufacturer and Puma as the shirt sponsor?
CREATE TABLE table_name_29 (manager_1 VARCHAR, kit_manufacturer VARCHAR, shirt_sponsor VARCHAR)
{ "SQL_Query": "SELECT manager_1 FROM table_name_29 WHERE kit_manufacturer = \"puma\" AND shirt_sponsor = \"puma\"" }
What is the kit manufacturer with Walkers as the shirt sponsor?
CREATE TABLE table_name_1 (kit_manufacturer VARCHAR, shirt_sponsor VARCHAR)
{ "SQL_Query": "SELECT kit_manufacturer FROM table_name_1 WHERE shirt_sponsor = \"walkers\"" }
Name the average points for dallara 3087 lola t88/50 and year before 1988
CREATE TABLE table_name_63 (points INTEGER, chassis VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT AVG(points) FROM table_name_63 WHERE chassis = \"dallara 3087 lola t88/50\" AND year < 1988" }
Name the sum of points for 1992
CREATE TABLE table_name_38 (points INTEGER, year VARCHAR)
{ "SQL_Query": "SELECT SUM(points) FROM table_name_38 WHERE year = 1992" }
Name the points for year more than 1987
CREATE TABLE table_name_56 (points VARCHAR, year INTEGER)
{ "SQL_Query": "SELECT points FROM table_name_56 WHERE year > 1987" }
Name the year for points less than 20 and chassis of dallara 3087
CREATE TABLE table_name_62 (year VARCHAR, points VARCHAR, chassis VARCHAR)
{ "SQL_Query": "SELECT year FROM table_name_62 WHERE points < 20 AND chassis = \"dallara 3087\"" }
What is the most apps that a has a total season and 3 goals?
CREATE TABLE table_name_22 (apps INTEGER, season VARCHAR, goals VARCHAR)
{ "SQL_Query": "SELECT MAX(apps) FROM table_name_22 WHERE season = \"total\" AND goals > 3" }
What is the final number of apps with 2 goals?
CREATE TABLE table_name_90 (apps VARCHAR, goals VARCHAR)
{ "SQL_Query": "SELECT COUNT(apps) FROM table_name_90 WHERE goals = 2" }
What date did the episode with a weekly ranking of 14 air?
CREATE TABLE table_name_62 (airdate VARCHAR, bbc_one_weekly_ranking VARCHAR)
{ "SQL_Query": "SELECT airdate FROM table_name_62 WHERE bbc_one_weekly_ranking = 14" }
What is the total number of total viewers with a share of 18.8% and a weekly ranking under 16?
CREATE TABLE table_name_84 (total_viewers VARCHAR, share VARCHAR, bbc_one_weekly_ranking VARCHAR)
{ "SQL_Query": "SELECT COUNT(total_viewers) FROM table_name_84 WHERE share = \"18.8%\" AND bbc_one_weekly_ranking < 16" }
Who has 37 grids?
CREATE TABLE table_name_36 (rider VARCHAR, grid VARCHAR)
{ "SQL_Query": "SELECT rider FROM table_name_36 WHERE grid = 37" }
What is the average grid with more than 23 laps?
CREATE TABLE table_name_78 (grid INTEGER, laps INTEGER)
{ "SQL_Query": "SELECT AVG(grid) FROM table_name_78 WHERE laps > 23" }
What is the average grid with more than 23 laps?
CREATE TABLE table_name_56 (grid INTEGER, laps INTEGER)
{ "SQL_Query": "SELECT AVG(grid) FROM table_name_56 WHERE laps > 23" }
What is the average decile for te puru school?
CREATE TABLE table_name_84 (decile INTEGER, name VARCHAR)
{ "SQL_Query": "SELECT AVG(decile) FROM table_name_84 WHERE name = \"te puru school\"" }
What is the total decile with an Area of whitianga, and a Roll smaller than 835?
CREATE TABLE table_name_64 (decile INTEGER, area VARCHAR, roll VARCHAR)
{ "SQL_Query": "SELECT SUM(decile) FROM table_name_64 WHERE area = \"whitianga\" AND roll < 835" }
Which name has an Area of kennedy bay?
CREATE TABLE table_name_50 (name VARCHAR, area VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_50 WHERE area = \"kennedy bay\"" }
Which years have a Decile larger than 4, and an Area of thames?
CREATE TABLE table_name_55 (years VARCHAR, decile VARCHAR, area VARCHAR)
{ "SQL_Query": "SELECT years FROM table_name_55 WHERE decile > 4 AND area = \"thames\"" }
Which Authority has a Decile smaller than 6, and an Area of opoutere?
CREATE TABLE table_name_68 (authority VARCHAR, decile VARCHAR, area VARCHAR)
{ "SQL_Query": "SELECT authority FROM table_name_68 WHERE decile < 6 AND area = \"opoutere\"" }
Which gender has Years of 1–8, an Authority of state, a Roll less than 184, and a Name of matatoki school?
CREATE TABLE table_name_17 (gender VARCHAR, name VARCHAR, roll VARCHAR, years VARCHAR, authority VARCHAR)
{ "SQL_Query": "SELECT gender FROM table_name_17 WHERE years = \"1–8\" AND authority = \"state\" AND roll < 184 AND name = \"matatoki school\"" }
What was the tournament that resulted in a winning score of –4 (71-72-72-69=284)?
CREATE TABLE table_name_34 (tournament VARCHAR, winning_score VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_34 WHERE winning_score = –4(71 - 72 - 72 - 69 = 284)" }
What was the winning score of the event where Brian Kamm was the runner-up?
CREATE TABLE table_name_47 (winning_score VARCHAR, runner_s__up VARCHAR)
{ "SQL_Query": "SELECT winning_score FROM table_name_47 WHERE runner_s__up = \"brian kamm\"" }
Who was the runner-up for the event that ended with a winning score of –15 (66-67-70-70=273)?
CREATE TABLE table_name_27 (runner_s__up VARCHAR, winning_score VARCHAR)
{ "SQL_Query": "SELECT runner_s__up FROM table_name_27 WHERE winning_score = –15(66 - 67 - 70 - 70 = 273)" }
On what date was the Nike Colorado Classic held?
CREATE TABLE table_name_39 (date VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_39 WHERE tournament = \"nike colorado classic\"" }
What was the winning score of the Buy.com Siouxland Open?
CREATE TABLE table_name_57 (winning_score VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT winning_score FROM table_name_57 WHERE tournament = \"buy.com siouxland open\"" }
What is the total with lower than rank 8, and higher than 27.6 score and 13.8 difficulty?
CREATE TABLE table_name_63 (total INTEGER, difficulty_score VARCHAR, rank VARCHAR, routine_score VARCHAR)
{ "SQL_Query": "SELECT MIN(total) FROM table_name_63 WHERE rank > 8 AND routine_score > 27.6 AND difficulty_score = \"13.8\"" }
What is the average medal total of the country who had 0 silver medals and participated in less than 15 games?
CREATE TABLE table_name_41 (total INTEGER, games VARCHAR, silver VARCHAR)
{ "SQL_Query": "SELECT AVG(total) FROM table_name_41 WHERE games < 15 AND silver < 0" }
What is the least Points with Chassis of forti fg01b forti fg03, and a year less than 1996?
CREATE TABLE table_name_41 (points INTEGER, chassis VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT MIN(points) FROM table_name_41 WHERE chassis = \"forti fg01b forti fg03\" AND year < 1996" }
What is the lowest year for an engine of ford zetec-r v8, and points greater than 0?
CREATE TABLE table_name_47 (year INTEGER, engine VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT MIN(year) FROM table_name_47 WHERE engine = \"ford zetec-r v8\" AND points > 0" }
What are the average points for an engine of ford zetec-r v8?
CREATE TABLE table_name_63 (points INTEGER, engine VARCHAR)
{ "SQL_Query": "SELECT AVG(points) FROM table_name_63 WHERE engine = \"ford zetec-r v8\"" }
Name the years for elsthorpe school
CREATE TABLE table_name_78 (years VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT years FROM table_name_78 WHERE name = \"elsthorpe school\"" }
Name the total number of roll for st joseph's school when decile is less than 5
CREATE TABLE table_name_19 (roll VARCHAR, name VARCHAR, decile VARCHAR)
{ "SQL_Query": "SELECT COUNT(roll) FROM table_name_19 WHERE name = \"st joseph's school\" AND decile < 5" }
Name the gender for elsthorpe school
CREATE TABLE table_name_63 (gender VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT gender FROM table_name_63 WHERE name = \"elsthorpe school\"" }
Name the drivers for chassis of season cancelled
CREATE TABLE table_name_88 (drivers VARCHAR, chassis VARCHAR)
{ "SQL_Query": "SELECT drivers FROM table_name_88 WHERE chassis = \"season cancelled\"" }
Name the teams for third points of season cancelled
CREATE TABLE table_name_95 (teams VARCHAR, third__points_ VARCHAR)
{ "SQL_Query": "SELECT teams FROM table_name_95 WHERE third__points_ = \"season cancelled\"" }
Name the engine with rounds of 11 and teams of 25
CREATE TABLE table_name_29 (engine VARCHAR, rounds VARCHAR, teams VARCHAR)
{ "SQL_Query": "SELECT engine FROM table_name_29 WHERE rounds = \"11\" AND teams = \"25\"" }
What was the score for the loss of McDowell (12-7)?
CREATE TABLE table_name_39 (score VARCHAR, loss VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_39 WHERE loss = \"mcdowell (12-7)\"" }
What is the total laps for the year 2011?
CREATE TABLE table_name_1 (laps INTEGER, year VARCHAR)
{ "SQL_Query": "SELECT SUM(laps) FROM table_name_1 WHERE year = 2011" }
Which team is in 9th place?
CREATE TABLE table_name_98 (class VARCHAR, pos VARCHAR)
{ "SQL_Query": "SELECT class AS pos FROM table_name_98 WHERE pos = \"9th\"" }
What is the total of the Divison that is from the country Serbia and Montenegro with apps smaller than 12 with more goals than 0?
CREATE TABLE table_name_69 (division INTEGER, goals VARCHAR, country VARCHAR, apps VARCHAR)
{ "SQL_Query": "SELECT SUM(division) FROM table_name_69 WHERE country = \"serbia and montenegro\" AND apps < 12 AND goals > 0" }
What is the total number of goals that the Partizan team from the country of serbia had that was larger than 1?
CREATE TABLE table_name_8 (goals INTEGER, division VARCHAR, team VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT SUM(goals) FROM table_name_8 WHERE team = \"partizan\" AND country = \"serbia\" AND division > 1" }
What year was the Honda ra168e 1.5 v6 t engine used?
CREATE TABLE table_name_47 (year VARCHAR, engine VARCHAR)
{ "SQL_Query": "SELECT year FROM table_name_47 WHERE engine = \"honda ra168e 1.5 v6 t\"" }
What tyres were used with the mp4/14 chassis?
CREATE TABLE table_name_40 (tyres VARCHAR, chassis VARCHAR)
{ "SQL_Query": "SELECT tyres FROM table_name_40 WHERE chassis = \"mp4/14\"" }