instruction stringlengths 67 299 | input stringlengths 88 550 | output stringlengths 32 484 |
|---|---|---|
Write a SQL query that answers the following question: What i/o buses are associated with the brand name Core i3-21xxt? | The relevant table was constructed using the following SQL : CREATE TABLE table_24538587_11 (i_o_bus VARCHAR, brand_name__list_ VARCHAR) | SELECT i_o_bus FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-21xxT" |
Write a SQL query that answers the following question: What is the codename for the Core i3-32xxt? | The relevant table was constructed using the following SQL : CREATE TABLE table_24538587_11 (codename__main_article_ VARCHAR, brand_name__list_ VARCHAR) | SELECT codename__main_article_ FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-32xxT" |
Write a SQL query that answers the following question: What i/o buses are associated with the LGA 1155 socket, a code name of Sandy Bridge (desktop) and a brand name of Core i3-21xx? | The relevant table was constructed using the following SQL : CREATE TABLE table_24538587_11 (i_o_bus VARCHAR, brand_name__list_ VARCHAR, socket VARCHAR, codename__main_article_ VARCHAR) | SELECT i_o_bus FROM table_24538587_11 WHERE socket = "LGA 1155" AND codename__main_article_ = "Sandy Bridge (Desktop)" AND brand_name__list_ = "Core i3-21xx" |
Write a SQL query that answers the following question: What is the sockets associated with a brand name of Core i3-3xx0m? | The relevant table was constructed using the following SQL : CREATE TABLE table_24538587_11 (socket VARCHAR, brand_name__list_ VARCHAR) | SELECT socket FROM table_24538587_11 WHERE brand_name__list_ = "Core i3-3xx0M" |
Write a SQL query that answers the following question: Who was drafted by the calgary stampeders? | The relevant table was constructed using the following SQL : CREATE TABLE table_24540893_6 (player VARCHAR, cfl_team VARCHAR) | SELECT player FROM table_24540893_6 WHERE cfl_team = "Calgary Stampeders" |
Write a SQL query that answers the following question: Where was the player from se missouri state drafted? | The relevant table was constructed using the following SQL : CREATE TABLE table_24540893_6 (pick__number VARCHAR, school VARCHAR) | SELECT COUNT(pick__number) FROM table_24540893_6 WHERE school = "SE Missouri State" |
Write a SQL query that answers the following question: What position does the player from kent state play? | The relevant table was constructed using the following SQL : CREATE TABLE table_24540893_6 (position VARCHAR, school VARCHAR) | SELECT position FROM table_24540893_6 WHERE school = "Kent State" |
Write a SQL query that answers the following question: What school did the rb drafted attend? | The relevant table was constructed using the following SQL : CREATE TABLE table_24540893_6 (school VARCHAR, position VARCHAR) | SELECT school FROM table_24540893_6 WHERE position = "RB" |
Write a SQL query that answers the following question: What numbered pick attended western ontario and is an OL? | The relevant table was constructed using the following SQL : CREATE TABLE table_24540893_6 (pick__number VARCHAR, school VARCHAR, position VARCHAR) | SELECT pick__number FROM table_24540893_6 WHERE school = "Western Ontario" AND position = "OL" |
Write a SQL query that answers the following question: How many players attended SE missouri state? | The relevant table was constructed using the following SQL : CREATE TABLE table_24540893_6 (position VARCHAR, school VARCHAR) | SELECT COUNT(position) FROM table_24540893_6 WHERE school = "SE Missouri State" |
Write a SQL query that answers the following question: Who was in the pole position for knockhill? | The relevant table was constructed using the following SQL : CREATE TABLE table_24547593_1 (pole_position VARCHAR, circuit VARCHAR) | SELECT pole_position FROM table_24547593_1 WHERE circuit = "Knockhill" |
Write a SQL query that answers the following question: How many dates was knockhill? | The relevant table was constructed using the following SQL : CREATE TABLE table_24547593_1 (date VARCHAR, circuit VARCHAR) | SELECT COUNT(date) FROM table_24547593_1 WHERE circuit = "Knockhill" |
Write a SQL query that answers the following question: Name the l3 cache for core i7-2xxxqe, i7-26xxqm, i7-27xxqm | The relevant table was constructed using the following SQL : CREATE TABLE table_24538587_13 (l3_cache VARCHAR, brand_name__list_ VARCHAR) | SELECT l3_cache FROM table_24538587_13 WHERE brand_name__list_ = "Core i7-2xxxQE, i7-26xxQM, i7-27xxQM" |
Write a SQL query that answers the following question: Who had most laps led at Chicagoland speedway? | The relevant table was constructed using the following SQL : CREATE TABLE table_2454550_1 (most_laps_led VARCHAR, track VARCHAR) | SELECT most_laps_led FROM table_2454550_1 WHERE track = "Chicagoland Speedway" |
Write a SQL query that answers the following question: In what race did Buddy Rice hav fastest lap? | The relevant table was constructed using the following SQL : CREATE TABLE table_2454550_1 (race_name VARCHAR, fastest_lap VARCHAR) | SELECT race_name FROM table_2454550_1 WHERE fastest_lap = "Buddy Rice" |
Write a SQL query that answers the following question: On what tra k was the march 19 race held? | The relevant table was constructed using the following SQL : CREATE TABLE table_2454550_1 (track VARCHAR, date VARCHAR) | SELECT track FROM table_2454550_1 WHERE date = "March 19" |
Write a SQL query that answers the following question: On what track is the Argent mortgage Indy 300 held? | The relevant table was constructed using the following SQL : CREATE TABLE table_2454550_1 (track VARCHAR, race_name VARCHAR) | SELECT track FROM table_2454550_1 WHERE race_name = "Argent Mortgage Indy 300" |
Write a SQL query that answers the following question: who held the fastes lap in Phoenix, Arizona? | The relevant table was constructed using the following SQL : CREATE TABLE table_2454550_1 (fastest_lap VARCHAR, location VARCHAR) | SELECT fastest_lap FROM table_2454550_1 WHERE location = "Phoenix, Arizona" |
Write a SQL query that answers the following question: How man players checked out at 84? | The relevant table was constructed using the following SQL : CREATE TABLE table_24549777_1 (player VARCHAR, high_checkout VARCHAR) | SELECT COUNT(player) FROM table_24549777_1 WHERE high_checkout = 84 |
Write a SQL query that answers the following question: How man 3-dart averages did gary anderson have? | The relevant table was constructed using the following SQL : CREATE TABLE table_24549777_1 (player VARCHAR) | SELECT COUNT(3 AS _dart_average) FROM table_24549777_1 WHERE player = "Gary Anderson" |
Write a SQL query that answers the following question: List all results from the 3-3 scoring game. | The relevant table was constructed using the following SQL : CREATE TABLE table_24561550_1 (result VARCHAR, record VARCHAR) | SELECT result FROM table_24561550_1 WHERE record = "3-3" |
Write a SQL query that answers the following question: List all opponents from the 4-4 scoring game. | The relevant table was constructed using the following SQL : CREATE TABLE table_24561550_1 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_24561550_1 WHERE record = "4-4" |
Write a SQL query that answers the following question: List the record from the game where Wildcats had 48 points. | The relevant table was constructed using the following SQL : CREATE TABLE table_24561550_1 (record VARCHAR, wildcats_points VARCHAR) | SELECT record FROM table_24561550_1 WHERE wildcats_points = 48 |
Write a SQL query that answers the following question: How many points did the Wildcats get when Baylor was an opponent? | The relevant table was constructed using the following SQL : CREATE TABLE table_24561550_1 (wildcats_points VARCHAR, opponent VARCHAR) | SELECT wildcats_points FROM table_24561550_1 WHERE opponent = "Baylor" |
Write a SQL query that answers the following question: Who was the opponent on Oct. 4? | The relevant table was constructed using the following SQL : CREATE TABLE table_24560733_1 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_24560733_1 WHERE date = "Oct. 4" |
Write a SQL query that answers the following question: What was the minimum number for opponents? | The relevant table was constructed using the following SQL : CREATE TABLE table_24560733_1 (opponents INTEGER) | SELECT MIN(opponents) FROM table_24560733_1 |
Write a SQL query that answers the following question: What is the minimum number of opponents' points for the game at Michigan State? | The relevant table was constructed using the following SQL : CREATE TABLE table_24560733_1 (opponents INTEGER, opponent VARCHAR) | SELECT MIN(opponents) FROM table_24560733_1 WHERE opponent = "at Michigan State" |
Write a SQL query that answers the following question: Which opponent led to a 5-2 record? | The relevant table was constructed using the following SQL : CREATE TABLE table_24560733_1 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_24560733_1 WHERE record = "5-2" |
Write a SQL query that answers the following question: How many opponents' points numbers are associated with the game at Ole Miss? | The relevant table was constructed using the following SQL : CREATE TABLE table_24560733_1 (opponents VARCHAR, opponent VARCHAR) | SELECT COUNT(opponents) FROM table_24560733_1 WHERE opponent = "at Ole Miss" |
Write a SQL query that answers the following question: Name the total number of period for yvon le roux | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_13 (period VARCHAR, name VARCHAR) | SELECT COUNT(period) FROM table_24565004_13 WHERE name = "Yvon Le Roux" |
Write a SQL query that answers the following question: Name the period for michel llodra | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_13 (period VARCHAR, name VARCHAR) | SELECT period FROM table_24565004_13 WHERE name = "Michel Llodra" |
Write a SQL query that answers the following question: Name the number of position for democratic republic of the congo | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_13 (position VARCHAR, nationality² VARCHAR) | SELECT COUNT(position) FROM table_24565004_13 WHERE nationality² = "Democratic Republic of the Congo" |
Write a SQL query that answers the following question: How many names correspond to the value 101 for appearances? | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_14 (name VARCHAR, appearances¹ VARCHAR) | SELECT COUNT(name) FROM table_24565004_14 WHERE appearances¹ = 101 |
Write a SQL query that answers the following question: What positions correspond to the name Thierry Morin? | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_14 (position VARCHAR, name VARCHAR) | SELECT position FROM table_24565004_14 WHERE name = "Thierry Morin" |
Write a SQL query that answers the following question: What time period had appearances of 219? | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_11 (period VARCHAR, appearances¹ VARCHAR) | SELECT period FROM table_24565004_11 WHERE appearances¹ = 219 |
Write a SQL query that answers the following question: How many periods had 15 goals? | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_11 (period VARCHAR, goals¹ VARCHAR) | SELECT COUNT(period) FROM table_24565004_11 WHERE goals¹ = 15 |
Write a SQL query that answers the following question: at least how many times was Pierre Vermeulen at a game? | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_22 (appearances¹ INTEGER, name VARCHAR) | SELECT MIN(appearances¹) FROM table_24565004_22 WHERE name = "Pierre Vermeulen" |
Write a SQL query that answers the following question: What country is Richard Vanquelef from? | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_22 (nationality² VARCHAR, name VARCHAR) | SELECT nationality² FROM table_24565004_22 WHERE name = "Richard Vanquelef" |
Write a SQL query that answers the following question: What country is Pierre Vermeulen from? | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_22 (nationality² VARCHAR, name VARCHAR) | SELECT nationality² FROM table_24565004_22 WHERE name = "Pierre Vermeulen" |
Write a SQL query that answers the following question: Name the number of appearances for yugoslavia | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_20 (appearances¹ VARCHAR, nationality² VARCHAR) | SELECT COUNT(appearances¹) FROM table_24565004_20 WHERE nationality² = "Yugoslavia" |
Write a SQL query that answers the following question: Name the nationality for defender 201 | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_20 (nationality² VARCHAR, position VARCHAR, appearances¹ VARCHAR) | SELECT nationality² FROM table_24565004_20 WHERE position = "Defender" AND appearances¹ = 201 |
Write a SQL query that answers the following question: Name the goals for daniel sanchez | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_20 (goals¹ VARCHAR, name VARCHAR) | SELECT goals¹ FROM table_24565004_20 WHERE name = "Daniel Sanchez" |
Write a SQL query that answers the following question: Name the most goals for algeria | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_20 (goals¹ INTEGER, nationality² VARCHAR) | SELECT MIN(goals¹) FROM table_24565004_20 WHERE nationality² = "Algeria" |
Write a SQL query that answers the following question: What was the lowest score. | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_21 (goals¹ INTEGER) | SELECT MIN(goals¹) FROM table_24565004_21 |
Write a SQL query that answers the following question: List the minimum impressions for sammy traoré | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_21 (appearances¹ INTEGER, name VARCHAR) | SELECT MIN(appearances¹) FROM table_24565004_21 WHERE name = "Sammy Traoré" |
Write a SQL query that answers the following question: During what years did nabatingue toko play. | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_21 (period VARCHAR, name VARCHAR) | SELECT period FROM table_24565004_21 WHERE name = "Nabatingue Toko" |
Write a SQL query that answers the following question: Name the number of goals for mauricio pochettino | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_17 (goals¹ VARCHAR, name VARCHAR) | SELECT COUNT(goals¹) FROM table_24565004_17 WHERE name = "Mauricio Pochettino" |
Write a SQL query that answers the following question: Name the period for michel prost | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_17 (period VARCHAR, name VARCHAR) | SELECT period FROM table_24565004_17 WHERE name = "Michel Prost" |
Write a SQL query that answers the following question: Name the goals for mauricio pochettino | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_17 (goals¹ VARCHAR, name VARCHAR) | SELECT goals¹ FROM table_24565004_17 WHERE name = "Mauricio Pochettino" |
Write a SQL query that answers the following question: Name the period for appearances being 380 | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_2 (period VARCHAR, appearances¹ VARCHAR) | SELECT period FROM table_24565004_2 WHERE appearances¹ = 380 |
Write a SQL query that answers the following question: Name the appearances for bernard allou | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_2 (appearances¹ VARCHAR, name VARCHAR) | SELECT appearances¹ FROM table_24565004_2 WHERE name = "Bernard Allou" |
Write a SQL query that answers the following question: Name the most appearances for bernard allou | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_2 (appearances¹ INTEGER, name VARCHAR) | SELECT MAX(appearances¹) FROM table_24565004_2 WHERE name = "Bernard Allou" |
Write a SQL query that answers the following question: What is the highest number of goals scored | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_7 (goals¹ INTEGER) | SELECT MAX(goals¹) FROM table_24565004_7 |
Write a SQL query that answers the following question: What is the lowest number of appearances a player had | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_7 (appearances¹ INTEGER) | SELECT MIN(appearances¹) FROM table_24565004_7 |
Write a SQL query that answers the following question: What is the nationality of Louis floch | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_7 (nationality² VARCHAR, name VARCHAR) | SELECT nationality² FROM table_24565004_7 WHERE name = "Louis Floch" |
Write a SQL query that answers the following question: Which player had 252 appearances | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_7 (name VARCHAR, appearances¹ VARCHAR) | SELECT name FROM table_24565004_7 WHERE appearances¹ = 252 |
Write a SQL query that answers the following question: What is the nationality of the player who scored 13 goals | The relevant table was constructed using the following SQL : CREATE TABLE table_24565004_7 (nationality² VARCHAR, goals¹ VARCHAR) | SELECT nationality² FROM table_24565004_7 WHERE goals¹ = 13 |
Write a SQL query that answers the following question: how many time is the final record is 9–16–5? | The relevant table was constructed using the following SQL : CREATE TABLE table_245711_2 (season VARCHAR, final_record VARCHAR) | SELECT COUNT(season) FROM table_245711_2 WHERE final_record = "9–16–5" |
Write a SQL query that answers the following question: What station was sent on flight up and was launched on 23 July 1980 18:33:03? | The relevant table was constructed using the following SQL : CREATE TABLE table_245800_2 (flight_up VARCHAR, launch_date VARCHAR) | SELECT flight_up FROM table_245800_2 WHERE launch_date = "23 July 1980 18:33:03" |
Write a SQL query that answers the following question: Who were the crews on the flight up of Soyuz T-3? | The relevant table was constructed using the following SQL : CREATE TABLE table_245800_2 (crew VARCHAR, flight_up VARCHAR) | SELECT crew FROM table_245800_2 WHERE flight_up = "Soyuz T-3" |
Write a SQL query that answers the following question: How many days were the station of Soyuz 35 in flight down were in orbit? | The relevant table was constructed using the following SQL : CREATE TABLE table_245800_2 (duration__days_ VARCHAR, flight_down VARCHAR) | SELECT duration__days_ FROM table_245800_2 WHERE flight_down = "Soyuz 35" |
Write a SQL query that answers the following question: Name the number of gn divisions for mannar | The relevant table was constructed using the following SQL : CREATE TABLE table_24574438_1 (gn_divisions VARCHAR, ds_division VARCHAR) | SELECT COUNT(gn_divisions) FROM table_24574438_1 WHERE ds_division = "Mannar" |
Write a SQL query that answers the following question: Name the sinhalese for manthai west | The relevant table was constructed using the following SQL : CREATE TABLE table_24574438_1 (sinhalese INTEGER, ds_division VARCHAR) | SELECT MAX(sinhalese) FROM table_24574438_1 WHERE ds_division = "Manthai West" |
Write a SQL query that answers the following question: Name the least indian tamil for population density being 240 | The relevant table was constructed using the following SQL : CREATE TABLE table_24574438_1 (indian_tamil INTEGER, population_density___km_2__ VARCHAR) | SELECT MIN(indian_tamil) FROM table_24574438_1 WHERE population_density___km_2__ = 240 |
Write a SQL query that answers the following question: Name the popultion density being manthai west | The relevant table was constructed using the following SQL : CREATE TABLE table_24574438_1 (population_density___km_2__ VARCHAR, ds_division VARCHAR) | SELECT population_density___km_2__ FROM table_24574438_1 WHERE ds_division = "Manthai West" |
Write a SQL query that answers the following question: Name the total number of sinhalese for indian tamil being 177 | The relevant table was constructed using the following SQL : CREATE TABLE table_24574438_1 (sinhalese VARCHAR, indian_tamil VARCHAR) | SELECT COUNT(sinhalese) FROM table_24574438_1 WHERE indian_tamil = 177 |
Write a SQL query that answers the following question: Name the least area | The relevant table was constructed using the following SQL : CREATE TABLE table_24574438_1 (area__km_2__ INTEGER) | SELECT MIN(area__km_2__) FROM table_24574438_1 |
Write a SQL query that answers the following question: When westcott is in division one how many leagues are in division 5? | The relevant table was constructed using the following SQL : CREATE TABLE table_24575253_4 (division_five VARCHAR, division_one VARCHAR) | SELECT COUNT(division_five) FROM table_24575253_4 WHERE division_one = "Westcott" |
Write a SQL query that answers the following question: When godstone is in division five who is in division four? | The relevant table was constructed using the following SQL : CREATE TABLE table_24575253_4 (division_four VARCHAR, division_five VARCHAR) | SELECT division_four FROM table_24575253_4 WHERE division_five = "Godstone" |
Write a SQL query that answers the following question: When the wallington new foresters are in division four what is the season? | The relevant table was constructed using the following SQL : CREATE TABLE table_24575253_4 (season VARCHAR, division_four VARCHAR) | SELECT season FROM table_24575253_4 WHERE division_four = "Wallington New Foresters" |
Write a SQL query that answers the following question: When racing epsom is in division two how many seasons are there? | The relevant table was constructed using the following SQL : CREATE TABLE table_24575253_4 (season VARCHAR, division_two VARCHAR) | SELECT COUNT(season) FROM table_24575253_4 WHERE division_two = "Racing Epsom" |
Write a SQL query that answers the following question: When westcott 1935 is in division two how many leagues are in division three? | The relevant table was constructed using the following SQL : CREATE TABLE table_24575253_4 (division_three VARCHAR, division_two VARCHAR) | SELECT COUNT(division_three) FROM table_24575253_4 WHERE division_two = "Westcott 1935" |
Write a SQL query that answers the following question: When real holmesdale reserves is division four who is in division one? | The relevant table was constructed using the following SQL : CREATE TABLE table_24575253_4 (division_one VARCHAR, division_four VARCHAR) | SELECT division_one FROM table_24575253_4 WHERE division_four = "Real Holmesdale Reserves" |
Write a SQL query that answers the following question: When salyut 7 – ve-4 – eva 1 is the spacecraft, what is the duration? | The relevant table was constructed using the following SQL : CREATE TABLE table_245801_2 (duration VARCHAR, spacecraft VARCHAR) | SELECT duration FROM table_245801_2 WHERE spacecraft = "Salyut 7 – VE-4 – EVA 1" |
Write a SQL query that answers the following question: When first woman eva is the comment what is the end -utc? | The relevant table was constructed using the following SQL : CREATE TABLE table_245801_2 (end___utc VARCHAR, comments VARCHAR) | SELECT end___utc FROM table_245801_2 WHERE comments = "First woman EVA" |
Write a SQL query that answers the following question: What series did the racer earn 68 points in? | The relevant table was constructed using the following SQL : CREATE TABLE table_24585157_1 (series VARCHAR, points VARCHAR) | SELECT series FROM table_24585157_1 WHERE points = "68" |
Write a SQL query that answers the following question: Name the duration for georgi grechko | The relevant table was constructed using the following SQL : CREATE TABLE table_245801_1 (duration__days_ VARCHAR, crew VARCHAR) | SELECT duration__days_ FROM table_245801_1 WHERE crew = "Georgi Grechko" |
Write a SQL query that answers the following question: Name the flight up for 10 december 1982 19:02:36 utc | The relevant table was constructed using the following SQL : CREATE TABLE table_245801_1 (flight_up VARCHAR, landing_date VARCHAR) | SELECT flight_up FROM table_245801_1 WHERE landing_date = "10 December 1982 19:02:36 UTC" |
Write a SQL query that answers the following question: Name the launch date for vladimir lyakhov , aleksandr pavlovich aleksandrov | The relevant table was constructed using the following SQL : CREATE TABLE table_245801_1 (launch_date VARCHAR, crew VARCHAR) | SELECT launch_date FROM table_245801_1 WHERE crew = "Vladimir Lyakhov , Aleksandr Pavlovich Aleksandrov" |
Write a SQL query that answers the following question: Name the flight down for vladimir vasyutin , alexander volkov | The relevant table was constructed using the following SQL : CREATE TABLE table_245801_1 (flight_down VARCHAR, crew VARCHAR) | SELECT flight_down FROM table_245801_1 WHERE crew = "Vladimir Vasyutin , Alexander Volkov" |
Write a SQL query that answers the following question: Name the duration for vladimir vasyutin , alexander volkov | The relevant table was constructed using the following SQL : CREATE TABLE table_245801_1 (duration__days_ VARCHAR, crew VARCHAR) | SELECT COUNT(duration__days_) FROM table_245801_1 WHERE crew = "Vladimir Vasyutin , Alexander Volkov" |
Write a SQL query that answers the following question: What team was he on the year he had 38 points? | The relevant table was constructed using the following SQL : CREATE TABLE table_24584486_1 (team VARCHAR, points VARCHAR) | SELECT team FROM table_24584486_1 WHERE points = 38 |
Write a SQL query that answers the following question: What was the least amount of wins when he had 10 poles? | The relevant table was constructed using the following SQL : CREATE TABLE table_24584486_1 (wins INTEGER, poles VARCHAR) | SELECT MIN(wins) FROM table_24584486_1 WHERE poles = 10 |
Write a SQL query that answers the following question: Name the team for 22 points | The relevant table was constructed using the following SQL : CREATE TABLE table_24587026_1 (team VARCHAR, points VARCHAR) | SELECT team FROM table_24587026_1 WHERE points = "22" |
Write a SQL query that answers the following question: Name the f/laps for gp2 series | The relevant table was constructed using the following SQL : CREATE TABLE table_24587026_1 (f_laps VARCHAR, series VARCHAR) | SELECT f_laps FROM table_24587026_1 WHERE series = "GP2 series" |
Write a SQL query that answers the following question: Name the most wins | The relevant table was constructed using the following SQL : CREATE TABLE table_24587026_1 (wins INTEGER) | SELECT MIN(wins) FROM table_24587026_1 |
Write a SQL query that answers the following question: Name the least races for carlin | The relevant table was constructed using the following SQL : CREATE TABLE table_24587026_1 (races INTEGER, team VARCHAR) | SELECT MIN(races) FROM table_24587026_1 WHERE team = "Carlin" |
Write a SQL query that answers the following question: Name the position for 0 podiums and carlin team | The relevant table was constructed using the following SQL : CREATE TABLE table_24587026_1 (position VARCHAR, podiums VARCHAR, team VARCHAR) | SELECT position FROM table_24587026_1 WHERE podiums = 0 AND team = "Carlin" |
Write a SQL query that answers the following question: Name the name in syriac for 500 believers | The relevant table was constructed using the following SQL : CREATE TABLE table_24613895_1 (name_in_syriac VARCHAR, number_of_believers VARCHAR) | SELECT name_in_syriac FROM table_24613895_1 WHERE number_of_believers = 500 |
Write a SQL query that answers the following question: Name the least number of believers | The relevant table was constructed using the following SQL : CREATE TABLE table_24613895_1 (number_of_believers INTEGER) | SELECT MIN(number_of_believers) FROM table_24613895_1 |
Write a SQL query that answers the following question: Name the most number of believers for ܓܘܝܠܢ | The relevant table was constructed using the following SQL : CREATE TABLE table_24613895_1 (number_of_believers INTEGER, name_in_syriac VARCHAR) | SELECT MAX(number_of_believers) FROM table_24613895_1 WHERE name_in_syriac = "ܓܘܝܠܢ" |
Write a SQL query that answers the following question: Name the number of believers for khosrowa | The relevant table was constructed using the following SQL : CREATE TABLE table_24613895_1 (number_of_believers VARCHAR, name_of_village VARCHAR) | SELECT number_of_believers FROM table_24613895_1 WHERE name_of_village = "Khosrowa" |
Write a SQL query that answers the following question: Name the number of believers for patavur | The relevant table was constructed using the following SQL : CREATE TABLE table_24613895_1 (number_of_believers VARCHAR, name_of_village VARCHAR) | SELECT COUNT(number_of_believers) FROM table_24613895_1 WHERE name_of_village = "Patavur" |
Write a SQL query that answers the following question: The local title "Live to Dance" was aired in which channel? | The relevant table was constructed using the following SQL : CREATE TABLE table_24598274_20 (channel VARCHAR, local_title VARCHAR) | SELECT channel FROM table_24598274_20 WHERE local_title = "Live to Dance" |
Write a SQL query that answers the following question: Which country did Johanna Klum presented the show? | The relevant table was constructed using the following SQL : CREATE TABLE table_24598274_20 (country VARCHAR, presenter_s_ VARCHAR) | SELECT country FROM table_24598274_20 WHERE presenter_s_ = "Johanna Klum" |
Write a SQL query that answers the following question: Name the most released for the in crowd | The relevant table was constructed using the following SQL : CREATE TABLE table_24600706_1 (released INTEGER, song VARCHAR) | SELECT MAX(released) FROM table_24600706_1 WHERE song = "The In Crowd" |
Write a SQL query that answers the following question: Name the most released for apologize | The relevant table was constructed using the following SQL : CREATE TABLE table_24600706_1 (released INTEGER, song VARCHAR) | SELECT MAX(released) FROM table_24600706_1 WHERE song = "Apologize" |
Write a SQL query that answers the following question: Name the most released for right here, right now | The relevant table was constructed using the following SQL : CREATE TABLE table_24600706_1 (released INTEGER, song VARCHAR) | SELECT MAX(released) FROM table_24600706_1 WHERE song = "Right Here, Right Now" |
Write a SQL query that answers the following question: Name the us exclusive for miley cyrus | The relevant table was constructed using the following SQL : CREATE TABLE table_24600706_1 (us_exclusive VARCHAR, artist_band VARCHAR) | SELECT us_exclusive FROM table_24600706_1 WHERE artist_band = "Miley Cyrus" |
Write a SQL query that answers the following question: When bmw activee is the vehicle type how many clean electric grid california (san francisco) measurements are there? | The relevant table was constructed using the following SQL : CREATE TABLE table_24620684_2 (clean_electric_grid_california__san_francisco_ VARCHAR, vehicle VARCHAR) | SELECT COUNT(clean_electric_grid_california__san_francisco_) FROM table_24620684_2 WHERE vehicle = "BMW ActiveE" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.