question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What is the total number of drawn matches from first game years before 2006 and fewer than 2 matches played?
CREATE TABLE "rugby_spain_internationals_1989" ( "first_game" real, "played" real, "drawn" real, "lost" real, "percentage" text );
SELECT SUM("drawn") FROM "rugby_spain_internationals_1989" WHERE "first_game"<2006 AND "played"<2;
2-13099139-1
What is the highest number of losses associated with 2 matches played, a first game after 1997, and more than 0 draws?
CREATE TABLE "rugby_spain_internationals_1989" ( "first_game" real, "played" real, "drawn" real, "lost" real, "percentage" text );
SELECT MAX("lost") FROM "rugby_spain_internationals_1989" WHERE "played"=2 AND "first_game">1997 AND "drawn">0;
2-13099139-1
What is the Result of the Test match at the Edgbaston Venue on 5,6,7,8 June 1997?
CREATE TABLE "australia_in_england" ( "date" text, "home_captain" text, "away_captain" text, "venue" text, "result" text );
SELECT "result" FROM "australia_in_england" WHERE "date"='5,6,7,8 june 1997';
2-12410929-78
What is the Date of the Test match of Australia in England at The Oval Venue?
CREATE TABLE "australia_in_england" ( "date" text, "home_captain" text, "away_captain" text, "venue" text, "result" text );
SELECT "date" FROM "australia_in_england" WHERE "venue"='the oval';
2-12410929-78
Who was the Away captain for the Test match of Australia in England where the Result was AUS by 264 runs?
CREATE TABLE "australia_in_england" ( "date" text, "home_captain" text, "away_captain" text, "venue" text, "result" text );
SELECT "away_captain" FROM "australia_in_england" WHERE "result"='aus by 264 runs';
2-12410929-78
Who was the Home captain for the Test match of Australia in England at the Edgbaston Venue?
CREATE TABLE "australia_in_england" ( "date" text, "home_captain" text, "away_captain" text, "venue" text, "result" text );
SELECT "home_captain" FROM "australia_in_england" WHERE "venue"='edgbaston';
2-12410929-78
what is the name of the role that has co-protagonist in the notes field and the years of 2008-2009?
CREATE TABLE "telenovelas" ( "year" text, "title" text, "production_company" text, "role" text, "notes" text );
SELECT "role" FROM "telenovelas" WHERE "notes"='co-protagonist' AND "year"='2008-2009';
2-12980239-1
What is the name of the role that has a Title of Olvidarte Jamas?
CREATE TABLE "telenovelas" ( "year" text, "title" text, "production_company" text, "role" text, "notes" text );
SELECT "role" FROM "telenovelas" WHERE "title"='olvidarte jamas';
2-12980239-1
Which production company has the year of 2005 listed?
CREATE TABLE "telenovelas" ( "year" text, "title" text, "production_company" text, "role" text, "notes" text );
SELECT "production_company" FROM "telenovelas" WHERE "year"='2005';
2-12980239-1
What is the name of the role that has a Title of Salud, Dinero y Amor and antagonist in the notes field?
CREATE TABLE "telenovelas" ( "year" text, "title" text, "production_company" text, "role" text, "notes" text );
SELECT "role" FROM "telenovelas" WHERE "notes"='antagonist' AND "title"='salud, dinero y amor';
2-12980239-1
What is the name of the production company that has a year of 2008-2009?
CREATE TABLE "telenovelas" ( "year" text, "title" text, "production_company" text, "role" text, "notes" text );
SELECT "production_company" FROM "telenovelas" WHERE "year"='2008-2009';
2-12980239-1
What is the Authority for Kuranui Primary School that is located in the Area of Tirau?
CREATE TABLE "south_waikato_district" ( "name" text, "years" text, "gender" text, "area" text, "authority" text, "decile" real, "roll" text );
SELECT "authority" FROM "south_waikato_district" WHERE "area"='tirau' AND "name"='kuranui primary school';
2-12146269-9
Which Names have Deciles larger than 7?
CREATE TABLE "south_waikato_district" ( "name" text, "years" text, "gender" text, "area" text, "authority" text, "decile" real, "roll" text );
SELECT "name" FROM "south_waikato_district" WHERE "decile">7;
2-12146269-9
What Gender are the schools that have a Roll of 135?
CREATE TABLE "south_waikato_district" ( "name" text, "years" text, "gender" text, "area" text, "authority" text, "decile" real, "roll" text );
SELECT "gender" FROM "south_waikato_district" WHERE "roll"='135';
2-12146269-9
What is the Name of a state Authority that has a Roll of 72?
CREATE TABLE "south_waikato_district" ( "name" text, "years" text, "gender" text, "area" text, "authority" text, "decile" real, "roll" text );
SELECT "name" FROM "south_waikato_district" WHERE "authority"='state' AND "roll"='72';
2-12146269-9
Which friendly competition took place on 19 April 1979?
CREATE TABLE "international_goals" ( "date" text, "venue" text, "score" text, "result" text, "competition" text );
SELECT "score" FROM "international_goals" WHERE "competition"='friendly' AND "date"='19 april 1979';
2-12886259-1
Which Team 1 has a first leg of 1-0 and a second leg of 0-2?
CREATE TABLE "second_round" ( "team_1" text, "agg" text, "team_2" text, "1st_leg" text, "2nd_leg" text );
SELECT "team_1" FROM "second_round" WHERE "1st_leg"='1-0' AND "2nd_leg"='0-2';
2-12845004-3
Which Team 1 faced Dynamos FC?
CREATE TABLE "second_round" ( "team_1" text, "agg" text, "team_2" text, "1st_leg" text, "2nd_leg" text );
SELECT "team_1" FROM "second_round" WHERE "team_2"='dynamos fc';
2-12845004-3
What is Team 1 Al-Hilal's Agg.?
CREATE TABLE "second_round" ( "team_1" text, "agg" text, "team_2" text, "1st_leg" text, "2nd_leg" text );
SELECT "agg" FROM "second_round" WHERE "team_1"='al-hilal';
2-12845004-3
What Team 2 has a second leg of 1-0?
CREATE TABLE "second_round" ( "team_1" text, "agg" text, "team_2" text, "1st_leg" text, "2nd_leg" text );
SELECT "team_2" FROM "second_round" WHERE "2nd_leg"='1-0';
2-12845004-3
What Team 2 has a second leg of 3-1?
CREATE TABLE "second_round" ( "team_1" text, "agg" text, "team_2" text, "1st_leg" text, "2nd_leg" text );
SELECT "team_2" FROM "second_round" WHERE "2nd_leg"='3-1';
2-12845004-3
Which record happened on the date of May 7?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "record" text );
SELECT "record" FROM "game_log" WHERE "date"='may 7';
2-12208071-3
Which tournament had Lubomira Bacheva as the opponent in the final?
CREATE TABLE "singles" ( "date" text, "tournament" text, "surface" text, "opponent_in_the_final" text, "score" text );
SELECT "tournament" FROM "singles" WHERE "opponent_in_the_final"='lubomira bacheva';
2-12695931-2
Who was the opponent in the final on 5 July 1992?
CREATE TABLE "singles" ( "date" text, "tournament" text, "surface" text, "opponent_in_the_final" text, "score" text );
SELECT "opponent_in_the_final" FROM "singles" WHERE "date"='5 july 1992';
2-12695931-2
What is the date of the tournament where Kyoko Nagatsuka was the opponent in the final?
CREATE TABLE "singles" ( "date" text, "tournament" text, "surface" text, "opponent_in_the_final" text, "score" text );
SELECT "date" FROM "singles" WHERE "opponent_in_the_final"='kyoko nagatsuka';
2-12695931-2
What is the surface at the tournament of Vaihingen?
CREATE TABLE "singles" ( "date" text, "tournament" text, "surface" text, "opponent_in_the_final" text, "score" text );
SELECT "surface" FROM "singles" WHERE "tournament"='vaihingen';
2-12695931-2
What was the surface of the tournament where Anna Benzon was the opponent in the final?
CREATE TABLE "singles" ( "date" text, "tournament" text, "surface" text, "opponent_in_the_final" text, "score" text );
SELECT "surface" FROM "singles" WHERE "opponent_in_the_final"='anna benzon';
2-12695931-2
What is the average position of Eesti Põlevkivi Jõhvi when they had less than 13 points and worse than a -12 goal differential?
CREATE TABLE "eesti_p_levkivi_j_hvi_in_estonian_footba" ( "year" text, "league" text, "position" real, "goals" real, "points" real );
SELECT AVG("position") FROM "eesti_p_levkivi_j_hvi_in_estonian_footba" WHERE "points"<13 AND "goals">-12;
2-12511626-1
What is the to par for the player who had a score of 70-72-70-69=281?
CREATE TABLE "final_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text, "money" real );
SELECT "to_par" FROM "final_round" WHERE "score"='70-72-70-69=281';
2-12626983-7
What year had the qual of totals
CREATE TABLE "indy_500_results" ( "year" text, "start" text, "qual" text, "rank" text, "finish" text, "laps" real );
SELECT "year" FROM "indy_500_results" WHERE "qual"='totals';
2-1252053-1
What qual had a finish of 16 in 1968?
CREATE TABLE "indy_500_results" ( "year" text, "start" text, "qual" text, "rank" text, "finish" text, "laps" real );
SELECT "qual" FROM "indy_500_results" WHERE "finish"='16' AND "year"='1968';
2-1252053-1
What was the finish with the start of 25 and a lap larger than 46?
CREATE TABLE "indy_500_results" ( "year" text, "start" text, "qual" text, "rank" text, "finish" text, "laps" real );
SELECT "finish" FROM "indy_500_results" WHERE "start"='25' AND "laps">46;
2-1252053-1
What was the lowest lap with the ranking of 19?
CREATE TABLE "indy_500_results" ( "year" text, "start" text, "qual" text, "rank" text, "finish" text, "laps" real );
SELECT MIN("laps") FROM "indy_500_results" WHERE "start"='19';
2-1252053-1
Name the least ovrs for wkts of 0
CREATE TABLE "one_day_internationals" ( "player" text, "wkts" real, "runs" real, "econ" real, "ovrs" real );
SELECT MIN("ovrs") FROM "one_day_internationals" WHERE "wkts"=0;
2-13136868-11
Name the average econ for runs more than 703 and ovrs more than 25.5
CREATE TABLE "one_day_internationals" ( "player" text, "wkts" real, "runs" real, "econ" real, "ovrs" real );
SELECT AVG("econ") FROM "one_day_internationals" WHERE "ovrs">25.5 AND "runs">703;
2-13136868-11
What is the average year that has a car that won 0 stages with a position of DNF?
CREATE TABLE "dakar_rally_results" ( "year" real, "class" text, "vehicle" text, "position" text, "stages_won" text );
SELECT AVG("year") FROM "dakar_rally_results" WHERE "class"='car' AND "stages_won"='0' AND "position"='dnf';
2-12927587-5
What is the class that that won 2 stages and has a position of DNF?
CREATE TABLE "dakar_rally_results" ( "year" real, "class" text, "vehicle" text, "position" text, "stages_won" text );
SELECT "class" FROM "dakar_rally_results" WHERE "stages_won"='2' AND "position"='dnf';
2-12927587-5
What position did the BMW vehicle made in 2006 hold?
CREATE TABLE "dakar_rally_results" ( "year" real, "class" text, "vehicle" text, "position" text, "stages_won" text );
SELECT "position" FROM "dakar_rally_results" WHERE "vehicle"='bmw' AND "year"=2006;
2-12927587-5
Which builder has a Fuel Propulsion of diesel, a Model of d40lf, and an Order Year of 2005?
CREATE TABLE "current_fleet_roster" ( "builder" text, "model" text, "length_ft_m" text, "order_year" text, "fuel_propulsion" text, "fleet_series_quantity" text );
SELECT "builder" FROM "current_fleet_roster" WHERE "fuel_propulsion"='diesel' AND "model"='d40lf' AND "order_year"='2005';
2-12328006-1
Which model has a Fleet Series (Quantity) of 11081-11092 (12)?
CREATE TABLE "current_fleet_roster" ( "builder" text, "model" text, "length_ft_m" text, "order_year" text, "fuel_propulsion" text, "fleet_series_quantity" text );
SELECT "model" FROM "current_fleet_roster" WHERE "fleet_series_quantity"='11081-11092 (12)';
2-12328006-1
Which order year has a Fleet Series (Quantity) of 12081-12090 (10)?
CREATE TABLE "current_fleet_roster" ( "builder" text, "model" text, "length_ft_m" text, "order_year" text, "fuel_propulsion" text, "fleet_series_quantity" text );
SELECT "order_year" FROM "current_fleet_roster" WHERE "fleet_series_quantity"='12081-12090 (10)';
2-12328006-1
Which Fleet Series (Quantity) that has a Builder of mci, and an Order Year of 2002?
CREATE TABLE "current_fleet_roster" ( "builder" text, "model" text, "length_ft_m" text, "order_year" text, "fuel_propulsion" text, "fleet_series_quantity" text );
SELECT "fleet_series_quantity" FROM "current_fleet_roster" WHERE "builder"='mci' AND "order_year"='2002';
2-12328006-1
Which Fleet Series (Quantity) has an Order Year of 2010, and a Model of de40lfr?
CREATE TABLE "current_fleet_roster" ( "builder" text, "model" text, "length_ft_m" text, "order_year" text, "fuel_propulsion" text, "fleet_series_quantity" text );
SELECT "fleet_series_quantity" FROM "current_fleet_roster" WHERE "order_year"='2010' AND "model"='de40lfr';
2-12328006-1
Which Fuel Propulsion has a Fleet Series (Quantity) of 04001-04125 (125)?
CREATE TABLE "current_fleet_roster" ( "builder" text, "model" text, "length_ft_m" text, "order_year" text, "fuel_propulsion" text, "fleet_series_quantity" text );
SELECT "fuel_propulsion" FROM "current_fleet_roster" WHERE "fleet_series_quantity"='04001-04125 (125)';
2-12328006-1
Name the sum of roll for morrinsville school
CREATE TABLE "matamata_piako_district" ( "name" text, "years" text, "gender" text, "area" text, "authority" text, "decile" real, "roll" real );
SELECT SUM("roll") FROM "matamata_piako_district" WHERE "name"='morrinsville school';
2-12146269-4
Name the authority for morrinsville college
CREATE TABLE "matamata_piako_district" ( "name" text, "years" text, "gender" text, "area" text, "authority" text, "decile" real, "roll" real );
SELECT "authority" FROM "matamata_piako_district" WHERE "name"='morrinsville college';
2-12146269-4
Name the years when decile was less than 7 for waitoa school
CREATE TABLE "matamata_piako_district" ( "name" text, "years" text, "gender" text, "area" text, "authority" text, "decile" real, "roll" real );
SELECT "years" FROM "matamata_piako_district" WHERE "decile"<7 AND "name"='waitoa school';
2-12146269-4
Name the total number of roll for state authority and stanley avenue school with decile more than 5
CREATE TABLE "matamata_piako_district" ( "name" text, "years" text, "gender" text, "area" text, "authority" text, "decile" real, "roll" real );
SELECT COUNT("roll") FROM "matamata_piako_district" WHERE "authority"='state' AND "name"='stanley avenue school' AND "decile">5;
2-12146269-4
What was the Blue Jays' record when they played the Royals with an attendance larger than 50,522?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "attendance" real, "record" text );
SELECT "record" FROM "game_log" WHERE "attendance">'50,522' AND "opponent"='royals';
2-12206356-4
What year had a population region total of 63,073 and a population maroochy smaller than 35,266?
CREATE TABLE "population" ( "year" real, "population_region_total" real, "population_caloundra" real, "population_maroochy" real, "population_noosa" real );
SELECT MAX("year") FROM "population" WHERE "population_region_total"='63,073' AND "population_maroochy"<'35,266';
2-12590291-1
What is the grid total associated with 18 laps?
CREATE TABLE "125cc_classification" ( "rider" text, "manufacturer" text, "laps" real, "time_retired" text, "grid" real );
SELECT COUNT("grid") FROM "125cc_classification" WHERE "laps"=18;
2-12838693-3
What rider is on an aprilia that went under 18 laps with a grid total of 17?
CREATE TABLE "125cc_classification" ( "rider" text, "manufacturer" text, "laps" real, "time_retired" text, "grid" real );
SELECT "rider" FROM "125cc_classification" WHERE "manufacturer"='aprilia' AND "laps"<18 AND "grid"=17;
2-12838693-3
What is the Manufacturer for simone corsi?
CREATE TABLE "125cc_classification" ( "rider" text, "manufacturer" text, "laps" real, "time_retired" text, "grid" real );
SELECT "manufacturer" FROM "125cc_classification" WHERE "rider"='simone corsi';
2-12838693-3
What is the grid total associated with a Time/Retired of +33.634, and a Laps smaller than 19?
CREATE TABLE "125cc_classification" ( "rider" text, "manufacturer" text, "laps" real, "time_retired" text, "grid" real );
SELECT MIN("grid") FROM "125cc_classification" WHERE "time_retired"='+33.634' AND "laps"<19;
2-12838693-3
Tell me the power when the torque is n·m (lb·ft)/*n·m (lb·ft) @1750
CREATE TABLE "engines_and_transmissions" ( "model_engine" text, "capacity" text, "cylinders_valves" text, "power_rpm" text, "torque_nm_rpm" text );
SELECT "power_rpm" FROM "engines_and_transmissions" WHERE "torque_nm_rpm"='n·m (lb·ft)/*n·m (lb·ft) @1750';
2-1212189-1
Name the capacity for the engine of 2.0 duratorq
CREATE TABLE "engines_and_transmissions" ( "model_engine" text, "capacity" text, "cylinders_valves" text, "power_rpm" text, "torque_nm_rpm" text );
SELECT "capacity" FROM "engines_and_transmissions" WHERE "model_engine"='2.0 duratorq';
2-1212189-1
Name the capacity for the torque of n·m (lb·ft) @4150
CREATE TABLE "engines_and_transmissions" ( "model_engine" text, "capacity" text, "cylinders_valves" text, "power_rpm" text, "torque_nm_rpm" text );
SELECT "capacity" FROM "engines_and_transmissions" WHERE "torque_nm_rpm"='n·m (lb·ft) @4150';
2-1212189-1
Name the power for 1.8 duratorq
CREATE TABLE "engines_and_transmissions" ( "model_engine" text, "capacity" text, "cylinders_valves" text, "power_rpm" text, "torque_nm_rpm" text );
SELECT "power_rpm" FROM "engines_and_transmissions" WHERE "model_engine"='1.8 duratorq';
2-1212189-1
Name the power for when the torque is n·m (lb·ft)/*n·m (lb·ft) @1750
CREATE TABLE "engines_and_transmissions" ( "model_engine" text, "capacity" text, "cylinders_valves" text, "power_rpm" text, "torque_nm_rpm" text );
SELECT "power_rpm" FROM "engines_and_transmissions" WHERE "torque_nm_rpm"='n·m (lb·ft)/*n·m (lb·ft) @1750';
2-1212189-1
What are the smallest goals with a Goal Ratio of 0.14, and a Debut in Europe smaller than 1995?
CREATE TABLE "top_appearances_in_uefa_club_competition" ( "rank" real, "player" text, "games" real, "goals" real, "goal_ratio" real, "debut_in_europe" real );
SELECT MIN("goals") FROM "top_appearances_in_uefa_club_competition" WHERE "goal_ratio"=0.14 AND "debut_in_europe"<1995;
2-12307135-6
What's the average goal ratio with Goals larger than 1, Games larger than 161, and a Debut in Europe smaller than 1985?
CREATE TABLE "top_appearances_in_uefa_club_competition" ( "rank" real, "player" text, "games" real, "goals" real, "goal_ratio" real, "debut_in_europe" real );
SELECT AVG("goal_ratio") FROM "top_appearances_in_uefa_club_competition" WHERE "goals">1 AND "games">161 AND "debut_in_europe"<1985;
2-12307135-6
What lowest games have 20 goals and a Goal Ratio smaller than 0.14?
CREATE TABLE "top_appearances_in_uefa_club_competition" ( "rank" real, "player" text, "games" real, "goals" real, "goal_ratio" real, "debut_in_europe" real );
SELECT MIN("games") FROM "top_appearances_in_uefa_club_competition" WHERE "goals"=20 AND "goal_ratio"<0.14;
2-12307135-6
What is the largest goal ratio with Goals smaller than 0?
CREATE TABLE "top_appearances_in_uefa_club_competition" ( "rank" real, "player" text, "games" real, "goals" real, "goal_ratio" real, "debut_in_europe" real );
SELECT MAX("goal_ratio") FROM "top_appearances_in_uefa_club_competition" WHERE "goals"<0;
2-12307135-6
What lowest games have a Goal Ratio of 0, and Goals smaller than 0?
CREATE TABLE "top_appearances_in_uefa_club_competition" ( "rank" real, "player" text, "games" real, "goals" real, "goal_ratio" real, "debut_in_europe" real );
SELECT MIN("games") FROM "top_appearances_in_uefa_club_competition" WHERE "goal_ratio"=0 AND "goals"<0;
2-12307135-6
How many debuts in Europe have less than 76 goals, more than 151 games, and a rank greater than 5?
CREATE TABLE "top_appearances_in_uefa_club_competition" ( "rank" real, "player" text, "games" real, "goals" real, "goal_ratio" real, "debut_in_europe" real );
SELECT COUNT("debut_in_europe") FROM "top_appearances_in_uefa_club_competition" WHERE "goals"<76 AND "games">151 AND "rank">5;
2-12307135-6
What is the average points of the Ferrari 1512 Chassis after 1965?
CREATE TABLE "complete_formula_one_world_championship_" ( "year" real, "team" text, "chassis" text, "engine" text, "points" real );
SELECT AVG("points") FROM "complete_formula_one_world_championship_" WHERE "chassis"='ferrari 1512' AND "year">1965;
2-1235774-1
What is the Chassis of the Cooper Car Company after 1965 when the engine was a Maserati v12?
CREATE TABLE "complete_formula_one_world_championship_" ( "year" real, "team" text, "chassis" text, "engine" text, "points" real );
SELECT "chassis" FROM "complete_formula_one_world_championship_" WHERE "year">1965 AND "team"='cooper car company' AND "engine"='maserati v12';
2-1235774-1
Which location had a round of 3, and an Opponent of matt horwich?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "event" text, "round" real, "time" text, "location" text );
SELECT "location" FROM "mixed_martial_arts_record" WHERE "round"<3 AND "opponent"='matt horwich';
2-13300898-2
What was the time of sportfight 10?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "event" text, "round" real, "time" text, "location" text );
SELECT "time" FROM "mixed_martial_arts_record" WHERE "event"='sportfight 10';
2-13300898-2
Which opponent had a time of 0:29?
CREATE TABLE "mixed_martial_arts_record" ( "res" text, "record" text, "opponent" text, "method" text, "event" text, "round" real, "time" text, "location" text );
SELECT "opponent" FROM "mixed_martial_arts_record" WHERE "time"='0:29';
2-13300898-2
What number has the builder ruston hornsby, the date 1961, and the name Topsy?
CREATE TABLE "locomotives" ( "number" real, "name" text, "builder" text, "type" text, "works_number" real, "date" real );
SELECT COUNT("number") FROM "locomotives" WHERE "builder"='ruston hornsby' AND "date"=1961 AND "name"='topsy';
2-1281645-1
What is the number with the builder hunslet and a works number greater than 822?
CREATE TABLE "locomotives" ( "number" real, "name" text, "builder" text, "type" text, "works_number" real, "date" real );
SELECT COUNT("number") FROM "locomotives" WHERE "builder"='hunslet' AND "works_number">822;
2-1281645-1
What was the score of the March 14 game?
CREATE TABLE "regular_season" ( "date" text, "visitor" text, "score" text, "home" text, "record" text );
SELECT "score" FROM "regular_season" WHERE "date"='march 14';
2-12785038-2
What was the score for the December 11 game against the Ottawa Senators?
CREATE TABLE "regular_season" ( "date" text, "visitor" text, "score" text, "home" text, "record" text );
SELECT "score" FROM "regular_season" WHERE "visitor"='ottawa senators' AND "date"='december 11';
2-12785038-2
Name the project with length overall being 25 and name of levante
CREATE TABLE "list_of_yachts" ( "hull_no" real, "year" real, "project" text, "length_overall_in_meters_without_bowsprit" real, "name" text, "destination" text );
SELECT "project" FROM "list_of_yachts" WHERE "length_overall_in_meters_without_bowsprit"=25 AND "name"='levante';
2-13198075-1
Name the sum of Hull number with portugal destination
CREATE TABLE "list_of_yachts" ( "hull_no" real, "year" real, "project" text, "length_overall_in_meters_without_bowsprit" real, "name" text, "destination" text );
SELECT SUM("hull_no") FROM "list_of_yachts" WHERE "destination"='portugal';
2-13198075-1
Name the sum of hull number for italy and year more than 1999
CREATE TABLE "list_of_yachts" ( "hull_no" real, "year" real, "project" text, "length_overall_in_meters_without_bowsprit" real, "name" text, "destination" text );
SELECT SUM("hull_no") FROM "list_of_yachts" WHERE "destination"='italy' AND "year">1999;
2-13198075-1
Give me the result for a format saying album with 1994 as the year.
CREATE TABLE "recording_industry_association_of_americ" ( "year" real, "date" text, "title" text, "format_s" text, "award_description_s" text, "result_s" text );
SELECT "result_s" FROM "recording_industry_association_of_americ" WHERE "format_s"='album' AND "year"=1994;
2-1220392-19
List the Award Descriptions for the year of 1989.
CREATE TABLE "recording_industry_association_of_americ" ( "year" real, "date" text, "title" text, "format_s" text, "award_description_s" text, "result_s" text );
SELECT "award_description_s" FROM "recording_industry_association_of_americ" WHERE "year"=1989;
2-1220392-19
What is on at 9:30 on the channel of dancing with the stars?
CREATE TABLE "monday" ( "7_00" text, "7_30" text, "8_00" text, "8_30" text, "9_00" text, "9_30" text, "10_00" text );
SELECT "9_30" FROM "monday" WHERE "8_30"='dancing with the stars';
2-12280777-2
What is on at 7:30 when k-ville is on at 9:00 on that channel?
CREATE TABLE "monday" ( "7_00" text, "7_30" text, "8_00" text, "8_30" text, "9_00" text, "9_30" text, "10_00" text );
SELECT "7_30" FROM "monday" WHERE "9_00"='k-ville';
2-12280777-2
What is on at 8:30 when occupation double is on at 7:00 at that channel?
CREATE TABLE "monday" ( "7_00" text, "7_30" text, "8_00" text, "8_30" text, "9_00" text, "9_30" text, "10_00" text );
SELECT "8_30" FROM "monday" WHERE "7_00"='occupation double';
2-12280777-2
What is on at 8:30 when etalk is on at 7:00 on that channel?
CREATE TABLE "monday" ( "7_00" text, "7_30" text, "8_00" text, "8_30" text, "9_00" text, "9_30" text, "10_00" text );
SELECT "8_30" FROM "monday" WHERE "7_00"='etalk';
2-12280777-2
What is on at 8:00 when etalk is on at 7:00?
CREATE TABLE "monday" ( "7_00" text, "7_30" text, "8_00" text, "8_30" text, "9_00" text, "9_30" text, "10_00" text );
SELECT "8_00" FROM "monday" WHERE "7_00"='etalk';
2-12280777-2
What was the score of the game played on August 5?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "record" text );
SELECT "score" FROM "game_log" WHERE "date"='august 5';
2-12207449-6
On what date was the Blue Jays record 60-56?
CREATE TABLE "game_log" ( "date" text, "opponent" text, "score" text, "loss" text, "record" text );
SELECT "date" FROM "game_log" WHERE "record"='60-56';
2-12207449-6
Tell me the name for first elected more than 1988 and district of mason
CREATE TABLE "county_board_of_supervisors" ( "position" text, "name" text, "party" text, "first_elected" real, "district" text );
SELECT "name" FROM "county_board_of_supervisors" WHERE "first_elected">1988 AND "district"='mason';
2-12561412-1
Name the party with first elected more than 1999 and position of supervisor for john foust
CREATE TABLE "county_board_of_supervisors" ( "position" text, "name" text, "party" text, "first_elected" real, "district" text );
SELECT "party" FROM "county_board_of_supervisors" WHERE "first_elected">1999 AND "position"='supervisor' AND "name"='john foust';
2-12561412-1
Name the total number of first elected for dranesville
CREATE TABLE "county_board_of_supervisors" ( "position" text, "name" text, "party" text, "first_elected" real, "district" text );
SELECT COUNT("first_elected") FROM "county_board_of_supervisors" WHERE "district"='dranesville';
2-12561412-1
What year was the venue at Sydney Cricket Ground, and the opponent was Parramatta Eels?
CREATE TABLE "premierships_8_62" ( "year" real, "opponent" text, "competition" text, "score" text, "venue" text, "attendance" text );
SELECT COUNT("year") FROM "premierships_8_62" WHERE "venue"='sydney cricket ground' AND "opponent"='parramatta eels';
2-12573519-7
What was the competition in 1978?
CREATE TABLE "premierships_8_62" ( "year" real, "opponent" text, "competition" text, "score" text, "venue" text, "attendance" text );
SELECT "competition" FROM "premierships_8_62" WHERE "year"=1978;
2-12573519-7
What year was the average attendance 80,388?
CREATE TABLE "premierships_8_62" ( "year" real, "opponent" text, "competition" text, "score" text, "venue" text, "attendance" text );
SELECT AVG("year") FROM "premierships_8_62" WHERE "attendance"='80,388';
2-12573519-7
What was the score with the opponent being New Zealand Warriors?
CREATE TABLE "premierships_8_62" ( "year" real, "opponent" text, "competition" text, "score" text, "venue" text, "attendance" text );
SELECT "score" FROM "premierships_8_62" WHERE "opponent"='new zealand warriors';
2-12573519-7
Which 1st Party has an election in 1847?
CREATE TABLE "members_of_parliament" ( "election" text, "1st_member" text, "1st_party" text, "2nd_member" text, "2nd_party" text );
SELECT "1st_party" FROM "members_of_parliament" WHERE "election"='1847';
2-12291693-1
Which 1st Party has an election in 1865?
CREATE TABLE "members_of_parliament" ( "election" text, "1st_member" text, "1st_party" text, "2nd_member" text, "2nd_party" text );
SELECT "1st_party" FROM "members_of_parliament" WHERE "election"='1865';
2-12291693-1
Which 1st Party has a 2nd Member of constituency abolished?
CREATE TABLE "members_of_parliament" ( "election" text, "1st_member" text, "1st_party" text, "2nd_member" text, "2nd_party" text );
SELECT "1st_party" FROM "members_of_parliament" WHERE "2nd_member"='constituency abolished';
2-12291693-1
Which 1st Member has an election in 1880 and a liberal 1st Party?
CREATE TABLE "members_of_parliament" ( "election" text, "1st_member" text, "1st_party" text, "2nd_member" text, "2nd_party" text );
SELECT "1st_member" FROM "members_of_parliament" WHERE "1st_party"='liberal' AND "election"='1880';
2-12291693-1
Which 1st Member has an election in 1859 and a conservative 2nd Party?
CREATE TABLE "members_of_parliament" ( "election" text, "1st_member" text, "1st_party" text, "2nd_member" text, "2nd_party" text );
SELECT "1st_member" FROM "members_of_parliament" WHERE "2nd_party"='conservative' AND "election"='1859';
2-12291693-1
What was the average number of points with bonus pts less than 31 with the rider dennis gavros?
CREATE TABLE "1966_season_finished_1st_54pts_out_of_19" ( "rider" text, "matches" real, "rides" real, "bonus_pts" real, "total_points" real );
SELECT AVG("total_points") FROM "1966_season_finished_1st_54pts_out_of_19" WHERE "rider"='dennis gavros' AND "bonus_pts"<31;
2-12518301-2
How many total matches involving dennis gavros had total points less than 167?
CREATE TABLE "1966_season_finished_1st_54pts_out_of_19" ( "rider" text, "matches" real, "rides" real, "bonus_pts" real, "total_points" real );
SELECT COUNT("matches") FROM "1966_season_finished_1st_54pts_out_of_19" WHERE "rider"='dennis gavros' AND "total_points"<167;
2-12518301-2