question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
What was the constructor for round 15?
CREATE TABLE "season_review" ( "rnd" real, "race" text, "date" text, "location" text, "pole_position" text, "fastest_lap" text, "race_winner" text, "constructor" text, "report" text );
SELECT "constructor" FROM "season_review" WHERE "rnd"=15;
1-1140083-2
Who won the Brands Hatch circuit?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "winning_driver" FROM "non_championship_race_results" WHERE "circuit"='Brands Hatch';
1-1140088-6
Who constructed the I Italian Republic Grand Prix?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "constructor" FROM "non_championship_race_results" WHERE "race_name"='I Italian Republic Grand Prix';
1-1140088-6
What race was held at Oulton Park?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "race_name" FROM "non_championship_race_results" WHERE "circuit"='Oulton Park';
1-1140088-6
Did the I Brazilian Grand Prix have a report?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "report" FROM "non_championship_race_results" WHERE "race_name"='I Brazilian Grand Prix';
1-1140088-6
what is the race where the pole position is niki lauda and the date is 27 april?
CREATE TABLE "season_review" ( "rnd" real, "race" text, "date" text, "location" text, "pole_position" text, "fastest_lap" text, "race_winner" text, "constructor" text, "report" text );
SELECT "race" FROM "season_review" WHERE "pole_position"='Niki Lauda' AND "date"='27 April';
1-1140085-2
what is the date where the constructor is ferrari and the location is anderstorp?
CREATE TABLE "season_review" ( "rnd" real, "race" text, "date" text, "location" text, "pole_position" text, "fastest_lap" text, "race_winner" text, "constructor" text, "report" text );
SELECT "date" FROM "season_review" WHERE "constructor"='Ferrari' AND "location"='Anderstorp';
1-1140085-2
how many times is the pole position niki lauda and the race is monaco grand prix?
CREATE TABLE "season_review" ( "rnd" real, "race" text, "date" text, "location" text, "pole_position" text, "fastest_lap" text, "race_winner" text, "constructor" text, "report" text );
SELECT COUNT("rnd") FROM "season_review" WHERE "pole_position"='Niki Lauda' AND "race"='Monaco Grand Prix';
1-1140085-2
what is the report where the location is kyalami?
CREATE TABLE "season_review" ( "rnd" real, "race" text, "date" text, "location" text, "pole_position" text, "fastest_lap" text, "race_winner" text, "constructor" text, "report" text );
SELECT "report" FROM "season_review" WHERE "location"='Kyalami';
1-1140085-2
who is the pole position for the rnd 3
CREATE TABLE "season_review" ( "rnd" real, "race" text, "date" text, "location" text, "pole_position" text, "fastest_lap" text, "race_winner" text, "constructor" text, "report" text );
SELECT "pole_position" FROM "season_review" WHERE "rnd"=3;
1-1140085-2
what is the race where the fastest lap is by jean-pierre jarier?
CREATE TABLE "season_review" ( "rnd" real, "race" text, "date" text, "location" text, "pole_position" text, "fastest_lap" text, "race_winner" text, "constructor" text, "report" text );
SELECT "race" FROM "season_review" WHERE "fastest_lap"='Jean-Pierre Jarier';
1-1140085-2
What circuit did Clay Regazzoni win?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "circuit" FROM "non_championship_race_results" WHERE "winning_driver"='Clay Regazzoni';
1-1140090-6
What was the date when Chris Amon won?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "date" FROM "non_championship_race_results" WHERE "winning_driver"='Chris Amon';
1-1140090-6
What circuit is the Vi Rhein-Pokalrennen race in?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "circuit" FROM "non_championship_race_results" WHERE "race_name"='VI Rhein-Pokalrennen';
1-1140090-6
What date is listed at place 13
CREATE TABLE "non_championship_race_results" ( "num" real, "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "date" FROM "non_championship_race_results" WHERE "num"=13;
1-1140103-6
What date has a solitudering circuit
CREATE TABLE "non_championship_race_results" ( "num" real, "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "date" FROM "non_championship_race_results" WHERE "circuit"='Solitudering';
1-1140103-6
How many dates have silverstone circuit
CREATE TABLE "non_championship_race_results" ( "num" real, "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT COUNT("date") FROM "non_championship_race_results" WHERE "circuit"='Silverstone';
1-1140103-6
How many constructors are listed for the XVI BRDC international trophy race
CREATE TABLE "non_championship_race_results" ( "num" real, "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT COUNT("constructor") FROM "non_championship_race_results" WHERE "race_name"='XVI BRDC International Trophy';
1-1140103-6
What is the name of the circuit in which the race name is ii danish grand prix?
CREATE TABLE "non_championship_races_review" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "circuit" FROM "non_championship_races_review" WHERE "race_name"='II Danish Grand Prix';
1-1140105-6
What is te name of the constructors dated 26 march?
CREATE TABLE "non_championship_races_review" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "constructor" FROM "non_championship_races_review" WHERE "date"='26 March';
1-1140105-6
What is the total amount of circuts dated 22 april?
CREATE TABLE "non_championship_races_review" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT COUNT("circuit") FROM "non_championship_races_review" WHERE "date"='22 April';
1-1140105-6
what is the name of the constructor that has the circuit zeltweg airfield?
CREATE TABLE "non_championship_races_review" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "constructor" FROM "non_championship_races_review" WHERE "circuit"='Zeltweg Airfield';
1-1140105-6
What is the name of the winning driver where the circuit name is posillipo?
CREATE TABLE "non_championship_races_review" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "winning_driver" FROM "non_championship_races_review" WHERE "circuit"='Posillipo';
1-1140105-6
What is the name of the circuit where the race xi Syracuse grand prix was held?
CREATE TABLE "non_championship_races_review" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "circuit" FROM "non_championship_races_review" WHERE "race_name"='XI Syracuse Grand Prix';
1-1140105-6
What kind of report is for the Pau circuit?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "report" FROM "non_championship_race_results" WHERE "circuit"='Pau';
1-1140111-5
How many different kinds of reports are there for races that Juan Manuel Fangio won?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT COUNT("report") FROM "non_championship_race_results" WHERE "winning_driver"='Juan Manuel Fangio';
1-1140111-5
Who constructed the Syracuse circuit?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "constructor" FROM "non_championship_race_results" WHERE "circuit"='Syracuse';
1-1140111-5
What is the name of the race in the Modena circuit?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "race_name" FROM "non_championship_race_results" WHERE "circuit"='Modena';
1-1140116-5
What is the race name in the Monza circuit?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "race_name" FROM "non_championship_race_results" WHERE "circuit"='Monza';
1-1140116-5
When does V Madgwick Cup take place?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "date" FROM "non_championship_race_results" WHERE "race_name"='V Madgwick Cup';
1-1140116-5
Which driver won the race xiv eläintarhanajot?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "winning_driver" FROM "non_championship_race_results" WHERE "race_name"='XIV Eläintarhanajot';
1-1140116-5
Who won the Modena circuit?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "winning_driver" FROM "non_championship_race_results" WHERE "circuit"='Modena';
1-1140116-5
How many constructors won the III Redex Trophy?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT COUNT("constructor") FROM "non_championship_race_results" WHERE "race_name"='III RedeX Trophy';
1-1140113-5
What was the report of Mike Hawthorn's winning race?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "report" FROM "non_championship_race_results" WHERE "winning_driver"='Mike Hawthorn';
1-1140113-5
What was the name of the race in Bordeaux?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "race_name" FROM "non_championship_race_results" WHERE "circuit"='Bordeaux';
1-1140113-5
What is the report for the race name V Ulster Trophy?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "report" FROM "non_championship_race_results" WHERE "race_name"='V Ulster Trophy';
1-1140117-5
What is the constructor for the Silverstone circuit?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "constructor" FROM "non_championship_race_results" WHERE "circuit"='Silverstone';
1-1140117-5
What's the report for the Silverstone circuit?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "report" FROM "non_championship_race_results" WHERE "circuit"='Silverstone';
1-1140117-5
What's the report for the race name, XIII Grand Prix de l'Albigeois?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "report" FROM "non_championship_race_results" WHERE "race_name"='XIII Grand Prix de l''Albigeois';
1-1140117-5
Which date did the race name XII Pau Grand Prix take place on?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "date" FROM "non_championship_race_results" WHERE "race_name"='XII Pau Grand Prix';
1-1140117-5
Who was the winning driver for the goodwood circuit?
CREATE TABLE "non_championship_race_results" ( "race_name" text, "circuit" text, "date" text, "winning_driver" text, "constructor" text, "report" text );
SELECT "winning_driver" FROM "non_championship_race_results" WHERE "circuit"='Goodwood';
1-1140117-5
How many millions of U.S. viewers whatched episodes written by Krystal Houghton?
CREATE TABLE "table1_11411026_2" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "u_s_viewers_millions" FROM "table1_11411026_2" WHERE "written_by"='Krystal Houghton';
1-11411026-2
How many titles were directed in series 79?
CREATE TABLE "table1_11411026_2" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT COUNT("directed_by") FROM "table1_11411026_2" WHERE "no_in_series"=79;
1-11411026-2
Who wrote an episode watched by 19.01 million US viewers?
CREATE TABLE "table1_11411026_2" ( "no_in_series" real, "no_in_season" real, "title" text, "directed_by" text, "written_by" text, "original_air_date" text, "u_s_viewers_millions" text );
SELECT "written_by" FROM "table1_11411026_2" WHERE "u_s_viewers_millions"='19.01';
1-11411026-2
What are the titles of the episodes where Rodman Flender is the director?
CREATE TABLE "table1_11404452_1" ( "series_num" real, "episode_title" text, "writer_s" text, "director" text, "u_s_viewers_millions" text, "original_air_date" text );
SELECT "episode_title" FROM "table1_11404452_1" WHERE "director"='Rodman Flender';
1-11404452-1
What is the original air date of the Jamie Babbit directed episode?
CREATE TABLE "table1_11404452_1" ( "series_num" real, "episode_title" text, "writer_s" text, "director" text, "u_s_viewers_millions" text, "original_air_date" text );
SELECT "original_air_date" FROM "table1_11404452_1" WHERE "director"='Jamie Babbit';
1-11404452-1
What is the original air date when there were 12.81 million u.s viewers?
CREATE TABLE "table1_11404452_1" ( "series_num" real, "episode_title" text, "writer_s" text, "director" text, "u_s_viewers_millions" text, "original_air_date" text );
SELECT "original_air_date" FROM "table1_11404452_1" WHERE "u_s_viewers_millions"='12.81';
1-11404452-1
When did Shelia Lawrence join the series?
CREATE TABLE "table1_11404452_1" ( "series_num" real, "episode_title" text, "writer_s" text, "director" text, "u_s_viewers_millions" text, "original_air_date" text );
SELECT MIN("series_num") FROM "table1_11404452_1" WHERE "writer_s"='Shelia Lawrence';
1-11404452-1
Who was the director when there were 13.66 million u.s viewers?
CREATE TABLE "table1_11404452_1" ( "series_num" real, "episode_title" text, "writer_s" text, "director" text, "u_s_viewers_millions" text, "original_air_date" text );
SELECT "director" FROM "table1_11404452_1" WHERE "u_s_viewers_millions"='13.66';
1-11404452-1
Name the percentage where the amount won was 25
CREATE TABLE "yearly_results" ( "season" text, "games" real, "won" real, "lost" real, "tied" real, "points" real, "pct_pct" text, "goals_for" real, "goals_against" real, "standing" text );
SELECT "pct_pct" FROM "yearly_results" WHERE "won"=25;
1-1143966-1
How many games were won with 2nd oha was standing and there were 62 games?
CREATE TABLE "yearly_results" ( "season" text, "games" real, "won" real, "lost" real, "tied" real, "points" real, "pct_pct" text, "goals_for" real, "goals_against" real, "standing" text );
SELECT "won" FROM "yearly_results" WHERE "standing"='2nd OHA' AND "games"=62;
1-1143966-1
What is the Liscumb when Gauthier is 34?
CREATE TABLE "results_by_ward" ( "ward" text, "bello" text, "ben_tahir" text, "doucet" text, "furtenbacher" text, "gauthier" text, "haydon" text, "larter" text, "lawrance" text, "libweshya" text, "liscumb" text );
SELECT "liscumb" FROM "results_by_ward" WHERE "gauthier"='34';
1-11447995-2
What is the Bello when Ben-Tahir is 296?
CREATE TABLE "results_by_ward" ( "ward" text, "bello" text, "ben_tahir" text, "doucet" text, "furtenbacher" text, "gauthier" text, "haydon" text, "larter" text, "lawrance" text, "libweshya" text, "liscumb" text );
SELECT "bello" FROM "results_by_ward" WHERE "ben_tahir"='296';
1-11447995-2
What is Ben-Tahir when Bello is 51?
CREATE TABLE "results_by_ward" ( "ward" text, "bello" text, "ben_tahir" text, "doucet" text, "furtenbacher" text, "gauthier" text, "haydon" text, "larter" text, "lawrance" text, "libweshya" text, "liscumb" text );
SELECT "ben_tahir" FROM "results_by_ward" WHERE "bello"='51';
1-11447995-2
What is Haydon when Larter is 11 and Libweshya is 4?
CREATE TABLE "results_by_ward" ( "ward" text, "bello" text, "ben_tahir" text, "doucet" text, "furtenbacher" text, "gauthier" text, "haydon" text, "larter" text, "lawrance" text, "libweshya" text, "liscumb" text );
SELECT "haydon" FROM "results_by_ward" WHERE "larter"='11' AND "libweshya"='4';
1-11447995-2
What is Liscumb when Haydon is 1632?
CREATE TABLE "results_by_ward" ( "ward" text, "bello" text, "ben_tahir" text, "doucet" text, "furtenbacher" text, "gauthier" text, "haydon" text, "larter" text, "lawrance" text, "libweshya" text, "liscumb" text );
SELECT "liscumb" FROM "results_by_ward" WHERE "haydon"='1632';
1-11447995-2
What is Doucet when Lawrance is 36?
CREATE TABLE "results_by_ward" ( "ward" text, "bello" text, "ben_tahir" text, "doucet" text, "furtenbacher" text, "gauthier" text, "haydon" text, "larter" text, "lawrance" text, "libweshya" text, "liscumb" text );
SELECT "doucet" FROM "results_by_ward" WHERE "lawrance"='36';
1-11447995-2
Which tv had the date december 7, 1986?
CREATE TABLE "schedule" ( "week" text, "date" text, "opponent" text, "result" text, "kickoff_a" text, "game_site" text, "tv" text, "attendance" text, "record" text );
SELECT "tv" FROM "schedule" WHERE "date"='December 7, 1986';
1-11449590-2
Which kickoff has the opponent at new orleans saints?
CREATE TABLE "schedule" ( "week" text, "date" text, "opponent" text, "result" text, "kickoff_a" text, "game_site" text, "tv" text, "attendance" text, "record" text );
SELECT "kickoff_a" FROM "schedule" WHERE "opponent"='at New Orleans Saints';
1-11449590-2
How many houses are green?
CREATE TABLE "houses" ( "house_name" text, "composition" text, "named_after" text, "founded" real, "colours" text );
SELECT COUNT("house_name") FROM "houses" WHERE "colours"='Green';
1-11464746-1
What year was the house named gongola made?
CREATE TABLE "houses" ( "house_name" text, "composition" text, "named_after" text, "founded" real, "colours" text );
SELECT "founded" FROM "houses" WHERE "house_name"='Gongola';
1-11464746-1
What is the name of the green house?
CREATE TABLE "houses" ( "house_name" text, "composition" text, "named_after" text, "founded" real, "colours" text );
SELECT "house_name" FROM "houses" WHERE "colours"='Green';
1-11464746-1
What is the green house made of?
CREATE TABLE "houses" ( "house_name" text, "composition" text, "named_after" text, "founded" real, "colours" text );
SELECT "composition" FROM "houses" WHERE "colours"='Green';
1-11464746-1
What is the benue house made of?
CREATE TABLE "houses" ( "house_name" text, "composition" text, "named_after" text, "founded" real, "colours" text );
SELECT "composition" FROM "houses" WHERE "house_name"='Benue';
1-11464746-1
In which week was the game against a team with a record of 3-6 played?
CREATE TABLE "schedule" ( "week" text, "date" text, "opponent" text, "result" text, "kickoff_a" text, "game_site" text, "tv" text, "attendance" text, "record" text );
SELECT COUNT("week") FROM "schedule" WHERE "record"='3-6';
1-11465521-2
Which channel had the game against the Minnesota Vikings?
CREATE TABLE "schedule" ( "week" text, "date" text, "opponent" text, "result" text, "kickoff_a" text, "game_site" text, "tv" text, "attendance" text, "record" text );
SELECT "tv" FROM "schedule" WHERE "opponent"='Minnesota Vikings';
1-11465521-2
How many opponents were there at the game with 64,087 people in attendance?
CREATE TABLE "schedule" ( "week" text, "date" text, "opponent" text, "result" text, "kickoff_a" text, "game_site" text, "tv" text, "attendance" text, "record" text );
SELECT COUNT("opponent") FROM "schedule" WHERE "attendance"='64,087';
1-11465521-2
Where was the game played when the team's record was 1-3?
CREATE TABLE "schedule" ( "week" text, "date" text, "opponent" text, "result" text, "kickoff_a" text, "game_site" text, "tv" text, "attendance" text, "record" text );
SELECT "game_site" FROM "schedule" WHERE "record"='1-3';
1-11452830-2
How many times was there a kickoff in the September 4, 1988 game?
CREATE TABLE "schedule" ( "week" text, "date" text, "opponent" text, "result" text, "kickoff_a" text, "game_site" text, "tv" text, "attendance" text, "record" text );
SELECT COUNT("kickoff_a") FROM "schedule" WHERE "date"='September 4, 1988';
1-11452830-2
How many crowds watched the game where the record was 1-3?
CREATE TABLE "schedule" ( "week" text, "date" text, "opponent" text, "result" text, "kickoff_a" text, "game_site" text, "tv" text, "attendance" text, "record" text );
SELECT COUNT("attendance") FROM "schedule" WHERE "record"='1-3';
1-11452830-2
What year finished with Daniel Zueras as the runner-up?
CREATE TABLE "series_summary" ( "series" real, "year" text, "winner" text, "runner_up" text, "third_place" text, "fourth_place" text, "fifth_place" text, "sixth_place" text, "host" text );
SELECT COUNT("year") FROM "series_summary" WHERE "runner_up"='Daniel Zueras';
1-1149495-1
How many people hosted the show in the year when Chenoa ended up in fourth place?
CREATE TABLE "series_summary" ( "series" real, "year" text, "winner" text, "runner_up" text, "third_place" text, "fourth_place" text, "fifth_place" text, "sixth_place" text, "host" text );
SELECT COUNT("host") FROM "series_summary" WHERE "fourth_place"='Chenoa';
1-1149495-1
How many fourth places were there in 2003?
CREATE TABLE "series_summary" ( "series" real, "year" text, "winner" text, "runner_up" text, "third_place" text, "fourth_place" text, "fifth_place" text, "sixth_place" text, "host" text );
SELECT COUNT("fourth_place") FROM "series_summary" WHERE "year"='2003';
1-1149495-1
What is the engine type when the max torque at rpm is n·m ( lbf·ft ) @ 4,800 Answers:?
CREATE TABLE "models_and_engines" ( "model" text, "max_motive_power" text, "max_torque_at_rpm" text, "engine_displacement" text, "engine_type" text, "engine_configuration_notes_0_100km_h" text );
SELECT "engine_type" FROM "models_and_engines" WHERE "max_torque_at_rpm"='N·m ( lbf·ft ) @ 4,800';
1-1147705-1
What is the engine configuration $notes 0-100km/h for the engine type b5244 t2?
CREATE TABLE "models_and_engines" ( "model" text, "max_motive_power" text, "max_torque_at_rpm" text, "engine_displacement" text, "engine_type" text, "engine_configuration_notes_0_100km_h" text );
SELECT "engine_configuration_notes_0_100km_h" FROM "models_and_engines" WHERE "engine_type"='B5244 T2';
1-1147705-1
What is the engine displacement for the engine type b5254 t?
CREATE TABLE "models_and_engines" ( "model" text, "max_motive_power" text, "max_torque_at_rpm" text, "engine_displacement" text, "engine_type" text, "engine_configuration_notes_0_100km_h" text );
SELECT "engine_displacement" FROM "models_and_engines" WHERE "engine_type"='B5254 T';
1-1147705-1
How many have are model 2.4 awd?
CREATE TABLE "models_and_engines" ( "model" text, "max_motive_power" text, "max_torque_at_rpm" text, "engine_displacement" text, "engine_type" text, "engine_configuration_notes_0_100km_h" text );
SELECT COUNT("engine_type") FROM "models_and_engines" WHERE "model"='2.4 AWD';
1-1147705-1
How many engine b5204 t3?
CREATE TABLE "models_and_engines" ( "model" text, "max_motive_power" text, "max_torque_at_rpm" text, "engine_displacement" text, "engine_type" text, "engine_configuration_notes_0_100km_h" text );
SELECT COUNT("engine_displacement") FROM "models_and_engines" WHERE "engine_type"='B5204 T3';
1-1147705-1
How many engine b5234 t3?
CREATE TABLE "models_and_engines" ( "model" text, "max_motive_power" text, "max_torque_at_rpm" text, "engine_displacement" text, "engine_type" text, "engine_configuration_notes_0_100km_h" text );
SELECT COUNT("model") FROM "models_and_engines" WHERE "engine_type"='B5234 T3';
1-1147705-1
how many power (ps) with torque (nm@rpm) being 240@2200-5000
CREATE TABLE "engines" ( "model_name" text, "power_ps" real, "torque_nm_rpm" text, "displacement_cm" real, "engine_code" text, "comment" text );
SELECT COUNT("power_ps") FROM "engines" WHERE "torque_nm_rpm"='240@2200-5000';
1-1147701-4
what's the comment with model name being 2.4 (2001-2007)
CREATE TABLE "engines" ( "model_name" text, "power_ps" real, "torque_nm_rpm" text, "displacement_cm" real, "engine_code" text, "comment" text );
SELECT "comment" FROM "engines" WHERE "model_name"='2.4 (2001-2007)';
1-1147701-4
what's the model name with engine code being b5204 t5
CREATE TABLE "engines" ( "model_name" text, "power_ps" real, "torque_nm_rpm" text, "displacement_cm" real, "engine_code" text, "comment" text );
SELECT "model_name" FROM "engines" WHERE "engine_code"='B5204 T5';
1-1147701-4
what's the dbeingplacement (cm³) with torque (nm@rpm) being 350@1800-6000
CREATE TABLE "engines" ( "model_name" text, "power_ps" real, "torque_nm_rpm" text, "displacement_cm" real, "engine_code" text, "comment" text );
SELECT "displacement_cm" FROM "engines" WHERE "torque_nm_rpm"='350@1800-6000';
1-1147701-4
what's the model name with torque (nm@rpm) being 230@4500
CREATE TABLE "engines" ( "model_name" text, "power_ps" real, "torque_nm_rpm" text, "displacement_cm" real, "engine_code" text, "comment" text );
SELECT "model_name" FROM "engines" WHERE "torque_nm_rpm"='230@4500';
1-1147701-4
what's the model name with engine code being b5254 t4
CREATE TABLE "engines" ( "model_name" text, "power_ps" real, "torque_nm_rpm" text, "displacement_cm" real, "engine_code" text, "comment" text );
SELECT "model_name" FROM "engines" WHERE "engine_code"='B5254 T4';
1-1147701-4
Name the torque of the engine is d5244 t5
CREATE TABLE "engines" ( "model_name" text, "power_ps" real, "torque_nm_rpm" text, "displacement_cm" real, "engine_code" text, "comment" text );
SELECT "torque_nm_rpm" FROM "engines" WHERE "engine_code"='D5244 T5';
1-1147701-5
What is the model of the engine d5244 t?
CREATE TABLE "engines" ( "model_name" text, "power_ps" real, "torque_nm_rpm" text, "displacement_cm" real, "engine_code" text, "comment" text );
SELECT "model_name" FROM "engines" WHERE "engine_code"='D5244 T';
1-1147701-5
What is the model of the enginge d5252 t?
CREATE TABLE "engines" ( "model_name" text, "power_ps" real, "torque_nm_rpm" text, "displacement_cm" real, "engine_code" text, "comment" text );
SELECT "model_name" FROM "engines" WHERE "engine_code"='D5252 T';
1-1147701-5
What is the model of the engine d5244 t7?
CREATE TABLE "engines" ( "model_name" text, "power_ps" real, "torque_nm_rpm" text, "displacement_cm" real, "engine_code" text, "comment" text );
SELECT "model_name" FROM "engines" WHERE "engine_code"='D5244 T7';
1-1147701-5
What is the position of number 47?
CREATE TABLE "k" ( "player" text, "no" text, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "position" FROM "k" WHERE "no"='47';
1-11545282-11
Name the position of Turkey
CREATE TABLE "k" ( "player" text, "no" text, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "position" FROM "k" WHERE "nationality"='Turkey';
1-11545282-11
Who is player number 51?
CREATE TABLE "k" ( "player" text, "no" text, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "player" FROM "k" WHERE "no"='51';
1-11545282-11
What is the position for the years 1998-99
CREATE TABLE "k" ( "player" text, "no" text, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "position" FROM "k" WHERE "years_for_jazz"='1998-99';
1-11545282-11
How many positions are for creighton?
CREATE TABLE "k" ( "player" text, "no" text, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT COUNT("position") FROM "k" WHERE "school_club_team"='Creighton';
1-11545282-11
Which player is from Marshall and played 1974-75?
CREATE TABLE "l" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "player" FROM "l" WHERE "years_for_jazz"='1974-75' AND "school_club_team"='Marshall';
1-11545282-12
Which country is the player that went to Oregon?
CREATE TABLE "l" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "nationality" FROM "l" WHERE "school_club_team"='Oregon';
1-11545282-12
Which country is Jim Les from?
CREATE TABLE "l" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "nationality" FROM "l" WHERE "player"='Jim Les';
1-11545282-12
Which number is the player from Minnesota?
CREATE TABLE "l" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT MAX("no") FROM "l" WHERE "school_club_team"='Minnesota';
1-11545282-12
Which player played for years 2000-02
CREATE TABLE "s" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "player" FROM "s" WHERE "years_for_jazz"='2000-02';
1-11545282-18
Which school is Kirk Snyder from?
CREATE TABLE "s" ( "player" text, "no" real, "nationality" text, "position" text, "years_for_jazz" text, "school_club_team" text );
SELECT "school_club_team" FROM "s" WHERE "player"='Kirk Snyder';
1-11545282-18