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