instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: Where's the louisiana-lafayette as a visiting team?
The relevant table was constructed using the following SQL : CREATE TABLE table_26842217_4 (site VARCHAR, visiting_team VARCHAR)
SELECT site FROM table_26842217_4 WHERE visiting_team = "Louisiana-Lafayette"
Write a SQL query that answers the following question: What were the results of the tennessee tech as a visiting team?
The relevant table was constructed using the following SQL : CREATE TABLE table_26842217_4 (result VARCHAR, visiting_team VARCHAR)
SELECT result FROM table_26842217_4 WHERE visiting_team = "Tennessee Tech"
Write a SQL query that answers the following question: What is the home team where the San Jose state is the visiting team?
The relevant table was constructed using the following SQL : CREATE TABLE table_26842217_4 (home_team VARCHAR, visiting_team VARCHAR)
SELECT home_team FROM table_26842217_4 WHERE visiting_team = "San Jose State"
Write a SQL query that answers the following question: What were the results in the bryant-denny stadium • tuscaloosa, al?
The relevant table was constructed using the following SQL : CREATE TABLE table_26842217_4 (result VARCHAR, site VARCHAR)
SELECT result FROM table_26842217_4 WHERE site = "Bryant-Denny Stadium • Tuscaloosa, AL"
Write a SQL query that answers the following question: What home team is at 7:30pm in ESPN?
The relevant table was constructed using the following SQL : CREATE TABLE table_26842217_4 (home_team VARCHAR, time VARCHAR, broadcast VARCHAR)
SELECT home_team FROM table_26842217_4 WHERE time = "7:30pm" AND broadcast = "ESPN"
Write a SQL query that answers the following question: If the visiting team is Clemson, when was the time?
The relevant table was constructed using the following SQL : CREATE TABLE table_26842217_8 (time VARCHAR, visiting_team VARCHAR)
SELECT time FROM table_26842217_8 WHERE visiting_team = "Clemson"
Write a SQL query that answers the following question: How many times was the site wallace wade stadium • durham, nc?
The relevant table was constructed using the following SQL : CREATE TABLE table_26842217_8 (attendance VARCHAR, site VARCHAR)
SELECT COUNT(attendance) FROM table_26842217_8 WHERE site = "Wallace Wade Stadium • Durham, NC"
Write a SQL query that answers the following question: If the site was wallace wade stadium • durham, nc, what was the result?
The relevant table was constructed using the following SQL : CREATE TABLE table_26842217_8 (result VARCHAR, site VARCHAR)
SELECT result FROM table_26842217_8 WHERE site = "Wallace Wade Stadium • Durham, NC"
Write a SQL query that answers the following question: If the site is sanford stadium • athens, ga, what is the date?
The relevant table was constructed using the following SQL : CREATE TABLE table_26842217_8 (date VARCHAR, site VARCHAR)
SELECT date FROM table_26842217_8 WHERE site = "Sanford Stadium • Athens, GA"
Write a SQL query that answers the following question: What is the production code for the movie with 4.32 million U.S. viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_26845668_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR)
SELECT production_code FROM table_26845668_1 WHERE us_viewers__millions_ = "4.32"
Write a SQL query that answers the following question: How many times was Louisiana-Monroe a visiting team?
The relevant table was constructed using the following SQL : CREATE TABLE table_26842217_6 (time VARCHAR, visiting_team VARCHAR)
SELECT COUNT(time) FROM table_26842217_6 WHERE visiting_team = "Louisiana-Monroe"
Write a SQL query that answers the following question: List all dates where South Florida was a visiting team.
The relevant table was constructed using the following SQL : CREATE TABLE table_26842217_6 (date VARCHAR, visiting_team VARCHAR)
SELECT date FROM table_26842217_6 WHERE visiting_team = "South Florida"
Write a SQL query that answers the following question: How many times was #7 Oregon a visiting team?
The relevant table was constructed using the following SQL : CREATE TABLE table_26842217_6 (time VARCHAR, visiting_team VARCHAR)
SELECT time FROM table_26842217_6 WHERE visiting_team = "#7 Oregon"
Write a SQL query that answers the following question: List all home teams when Western Kentucky was the visiting team.
The relevant table was constructed using the following SQL : CREATE TABLE table_26842217_6 (home_team VARCHAR, visiting_team VARCHAR)
SELECT home_team FROM table_26842217_6 WHERE visiting_team = "Western Kentucky"
Write a SQL query that answers the following question: List all times with Kentucky as the home team.
The relevant table was constructed using the following SQL : CREATE TABLE table_26842217_6 (time VARCHAR, home_team VARCHAR)
SELECT time FROM table_26842217_6 WHERE home_team = "Kentucky"
Write a SQL query that answers the following question: What is the score when the opposition is mid canterbury?
The relevant table was constructed using the following SQL : CREATE TABLE table_26847237_3 (score VARCHAR, opposition VARCHAR)
SELECT score FROM table_26847237_3 WHERE opposition = "Mid Canterbury"
Write a SQL query that answers the following question: what is the home team when the opposition is east coast?
The relevant table was constructed using the following SQL : CREATE TABLE table_26847237_3 (home_team VARCHAR, opposition VARCHAR)
SELECT home_team FROM table_26847237_3 WHERE opposition = "East Coast"
Write a SQL query that answers the following question: What is the home team when the opposition is wairarapa bush?
The relevant table was constructed using the following SQL : CREATE TABLE table_26847237_3 (home_team VARCHAR, opposition VARCHAR)
SELECT home_team FROM table_26847237_3 WHERE opposition = "Wairarapa Bush"
Write a SQL query that answers the following question: what is the home team when the round # is round 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_26847237_3 (home_team VARCHAR, round__number VARCHAR)
SELECT home_team FROM table_26847237_3 WHERE round__number = "Round 1"
Write a SQL query that answers the following question: Who is the opposition when the score is 37 - 28?
The relevant table was constructed using the following SQL : CREATE TABLE table_26847237_3 (opposition VARCHAR, score VARCHAR)
SELECT opposition FROM table_26847237_3 WHERE score = "37 - 28"
Write a SQL query that answers the following question: What is the location when the opposition is mid canterbury?
The relevant table was constructed using the following SQL : CREATE TABLE table_26847237_3 (location VARCHAR, opposition VARCHAR)
SELECT location FROM table_26847237_3 WHERE opposition = "Mid Canterbury"
Write a SQL query that answers the following question: What was the score in round 7?
The relevant table was constructed using the following SQL : CREATE TABLE table_26847237_1 (score VARCHAR, round__number VARCHAR)
SELECT score FROM table_26847237_1 WHERE round__number = "Round 7"
Write a SQL query that answers the following question: Who was the home team when the opposition was Buller?
The relevant table was constructed using the following SQL : CREATE TABLE table_26847237_1 (home_team VARCHAR, opposition VARCHAR)
SELECT home_team FROM table_26847237_1 WHERE opposition = "Buller"
Write a SQL query that answers the following question: Was it a win or loss for Wanganui in round 3?
The relevant table was constructed using the following SQL : CREATE TABLE table_26847237_1 (win_loss VARCHAR, round__number VARCHAR)
SELECT win_loss FROM table_26847237_1 WHERE round__number = "Round 3"
Write a SQL query that answers the following question: What was the location when the opposition was East Coast?
The relevant table was constructed using the following SQL : CREATE TABLE table_26847237_1 (location VARCHAR, opposition VARCHAR)
SELECT location FROM table_26847237_1 WHERE opposition = "East Coast"
Write a SQL query that answers the following question: What was the score when the opposition was West Coast in Wanganui?
The relevant table was constructed using the following SQL : CREATE TABLE table_26847237_1 (score VARCHAR, opposition VARCHAR, location VARCHAR)
SELECT score FROM table_26847237_1 WHERE opposition = "West Coast" AND location = "Wanganui"
Write a SQL query that answers the following question: Was it a win or a loss for Wanganui in Paeroa?
The relevant table was constructed using the following SQL : CREATE TABLE table_26847237_1 (win_loss VARCHAR, location VARCHAR)
SELECT win_loss FROM table_26847237_1 WHERE location = "Paeroa"
Write a SQL query that answers the following question: What is every original air date for series# of 26?
The relevant table was constructed using the following SQL : CREATE TABLE table_26866205_1 (original_airdate VARCHAR, series__number VARCHAR)
SELECT original_airdate FROM table_26866205_1 WHERE series__number = 26
Write a SQL query that answers the following question: Who are the directors of the episode in series # 54?
The relevant table was constructed using the following SQL : CREATE TABLE table_26866233_1 (director VARCHAR, series__number VARCHAR)
SELECT director FROM table_26866233_1 WHERE series__number = 54
Write a SQL query that answers the following question: The episode where the director is Gene Reynolds has who as the writer?
The relevant table was constructed using the following SQL : CREATE TABLE table_26866233_1 (writer VARCHAR, director VARCHAR)
SELECT writer FROM table_26866233_1 WHERE director = "Gene Reynolds"
Write a SQL query that answers the following question: The episode with the original airdate December22,1996 has what title?
The relevant table was constructed using the following SQL : CREATE TABLE table_26866233_1 (title VARCHAR, original_airdate VARCHAR)
SELECT title FROM table_26866233_1 WHERE original_airdate = "December22,1996"
Write a SQL query that answers the following question: What was the original air date of the episode written by michael glassberg?
The relevant table was constructed using the following SQL : CREATE TABLE table_26866299_1 (original_airdate VARCHAR, writer VARCHAR)
SELECT original_airdate FROM table_26866299_1 WHERE writer = "Michael Glassberg"
Write a SQL query that answers the following question: What was the original air date for episode number 96 in the series?
The relevant table was constructed using the following SQL : CREATE TABLE table_26866299_1 (original_airdate VARCHAR, series__number VARCHAR)
SELECT original_airdate FROM table_26866299_1 WHERE series__number = 96
Write a SQL query that answers the following question: Who wrote episode 122 in the series?
The relevant table was constructed using the following SQL : CREATE TABLE table_26866434_1 (writer VARCHAR, series__number VARCHAR)
SELECT writer FROM table_26866434_1 WHERE series__number = 122
Write a SQL query that answers the following question: Who directed series episode number 201?
The relevant table was constructed using the following SQL : CREATE TABLE table_26866519_1 (director VARCHAR, series__number VARCHAR)
SELECT director FROM table_26866519_1 WHERE series__number = 201
Write a SQL query that answers the following question: What are the original air date(s) for season episode 20?
The relevant table was constructed using the following SQL : CREATE TABLE table_26866519_1 (original_airdate VARCHAR, season__number VARCHAR)
SELECT original_airdate FROM table_26866519_1 WHERE season__number = 20
Write a SQL query that answers the following question: How many episodes are directed by ricardo mendez matta?
The relevant table was constructed using the following SQL : CREATE TABLE table_26866519_1 (season__number VARCHAR, director VARCHAR)
SELECT COUNT(season__number) FROM table_26866519_1 WHERE director = "Ricardo Mendez Matta"
Write a SQL query that answers the following question: Name the leaast points for standing 5th
The relevant table was constructed using the following SQL : CREATE TABLE table_26882866_1 (points INTEGER, standing VARCHAR)
SELECT MIN(points) FROM table_26882866_1 WHERE standing = "5th"
Write a SQL query that answers the following question: If puma is 12, what is camper?
The relevant table was constructed using the following SQL : CREATE TABLE table_26894949_2 (camper INTEGER, puma VARCHAR)
SELECT MIN(camper) FROM table_26894949_2 WHERE puma = "12"
Write a SQL query that answers the following question: In how many events was Puma 20 and abu dhabi 30?
The relevant table was constructed using the following SQL : CREATE TABLE table_26894949_2 (event VARCHAR, puma VARCHAR, abu_dhabi VARCHAR)
SELECT COUNT(event) FROM table_26894949_2 WHERE puma = "20" AND abu_dhabi = "30"
Write a SQL query that answers the following question: How many time was the distance Abu Dhabi?
The relevant table was constructed using the following SQL : CREATE TABLE table_26894949_2 (sanya VARCHAR, distance VARCHAR)
SELECT COUNT(sanya) FROM table_26894949_2 WHERE distance = "abu_dhabi"
Write a SQL query that answers the following question: What is the largest amount of ends lost?
The relevant table was constructed using the following SQL : CREATE TABLE table_26912584_2 (Ends INTEGER)
SELECT MAX(Ends) AS lost FROM table_26912584_2
Write a SQL query that answers the following question: When sweden is the country who is the skip?
The relevant table was constructed using the following SQL : CREATE TABLE table_26912584_2 (skip VARCHAR, country VARCHAR, Sweden VARCHAR)
SELECT skip FROM table_26912584_2 WHERE country = Sweden
Write a SQL query that answers the following question: Who wrote the story viewed by 0.53 million viewers?
The relevant table was constructed using the following SQL : CREATE TABLE table_26914076_3 (story_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT story_by FROM table_26914076_3 WHERE us_viewers__millions_ = "0.53"
Write a SQL query that answers the following question: How many viewers watched the episode with a story by david simon & mari kornhauser?
The relevant table was constructed using the following SQL : CREATE TABLE table_26914076_3 (us_viewers__millions_ VARCHAR, story_by VARCHAR)
SELECT us_viewers__millions_ FROM table_26914076_3 WHERE story_by = "David Simon & Mari Kornhauser"
Write a SQL query that answers the following question: How many entries are there for u.s. viewers (millions) for the episode directed by rob bailey?
The relevant table was constructed using the following SQL : CREATE TABLE table_26914076_3 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)
SELECT COUNT(us_viewers__millions_) FROM table_26914076_3 WHERE directed_by = "Rob Bailey"
Write a SQL query that answers the following question: What is the date the episode directed by rob bailey aired?
The relevant table was constructed using the following SQL : CREATE TABLE table_26914076_3 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT original_air_date FROM table_26914076_3 WHERE directed_by = "Rob Bailey"
Write a SQL query that answers the following question: WHich team had dave penney as an incoming manager
The relevant table was constructed using the following SQL : CREATE TABLE table_26914759_3 (team VARCHAR, incoming_manager VARCHAR)
SELECT team FROM table_26914759_3 WHERE incoming_manager = "Dave Penney"
Write a SQL query that answers the following question: What was the manner of departure for notts county with an incoming manager of martin allen
The relevant table was constructed using the following SQL : CREATE TABLE table_26914759_3 (manner_of_departure VARCHAR, team VARCHAR, incoming_manager VARCHAR)
SELECT manner_of_departure FROM table_26914759_3 WHERE team = "Notts County" AND incoming_manager = "Martin Allen"
Write a SQL query that answers the following question: How many teams had gary megson as an incoming manager
The relevant table was constructed using the following SQL : CREATE TABLE table_26914759_3 (position_in_table VARCHAR, incoming_manager VARCHAR)
SELECT COUNT(position_in_table) FROM table_26914759_3 WHERE incoming_manager = "Gary Megson"
Write a SQL query that answers the following question: who was the incoming manager for the 12th position in the table
The relevant table was constructed using the following SQL : CREATE TABLE table_26914759_3 (incoming_manager VARCHAR, position_in_table VARCHAR)
SELECT incoming_manager FROM table_26914759_3 WHERE position_in_table = "12th"
Write a SQL query that answers the following question: How tall is the player from farmington, ky?
The relevant table was constructed using the following SQL : CREATE TABLE table_26916717_1 (height VARCHAR, home_town VARCHAR)
SELECT height FROM table_26916717_1 WHERE home_town = "Farmington, KY"
Write a SQL query that answers the following question: Where did adrian smith go to college?
The relevant table was constructed using the following SQL : CREATE TABLE table_26916717_1 (team_school VARCHAR, name VARCHAR)
SELECT team_school FROM table_26916717_1 WHERE name = "Adrian Smith"
Write a SQL query that answers the following question: What player attended california university?
The relevant table was constructed using the following SQL : CREATE TABLE table_26916717_1 (name VARCHAR, team_school VARCHAR)
SELECT name FROM table_26916717_1 WHERE team_school = "California"
Write a SQL query that answers the following question: What is the name of the player from purcell, ok?
The relevant table was constructed using the following SQL : CREATE TABLE table_26916717_1 (name VARCHAR, home_town VARCHAR)
SELECT name FROM table_26916717_1 WHERE home_town = "Purcell, OK"
Write a SQL query that answers the following question: Name the hebrew for tisʕ-
The relevant table was constructed using the following SQL : CREATE TABLE table_26919_6 (hebrew VARCHAR, arabic VARCHAR)
SELECT hebrew FROM table_26919_6 WHERE arabic = "tisʕ-"
Write a SQL query that answers the following question: Name the tigrinya for χams-
The relevant table was constructed using the following SQL : CREATE TABLE table_26919_6 (tigrinya VARCHAR, arabic VARCHAR)
SELECT COUNT(tigrinya) FROM table_26919_6 WHERE arabic = "χams-"
Write a SQL query that answers the following question: Name the hebrew for *tišʻ-
The relevant table was constructed using the following SQL : CREATE TABLE table_26919_6 (hebrew VARCHAR, proto_semitic VARCHAR)
SELECT hebrew FROM table_26919_6 WHERE proto_semitic = "*tišʻ-"
Write a SQL query that answers the following question: Name the arabic for ħamuʃte
The relevant table was constructed using the following SQL : CREATE TABLE table_26919_6 (arabic VARCHAR, tigrinya VARCHAR)
SELECT arabic FROM table_26919_6 WHERE tigrinya = "ħamuʃte"
Write a SQL query that answers the following question: Name the sabaean for sabʕ-
The relevant table was constructed using the following SQL : CREATE TABLE table_26919_6 (sabaean VARCHAR, arabic VARCHAR)
SELECT sabaean FROM table_26919_6 WHERE arabic = "sabʕ-"
Write a SQL query that answers the following question: Who is the incoming manager when the date of vacancy was 21 march 2011?
The relevant table was constructed using the following SQL : CREATE TABLE table_26914854_3 (incoming_manager VARCHAR, date_of_vacancy VARCHAR)
SELECT incoming_manager FROM table_26914854_3 WHERE date_of_vacancy = "21 March 2011"
Write a SQL query that answers the following question: What is the position in table when the date of vacancy was 4 january 2011?
The relevant table was constructed using the following SQL : CREATE TABLE table_26914854_3 (position_in_table VARCHAR, date_of_vacancy VARCHAR)
SELECT position_in_table FROM table_26914854_3 WHERE date_of_vacancy = "4 January 2011"
Write a SQL query that answers the following question: What is the team when the incoming manager is martin allen?
The relevant table was constructed using the following SQL : CREATE TABLE table_26914854_3 (team VARCHAR, incoming_manager VARCHAR)
SELECT team FROM table_26914854_3 WHERE incoming_manager = "Martin Allen"
Write a SQL query that answers the following question: Who is the incoming manager when the date of appointment is 9 march 2011?
The relevant table was constructed using the following SQL : CREATE TABLE table_26914854_3 (incoming_manager VARCHAR, date_of_appointment VARCHAR)
SELECT incoming_manager FROM table_26914854_3 WHERE date_of_appointment = "9 March 2011"
Write a SQL query that answers the following question: What is the team when the date of appointment is 23 march 2011?
The relevant table was constructed using the following SQL : CREATE TABLE table_26914854_3 (team VARCHAR, date_of_appointment VARCHAR)
SELECT team FROM table_26914854_3 WHERE date_of_appointment = "23 March 2011"
Write a SQL query that answers the following question: what is the date of appointment 11 june 2010?
The relevant table was constructed using the following SQL : CREATE TABLE table_26914854_3 (team VARCHAR, date_of_appointment VARCHAR)
SELECT team FROM table_26914854_3 WHERE date_of_appointment = "11 June 2010"
Write a SQL query that answers the following question: What is the depth at the UTC time of 12:19:36?
The relevant table was constructed using the following SQL : CREATE TABLE table_26950408_1 (depth VARCHAR, time___utc__ VARCHAR)
SELECT depth FROM table_26950408_1 WHERE time___utc__ = "12:19:36"
Write a SQL query that answers the following question: What is the date for the UTC time of 03:15:46?
The relevant table was constructed using the following SQL : CREATE TABLE table_26950408_1 (date__yyyy_mm_dd_ VARCHAR, time___utc__ VARCHAR)
SELECT date__yyyy_mm_dd_ FROM table_26950408_1 WHERE time___utc__ = "03:15:46"
Write a SQL query that answers the following question: What is the title for episode number 30?
The relevant table was constructed using the following SQL : CREATE TABLE table_26952212_1 (title VARCHAR, no_in_total VARCHAR)
SELECT title FROM table_26952212_1 WHERE no_in_total = "30"
Write a SQL query that answers the following question: What is the % identity to C7orf38 of the animal whose genus & species is Mus Musculus?
The relevant table was constructed using the following SQL : CREATE TABLE table_26957063_3 (_percentage_identity_to_c7orf38 INTEGER, genus_ VARCHAR, _species VARCHAR)
SELECT MAX(_percentage_identity_to_c7orf38) FROM table_26957063_3 WHERE genus_ & _species = "Mus musculus"
Write a SQL query that answers the following question: What is the length (AA) of the animal whose NCBI accession number is CAM15594.1?
The relevant table was constructed using the following SQL : CREATE TABLE table_26957063_3 (length__aa_ INTEGER, ncbi_accession_number VARCHAR)
SELECT MIN(length__aa_) FROM table_26957063_3 WHERE ncbi_accession_number = "CAM15594.1"
Write a SQL query that answers the following question: What is the % similarity to C7orf38 of the animal whose % identity to C7orf38 is 81?
The relevant table was constructed using the following SQL : CREATE TABLE table_26957063_3 (_percentage_similarity_to_c7orf38 INTEGER, _percentage_identity_to_c7orf38 VARCHAR)
SELECT MAX(_percentage_similarity_to_c7orf38) FROM table_26957063_3 WHERE _percentage_identity_to_c7orf38 = 81
Write a SQL query that answers the following question: What is the common name of the animal whose length (AA) is 1323?
The relevant table was constructed using the following SQL : CREATE TABLE table_26957063_3 (common_name VARCHAR, length__aa_ VARCHAR)
SELECT common_name FROM table_26957063_3 WHERE length__aa_ = 1323
Write a SQL query that answers the following question: What is the % identity to C7orf38 of the animal whose common name is rat?
The relevant table was constructed using the following SQL : CREATE TABLE table_26957063_3 (_percentage_identity_to_c7orf38 INTEGER, common_name VARCHAR)
SELECT MIN(_percentage_identity_to_c7orf38) FROM table_26957063_3 WHERE common_name = "Rat"
Write a SQL query that answers the following question: What is the genus & species of the animal whose accession number is XP_002439156.1?
The relevant table was constructed using the following SQL : CREATE TABLE table_26957063_3 (genus_ VARCHAR, _species VARCHAR, ncbi_accession_number VARCHAR)
SELECT genus_ & _species FROM table_26957063_3 WHERE ncbi_accession_number = "XP_002439156.1"
Write a SQL query that answers the following question: How many episodes were written by Alison McDonald?
The relevant table was constructed using the following SQL : CREATE TABLE table_26961951_4 (directed_by VARCHAR, written_by VARCHAR)
SELECT COUNT(directed_by) FROM table_26961951_4 WHERE written_by = "Alison McDonald"
Write a SQL query that answers the following question: How many viewers in millions did the Alison McDonald episode get?
The relevant table was constructed using the following SQL : CREATE TABLE table_26961951_4 (us_viewers__million_ VARCHAR, written_by VARCHAR)
SELECT us_viewers__million_ FROM table_26961951_4 WHERE written_by = "Alison McDonald"
Write a SQL query that answers the following question: What is the p max ( bar ) for the 6876 f bolt ( kgf )?
The relevant table was constructed using the following SQL : CREATE TABLE table_26967904_2 (p_max___bar__ INTEGER, f_bolt___kgf__ VARCHAR)
SELECT MIN(p_max___bar__) FROM table_26967904_2 WHERE f_bolt___kgf__ = 6876
Write a SQL query that answers the following question: What is the p1 diameter (mm) when .300 lapua magnum is the chambering?
The relevant table was constructed using the following SQL : CREATE TABLE table_26967904_2 (p1_diameter__mm_ VARCHAR, chambering VARCHAR)
SELECT p1_diameter__mm_ FROM table_26967904_2 WHERE chambering = ".300 Lapua Magnum"
Write a SQL query that answers the following question: What is the chambering for the 8339 f bolt ( kgf )?
The relevant table was constructed using the following SQL : CREATE TABLE table_26967904_2 (chambering VARCHAR, f_bolt___kgf__ VARCHAR)
SELECT chambering FROM table_26967904_2 WHERE f_bolt___kgf__ = 8339
Write a SQL query that answers the following question: What is the f bolt for 11.35 p1 diameter (mm)?
The relevant table was constructed using the following SQL : CREATE TABLE table_26967904_2 (f_bolt VARCHAR, p1_diameter__mm_ VARCHAR)
SELECT f_bolt FROM table_26967904_2 WHERE p1_diameter__mm_ = "11.35"
Write a SQL query that answers the following question: How many external (cm 2 ) are there for the .338 lapua magnum chambering?
The relevant table was constructed using the following SQL : CREATE TABLE table_26967904_2 (a_external__cm_2__ VARCHAR, chambering VARCHAR)
SELECT COUNT(a_external__cm_2__) FROM table_26967904_2 WHERE chambering = ".338 Lapua Magnum"
Write a SQL query that answers the following question: With what type of chambering is the F bolt n (lbf) and the P max (bar) 3900?
The relevant table was constructed using the following SQL : CREATE TABLE table_26967904_1 (chambering VARCHAR, f_bolt VARCHAR, p_max___bar__ VARCHAR)
SELECT chambering FROM table_26967904_1 WHERE f_bolt = "N (lbf)" AND p_max___bar__ = 3900
Write a SQL query that answers the following question: What is the p max (bar) of the pistol with a P1 diameter of 9.70 mm?
The relevant table was constructed using the following SQL : CREATE TABLE table_26967904_1 (p_max___bar__ VARCHAR, p1_diameter__mm_ VARCHAR)
SELECT p_max___bar__ FROM table_26967904_1 WHERE p1_diameter__mm_ = "9.70"
Write a SQL query that answers the following question: What is the p max (bar) in the pistol where the chambering is .45 ACP?
The relevant table was constructed using the following SQL : CREATE TABLE table_26967904_1 (p_max___bar__ INTEGER, chambering VARCHAR)
SELECT MAX(p_max___bar__) FROM table_26967904_1 WHERE chambering = ".45 ACP"
Write a SQL query that answers the following question: What is the P max (bar) of the pistol with a P1 diameter of 12.09 mm?
The relevant table was constructed using the following SQL : CREATE TABLE table_26967904_1 (p_max___bar__ VARCHAR, p1_diameter__mm_ VARCHAR)
SELECT p_max___bar__ FROM table_26967904_1 WHERE p1_diameter__mm_ = "12.09"
Write a SQL query that answers the following question: Who was the incoming manager for the date of appointment of 15 january 2011?
The relevant table was constructed using the following SQL : CREATE TABLE table_26976615_3 (incoming_manager VARCHAR, date_of_appointment VARCHAR)
SELECT incoming_manager FROM table_26976615_3 WHERE date_of_appointment = "15 January 2011"
Write a SQL query that answers the following question: What is the date of appointment for the date of vacancy of 22 august 2010?
The relevant table was constructed using the following SQL : CREATE TABLE table_26976615_3 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR)
SELECT date_of_appointment FROM table_26976615_3 WHERE date_of_vacancy = "22 August 2010"
Write a SQL query that answers the following question: Who was the outgoing manager for the team of târgu mureş?
The relevant table was constructed using the following SQL : CREATE TABLE table_26976615_3 (outgoing_manager VARCHAR, team VARCHAR)
SELECT outgoing_manager FROM table_26976615_3 WHERE team = "Târgu Mureş"
Write a SQL query that answers the following question: How many date of appointments are there when the date of vacancy was 2 october 2010?
The relevant table was constructed using the following SQL : CREATE TABLE table_26976615_3 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR)
SELECT COUNT(date_of_appointment) FROM table_26976615_3 WHERE date_of_vacancy = "2 October 2010"
Write a SQL query that answers the following question: Who was the outgoing manager when the incoming manager was laurenţiu reghecampf?
The relevant table was constructed using the following SQL : CREATE TABLE table_26976615_3 (outgoing_manager VARCHAR, incoming_manager VARCHAR)
SELECT outgoing_manager FROM table_26976615_3 WHERE incoming_manager = "Laurenţiu Reghecampf"
Write a SQL query that answers the following question: What was the manner of departure when the outgoing manager was andrea mandorlini?
The relevant table was constructed using the following SQL : CREATE TABLE table_26976615_3 (manner_of_departure VARCHAR, outgoing_manager VARCHAR)
SELECT manner_of_departure FROM table_26976615_3 WHERE outgoing_manager = "Andrea Mandorlini"
Write a SQL query that answers the following question: What is the capacity for dundee united?
The relevant table was constructed using the following SQL : CREATE TABLE table_26980923_2 (capacity VARCHAR, team VARCHAR)
SELECT capacity FROM table_26980923_2 WHERE team = "Dundee United"
Write a SQL query that answers the following question: What was the total attendance at rugby park?
The relevant table was constructed using the following SQL : CREATE TABLE table_26980923_2 (total VARCHAR, stadium VARCHAR)
SELECT total FROM table_26980923_2 WHERE stadium = "Rugby Park"
Write a SQL query that answers the following question: What is the total attended for kilmarnock?
The relevant table was constructed using the following SQL : CREATE TABLE table_26980923_2 (total INTEGER, team VARCHAR)
SELECT MIN(total) FROM table_26980923_2 WHERE team = "Kilmarnock"
Write a SQL query that answers the following question: How many times was the time 19' 38.87 115.219mph on Fri Aug 27?
The relevant table was constructed using the following SQL : CREATE TABLE table_26986076_1 (mon_23_aug VARCHAR, fri_27_aug VARCHAR)
SELECT COUNT(mon_23_aug) FROM table_26986076_1 WHERE fri_27_aug = "19' 38.87 115.219mph"
Write a SQL query that answers the following question: If the time on Tues Aug 24 is 20' 49.46 108.709mph, what is the time on Fri Aug 27?
The relevant table was constructed using the following SQL : CREATE TABLE table_26986076_1 (fri_27_aug VARCHAR, tues_24_aug VARCHAR)
SELECT fri_27_aug FROM table_26986076_1 WHERE tues_24_aug = "20' 49.46 108.709mph"
Write a SQL query that answers the following question: If Wed Aug 25 is —— no time, what is Sat aug 21?
The relevant table was constructed using the following SQL : CREATE TABLE table_26986076_1 (sat_21_aug VARCHAR, wed_25_aug VARCHAR)
SELECT sat_21_aug FROM table_26986076_1 WHERE wed_25_aug = "—— No Time"
Write a SQL query that answers the following question: If the Rank is 10, what was the time on Sat aug 28?
The relevant table was constructed using the following SQL : CREATE TABLE table_26986076_1 (sat_28_aug VARCHAR, rank VARCHAR)
SELECT sat_28_aug FROM table_26986076_1 WHERE rank = 10
Write a SQL query that answers the following question: How many times was the time 20' 05.19 112.703mph on Thurs Aug 26th?
The relevant table was constructed using the following SQL : CREATE TABLE table_26986076_1 (sat_21_aug VARCHAR, thurs_26_aug VARCHAR)
SELECT COUNT(sat_21_aug) FROM table_26986076_1 WHERE thurs_26_aug = "20' 05.19 112.703mph"