question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
| text
stringlengths 114
1.06k
|
---|---|---|---|
When a school has authority of state and a decile greater than 1, what is the roll number?
|
CREATE TABLE table_name_66 (roll VARCHAR, authority VARCHAR, decile VARCHAR)
|
SELECT roll FROM table_name_66 WHERE authority = "state" AND decile > 1
|
### Context: CREATE TABLE table_name_66 (roll VARCHAR, authority VARCHAR, decile VARCHAR) ### Question: When a school has authority of state and a decile greater than 1, what is the roll number? ### Answer: SELECT roll FROM table_name_66 WHERE authority = "state" AND decile > 1
|
Who did the Jays play on August 30?
|
CREATE TABLE table_name_53 (opponent VARCHAR, date VARCHAR)
|
SELECT opponent FROM table_name_53 WHERE date = "august 30"
|
### Context: CREATE TABLE table_name_53 (opponent VARCHAR, date VARCHAR) ### Question: Who did the Jays play on August 30? ### Answer: SELECT opponent FROM table_name_53 WHERE date = "august 30"
|
Which opponent has a record of 5-0-1?
|
CREATE TABLE table_name_10 (opponent VARCHAR, record VARCHAR)
|
SELECT opponent FROM table_name_10 WHERE record = "5-0-1"
|
### Context: CREATE TABLE table_name_10 (opponent VARCHAR, record VARCHAR) ### Question: Which opponent has a record of 5-0-1? ### Answer: SELECT opponent FROM table_name_10 WHERE record = "5-0-1"
|
What method does the opponent of Dan New use?
|
CREATE TABLE table_name_90 (method VARCHAR, opponent VARCHAR)
|
SELECT method FROM table_name_90 WHERE opponent = "dan new"
|
### Context: CREATE TABLE table_name_90 (method VARCHAR, opponent VARCHAR) ### Question: What method does the opponent of Dan New use? ### Answer: SELECT method FROM table_name_90 WHERE opponent = "dan new"
|
Which method has a record of 3-0?
|
CREATE TABLE table_name_27 (method VARCHAR, record VARCHAR)
|
SELECT method FROM table_name_27 WHERE record = "3-0"
|
### Context: CREATE TABLE table_name_27 (method VARCHAR, record VARCHAR) ### Question: Which method has a record of 3-0? ### Answer: SELECT method FROM table_name_27 WHERE record = "3-0"
|
Which event is a win by an opponent of Nicolas Smith, with the round marked n/a?
|
CREATE TABLE table_name_24 (event VARCHAR, opponent VARCHAR, res VARCHAR, round VARCHAR)
|
SELECT event FROM table_name_24 WHERE res = "win" AND round = "n/a" AND opponent = "nicolas smith"
|
### Context: CREATE TABLE table_name_24 (event VARCHAR, opponent VARCHAR, res VARCHAR, round VARCHAR) ### Question: Which event is a win by an opponent of Nicolas Smith, with the round marked n/a? ### Answer: SELECT event FROM table_name_24 WHERE res = "win" AND round = "n/a" AND opponent = "nicolas smith"
|
Which event lasted 1 round and included an opponent of Dan Spychalski?
|
CREATE TABLE table_name_36 (event VARCHAR, round VARCHAR, opponent VARCHAR)
|
SELECT event FROM table_name_36 WHERE round = "1" AND opponent = "dan spychalski"
|
### Context: CREATE TABLE table_name_36 (event VARCHAR, round VARCHAR, opponent VARCHAR) ### Question: Which event lasted 1 round and included an opponent of Dan Spychalski? ### Answer: SELECT event FROM table_name_36 WHERE round = "1" AND opponent = "dan spychalski"
|
What is Jimmy Smith's opponent's record?
|
CREATE TABLE table_name_70 (record VARCHAR, opponent VARCHAR)
|
SELECT record FROM table_name_70 WHERE opponent = "jimmy smith"
|
### Context: CREATE TABLE table_name_70 (record VARCHAR, opponent VARCHAR) ### Question: What is Jimmy Smith's opponent's record? ### Answer: SELECT record FROM table_name_70 WHERE opponent = "jimmy smith"
|
Name the sum of frequecy with brand of exa fm
|
CREATE TABLE table_name_47 (frequency INTEGER, brand VARCHAR)
|
SELECT SUM(frequency) FROM table_name_47 WHERE brand = "exa fm"
|
### Context: CREATE TABLE table_name_47 (frequency INTEGER, brand VARCHAR) ### Question: Name the sum of frequecy with brand of exa fm ### Answer: SELECT SUM(frequency) FROM table_name_47 WHERE brand = "exa fm"
|
Name the webcast for website of β’ and frequency of 103.3
|
CREATE TABLE table_name_5 (webcast VARCHAR, website VARCHAR, frequency VARCHAR)
|
SELECT webcast FROM table_name_5 WHERE website = "β’" AND frequency = 103.3
|
### Context: CREATE TABLE table_name_5 (webcast VARCHAR, website VARCHAR, frequency VARCHAR) ### Question: Name the webcast for website of β’ and frequency of 103.3 ### Answer: SELECT webcast FROM table_name_5 WHERE website = "β’" AND frequency = 103.3
|
Name the lowest frequency for brand of radio manantial
|
CREATE TABLE table_name_54 (frequency INTEGER, brand VARCHAR)
|
SELECT MIN(frequency) FROM table_name_54 WHERE brand = "radio manantial"
|
### Context: CREATE TABLE table_name_54 (frequency INTEGER, brand VARCHAR) ### Question: Name the lowest frequency for brand of radio manantial ### Answer: SELECT MIN(frequency) FROM table_name_54 WHERE brand = "radio manantial"
|
Score of new york yankees β 2, brooklyn dodgers β 3 involves how many number of games?
|
CREATE TABLE table_name_13 (game VARCHAR, score VARCHAR)
|
SELECT COUNT(game) FROM table_name_13 WHERE score = "new york yankees β 2, brooklyn dodgers β 3"
|
### Context: CREATE TABLE table_name_13 (game VARCHAR, score VARCHAR) ### Question: Score of new york yankees β 2, brooklyn dodgers β 3 involves how many number of games? ### Answer: SELECT COUNT(game) FROM table_name_13 WHERE score = "new york yankees β 2, brooklyn dodgers β 3"
|
Date of october 5 had what score?
|
CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR)
|
SELECT score FROM table_name_15 WHERE date = "october 5"
|
### Context: CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR) ### Question: Date of october 5 had what score? ### Answer: SELECT score FROM table_name_15 WHERE date = "october 5"
|
brooklyn dodgers β 3, new york yankees β 5, and a Game larger than 1 had what attendance figure?
|
CREATE TABLE table_name_47 (attendance INTEGER, score VARCHAR, game VARCHAR)
|
SELECT SUM(attendance) FROM table_name_47 WHERE score = "brooklyn dodgers β 3, new york yankees β 5" AND game > 1
|
### Context: CREATE TABLE table_name_47 (attendance INTEGER, score VARCHAR, game VARCHAR) ### Question: brooklyn dodgers β 3, new york yankees β 5, and a Game larger than 1 had what attendance figure? ### Answer: SELECT SUM(attendance) FROM table_name_47 WHERE score = "brooklyn dodgers β 3, new york yankees β 5" AND game > 1
|
Who won mixed doubles in the 2002 season?
|
CREATE TABLE table_name_42 (mixed_doubles VARCHAR, season VARCHAR)
|
SELECT mixed_doubles FROM table_name_42 WHERE season = 2002
|
### Context: CREATE TABLE table_name_42 (mixed_doubles VARCHAR, season VARCHAR) ### Question: Who won mixed doubles in the 2002 season? ### Answer: SELECT mixed_doubles FROM table_name_42 WHERE season = 2002
|
Name the lowest Quay cranes for Berths of 1 and operator of mtl with terminal of terminal 5 (ct5)
|
CREATE TABLE table_name_72 (quay_cranes INTEGER, terminal VARCHAR, berths VARCHAR, operator VARCHAR)
|
SELECT MIN(quay_cranes) FROM table_name_72 WHERE berths = 1 AND operator = "mtl" AND terminal = "terminal 5 (ct5)"
|
### Context: CREATE TABLE table_name_72 (quay_cranes INTEGER, terminal VARCHAR, berths VARCHAR, operator VARCHAR) ### Question: Name the lowest Quay cranes for Berths of 1 and operator of mtl with terminal of terminal 5 (ct5) ### Answer: SELECT MIN(quay_cranes) FROM table_name_72 WHERE berths = 1 AND operator = "mtl" AND terminal = "terminal 5 (ct5)"
|
Name the operator with berths more than 1 and depth of 12.5-15.5
|
CREATE TABLE table_name_81 (operator VARCHAR, berths VARCHAR, depth__m_ VARCHAR)
|
SELECT operator FROM table_name_81 WHERE berths > 1 AND depth__m_ = "12.5-15.5"
|
### Context: CREATE TABLE table_name_81 (operator VARCHAR, berths VARCHAR, depth__m_ VARCHAR) ### Question: Name the operator with berths more than 1 and depth of 12.5-15.5 ### Answer: SELECT operator FROM table_name_81 WHERE berths > 1 AND depth__m_ = "12.5-15.5"
|
What is the average points that Centro Asegurador earned with the McLaren M23 chassis?
|
CREATE TABLE table_name_3 (points INTEGER, chassis VARCHAR, entrant VARCHAR)
|
SELECT AVG(points) FROM table_name_3 WHERE chassis = "mclaren m23" AND entrant = "centro asegurador"
|
### Context: CREATE TABLE table_name_3 (points INTEGER, chassis VARCHAR, entrant VARCHAR) ### Question: What is the average points that Centro Asegurador earned with the McLaren M23 chassis? ### Answer: SELECT AVG(points) FROM table_name_3 WHERE chassis = "mclaren m23" AND entrant = "centro asegurador"
|
What was the chassis of Emilio de Villota in 1981?
|
CREATE TABLE table_name_94 (chassis VARCHAR, year INTEGER)
|
SELECT chassis FROM table_name_94 WHERE year > 1981
|
### Context: CREATE TABLE table_name_94 (chassis VARCHAR, year INTEGER) ### Question: What was the chassis of Emilio de Villota in 1981? ### Answer: SELECT chassis FROM table_name_94 WHERE year > 1981
|
What directors won an award on 14/6/6?
|
CREATE TABLE table_name_98 (director_s_ VARCHAR, date VARCHAR)
|
SELECT director_s_ FROM table_name_98 WHERE date = "14/6/6"
|
### Context: CREATE TABLE table_name_98 (director_s_ VARCHAR, date VARCHAR) ### Question: What directors won an award on 14/6/6? ### Answer: SELECT director_s_ FROM table_name_98 WHERE date = "14/6/6"
|
What date did Passion Pictures receive an award?
|
CREATE TABLE table_name_42 (date VARCHAR, recipient VARCHAR)
|
SELECT date FROM table_name_42 WHERE recipient = "passion pictures"
|
### Context: CREATE TABLE table_name_42 (date VARCHAR, recipient VARCHAR) ### Question: What date did Passion Pictures receive an award? ### Answer: SELECT date FROM table_name_42 WHERE recipient = "passion pictures"
|
What award did Charlie Productions Ltd receive?
|
CREATE TABLE table_name_14 (award VARCHAR, recipient VARCHAR)
|
SELECT award FROM table_name_14 WHERE recipient = "charlie productions ltd"
|
### Context: CREATE TABLE table_name_14 (award VARCHAR, recipient VARCHAR) ### Question: What award did Charlie Productions Ltd receive? ### Answer: SELECT award FROM table_name_14 WHERE recipient = "charlie productions ltd"
|
What film had Bub Ltd as the recipient?
|
CREATE TABLE table_name_75 (film VARCHAR, recipient VARCHAR)
|
SELECT film FROM table_name_75 WHERE recipient = "bub ltd"
|
### Context: CREATE TABLE table_name_75 (film VARCHAR, recipient VARCHAR) ### Question: What film had Bub Ltd as the recipient? ### Answer: SELECT film FROM table_name_75 WHERE recipient = "bub ltd"
|
What film was awarded on 22/3/06?
|
CREATE TABLE table_name_2 (film VARCHAR, date VARCHAR)
|
SELECT film FROM table_name_2 WHERE date = "22/3/06"
|
### Context: CREATE TABLE table_name_2 (film VARCHAR, date VARCHAR) ### Question: What film was awarded on 22/3/06? ### Answer: SELECT film FROM table_name_2 WHERE date = "22/3/06"
|
What score resulted in a winner after 2008?
|
CREATE TABLE table_name_18 (score VARCHAR, outcome VARCHAR, year VARCHAR)
|
SELECT score FROM table_name_18 WHERE outcome = "winner" AND year > 2008
|
### Context: CREATE TABLE table_name_18 (score VARCHAR, outcome VARCHAR, year VARCHAR) ### Question: What score resulted in a winner after 2008? ### Answer: SELECT score FROM table_name_18 WHERE outcome = "winner" AND year > 2008
|
What score has an opponent gan teik chai lin woon fui?
|
CREATE TABLE table_name_6 (score VARCHAR, opponent VARCHAR)
|
SELECT score FROM table_name_6 WHERE opponent = "gan teik chai lin woon fui"
|
### Context: CREATE TABLE table_name_6 (score VARCHAR, opponent VARCHAR) ### Question: What score has an opponent gan teik chai lin woon fui? ### Answer: SELECT score FROM table_name_6 WHERE opponent = "gan teik chai lin woon fui"
|
What tournament has an opponent gan teik chai lin woon fui?
|
CREATE TABLE table_name_77 (tournament VARCHAR, opponent VARCHAR)
|
SELECT tournament FROM table_name_77 WHERE opponent = "gan teik chai lin woon fui"
|
### Context: CREATE TABLE table_name_77 (tournament VARCHAR, opponent VARCHAR) ### Question: What tournament has an opponent gan teik chai lin woon fui? ### Answer: SELECT tournament FROM table_name_77 WHERE opponent = "gan teik chai lin woon fui"
|
What tournament has an opponent jung jae-sung lee yong-dae?
|
CREATE TABLE table_name_59 (tournament VARCHAR, opponent VARCHAR)
|
SELECT tournament FROM table_name_59 WHERE opponent = "jung jae-sung lee yong-dae"
|
### Context: CREATE TABLE table_name_59 (tournament VARCHAR, opponent VARCHAR) ### Question: What tournament has an opponent jung jae-sung lee yong-dae? ### Answer: SELECT tournament FROM table_name_59 WHERE opponent = "jung jae-sung lee yong-dae"
|
What is the record of the team that lost to Alexander (5-2)?
|
CREATE TABLE table_name_12 (record VARCHAR, loss VARCHAR)
|
SELECT record FROM table_name_12 WHERE loss = "alexander (5-2)"
|
### Context: CREATE TABLE table_name_12 (record VARCHAR, loss VARCHAR) ### Question: What is the record of the team that lost to Alexander (5-2)? ### Answer: SELECT record FROM table_name_12 WHERE loss = "alexander (5-2)"
|
Which opponent has a record of 17-11?
|
CREATE TABLE table_name_86 (opponent VARCHAR, record VARCHAR)
|
SELECT opponent FROM table_name_86 WHERE record = "17-11"
|
### Context: CREATE TABLE table_name_86 (opponent VARCHAR, record VARCHAR) ### Question: Which opponent has a record of 17-11? ### Answer: SELECT opponent FROM table_name_86 WHERE record = "17-11"
|
What is the score of the game that resulted in a 15-9 record?
|
CREATE TABLE table_name_46 (score VARCHAR, record VARCHAR)
|
SELECT score FROM table_name_46 WHERE record = "15-9"
|
### Context: CREATE TABLE table_name_46 (score VARCHAR, record VARCHAR) ### Question: What is the score of the game that resulted in a 15-9 record? ### Answer: SELECT score FROM table_name_46 WHERE record = "15-9"
|
What was the attendance on May 26?
|
CREATE TABLE table_name_86 (attendance VARCHAR, date VARCHAR)
|
SELECT attendance FROM table_name_86 WHERE date = "may 26"
|
### Context: CREATE TABLE table_name_86 (attendance VARCHAR, date VARCHAR) ### Question: What was the attendance on May 26? ### Answer: SELECT attendance FROM table_name_86 WHERE date = "may 26"
|
What is the score of the game that was a loss to Dotson (2-3)?
|
CREATE TABLE table_name_34 (score VARCHAR, loss VARCHAR)
|
SELECT score FROM table_name_34 WHERE loss = "dotson (2-3)"
|
### Context: CREATE TABLE table_name_34 (score VARCHAR, loss VARCHAR) ### Question: What is the score of the game that was a loss to Dotson (2-3)? ### Answer: SELECT score FROM table_name_34 WHERE loss = "dotson (2-3)"
|
On what date was the record 19-11?
|
CREATE TABLE table_name_58 (date VARCHAR, record VARCHAR)
|
SELECT date FROM table_name_58 WHERE record = "19-11"
|
### Context: CREATE TABLE table_name_58 (date VARCHAR, record VARCHAR) ### Question: On what date was the record 19-11? ### Answer: SELECT date FROM table_name_58 WHERE record = "19-11"
|
What were the highest points before the year 1974?
|
CREATE TABLE table_name_61 (points INTEGER, year INTEGER)
|
SELECT MAX(points) FROM table_name_61 WHERE year < 1974
|
### Context: CREATE TABLE table_name_61 (points INTEGER, year INTEGER) ### Question: What were the highest points before the year 1974? ### Answer: SELECT MAX(points) FROM table_name_61 WHERE year < 1974
|
What was the chassis when the entrant was Lavazza March, and the points were 0.5?
|
CREATE TABLE table_name_75 (chassis VARCHAR, entrant VARCHAR, points VARCHAR)
|
SELECT chassis FROM table_name_75 WHERE entrant = "lavazza march" AND points = 0.5
|
### Context: CREATE TABLE table_name_75 (chassis VARCHAR, entrant VARCHAR, points VARCHAR) ### Question: What was the chassis when the entrant was Lavazza March, and the points were 0.5? ### Answer: SELECT chassis FROM table_name_75 WHERE entrant = "lavazza march" AND points = 0.5
|
What was the chassis when the entrant was Lavazza March, and the year was 1975?
|
CREATE TABLE table_name_38 (chassis VARCHAR, entrant VARCHAR, year VARCHAR)
|
SELECT chassis FROM table_name_38 WHERE entrant = "lavazza march" AND year = 1975
|
### Context: CREATE TABLE table_name_38 (chassis VARCHAR, entrant VARCHAR, year VARCHAR) ### Question: What was the chassis when the entrant was Lavazza March, and the year was 1975? ### Answer: SELECT chassis FROM table_name_38 WHERE entrant = "lavazza march" AND year = 1975
|
What was the chassis when the points were greater than 0 and the entrant was March Engineering?
|
CREATE TABLE table_name_74 (chassis VARCHAR, points VARCHAR, entrant VARCHAR)
|
SELECT chassis FROM table_name_74 WHERE points > 0 AND entrant = "march engineering"
|
### Context: CREATE TABLE table_name_74 (chassis VARCHAR, points VARCHAR, entrant VARCHAR) ### Question: What was the chassis when the points were greater than 0 and the entrant was March Engineering? ### Answer: SELECT chassis FROM table_name_74 WHERE points > 0 AND entrant = "march engineering"
|
Who had a time of 56.07?
|
CREATE TABLE table_name_21 (name VARCHAR, time VARCHAR)
|
SELECT name FROM table_name_21 WHERE time = 56.07
|
### Context: CREATE TABLE table_name_21 (name VARCHAR, time VARCHAR) ### Question: Who had a time of 56.07? ### Answer: SELECT name FROM table_name_21 WHERE time = 56.07
|
What is the original title of Madame Rosa?
|
CREATE TABLE table_name_83 (original_title VARCHAR, english_title VARCHAR)
|
SELECT original_title FROM table_name_83 WHERE english_title = "madame rosa"
|
### Context: CREATE TABLE table_name_83 (original_title VARCHAR, english_title VARCHAR) ### Question: What is the original title of Madame Rosa? ### Answer: SELECT original_title FROM table_name_83 WHERE english_title = "madame rosa"
|
What is the original title where Paul Verhoeven is the director?
|
CREATE TABLE table_name_42 (original_title VARCHAR, director VARCHAR)
|
SELECT original_title FROM table_name_42 WHERE director = "paul verhoeven"
|
### Context: CREATE TABLE table_name_42 (original_title VARCHAR, director VARCHAR) ### Question: What is the original title where Paul Verhoeven is the director? ### Answer: SELECT original_title FROM table_name_42 WHERE director = "paul verhoeven"
|
What original title has a year of 1978?
|
CREATE TABLE table_name_18 (original_title VARCHAR, year VARCHAR)
|
SELECT original_title FROM table_name_18 WHERE year = "1978"
|
### Context: CREATE TABLE table_name_18 (original_title VARCHAR, year VARCHAR) ### Question: What original title has a year of 1978? ### Answer: SELECT original_title FROM table_name_18 WHERE year = "1978"
|
Who is the director of the best foreign film?
|
CREATE TABLE table_name_14 (director VARCHAR, original_title VARCHAR)
|
SELECT director FROM table_name_14 WHERE original_title = "best foreign film"
|
### Context: CREATE TABLE table_name_14 (director VARCHAR, original_title VARCHAR) ### Question: Who is the director of the best foreign film? ### Answer: SELECT director FROM table_name_14 WHERE original_title = "best foreign film"
|
What is the English title for Ansikte Mot Ansikte?
|
CREATE TABLE table_name_90 (english_title VARCHAR, original_title VARCHAR)
|
SELECT english_title FROM table_name_90 WHERE original_title = "ansikte mot ansikte"
|
### Context: CREATE TABLE table_name_90 (english_title VARCHAR, original_title VARCHAR) ### Question: What is the English title for Ansikte Mot Ansikte? ### Answer: SELECT english_title FROM table_name_90 WHERE original_title = "ansikte mot ansikte"
|
What happened on 2009-09-05?
|
CREATE TABLE table_name_93 (circumstances VARCHAR, date VARCHAR)
|
SELECT circumstances FROM table_name_93 WHERE date = "2009-09-05"
|
### Context: CREATE TABLE table_name_93 (circumstances VARCHAR, date VARCHAR) ### Question: What happened on 2009-09-05? ### Answer: SELECT circumstances FROM table_name_93 WHERE date = "2009-09-05"
|
Where was the combat of 2009-09-16?
|
CREATE TABLE table_name_80 (location VARCHAR, circumstances VARCHAR, date VARCHAR)
|
SELECT location FROM table_name_80 WHERE circumstances = "combat" AND date = "2009-09-16"
|
### Context: CREATE TABLE table_name_80 (location VARCHAR, circumstances VARCHAR, date VARCHAR) ### Question: Where was the combat of 2009-09-16? ### Answer: SELECT location FROM table_name_80 WHERE circumstances = "combat" AND date = "2009-09-16"
|
What happened on 2009-03-14?
|
CREATE TABLE table_name_25 (circumstances VARCHAR, date VARCHAR)
|
SELECT circumstances FROM table_name_25 WHERE date = "2009-03-14"
|
### Context: CREATE TABLE table_name_25 (circumstances VARCHAR, date VARCHAR) ### Question: What happened on 2009-03-14? ### Answer: SELECT circumstances FROM table_name_25 WHERE date = "2009-03-14"
|
How many casualties from the combat in the Fayzabad area?
|
CREATE TABLE table_name_71 (casualties VARCHAR, circumstances VARCHAR, location VARCHAR)
|
SELECT casualties FROM table_name_71 WHERE circumstances = "combat" AND location = "fayzabad area"
|
### Context: CREATE TABLE table_name_71 (casualties VARCHAR, circumstances VARCHAR, location VARCHAR) ### Question: How many casualties from the combat in the Fayzabad area? ### Answer: SELECT casualties FROM table_name_71 WHERE circumstances = "combat" AND location = "fayzabad area"
|
Where was the incident of 2009-09-05?
|
CREATE TABLE table_name_28 (location VARCHAR, date VARCHAR)
|
SELECT location FROM table_name_28 WHERE date = "2009-09-05"
|
### Context: CREATE TABLE table_name_28 (location VARCHAR, date VARCHAR) ### Question: Where was the incident of 2009-09-05? ### Answer: SELECT location FROM table_name_28 WHERE date = "2009-09-05"
|
What is the home team of the game on January 22?
|
CREATE TABLE table_name_67 (home VARCHAR, date VARCHAR)
|
SELECT home FROM table_name_67 WHERE date = "january 22"
|
### Context: CREATE TABLE table_name_67 (home VARCHAR, date VARCHAR) ### Question: What is the home team of the game on January 22? ### Answer: SELECT home FROM table_name_67 WHERE date = "january 22"
|
What is the score of the game on February 26 with the Chicago black hawks as the home team and the New York Rangers as the visitor team?
|
CREATE TABLE table_name_59 (score VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR)
|
SELECT score FROM table_name_59 WHERE home = "chicago black hawks" AND visitor = "new york rangers" AND date = "february 26"
|
### Context: CREATE TABLE table_name_59 (score VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR) ### Question: What is the score of the game on February 26 with the Chicago black hawks as the home team and the New York Rangers as the visitor team? ### Answer: SELECT score FROM table_name_59 WHERE home = "chicago black hawks" AND visitor = "new york rangers" AND date = "february 26"
|
What is the home team of the game on February 4?
|
CREATE TABLE table_name_74 (home VARCHAR, date VARCHAR)
|
SELECT home FROM table_name_74 WHERE date = "february 4"
|
### Context: CREATE TABLE table_name_74 (home VARCHAR, date VARCHAR) ### Question: What is the home team of the game on February 4? ### Answer: SELECT home FROM table_name_74 WHERE date = "february 4"
|
What Team had less than 1 point with a Zakspeed 871 chassis?
|
CREATE TABLE table_name_44 (team VARCHAR, points VARCHAR, chassis VARCHAR)
|
SELECT team FROM table_name_44 WHERE points < 1 AND chassis = "zakspeed 871"
|
### Context: CREATE TABLE table_name_44 (team VARCHAR, points VARCHAR, chassis VARCHAR) ### Question: What Team had less than 1 point with a Zakspeed 871 chassis? ### Answer: SELECT team FROM table_name_44 WHERE points < 1 AND chassis = "zakspeed 871"
|
What is the lowest amount of points for a Ford Cosworth DFR (Mader) 3.5 V8 engine?
|
CREATE TABLE table_name_35 (points INTEGER, engine VARCHAR)
|
SELECT MIN(points) FROM table_name_35 WHERE engine = "ford cosworth dfr (mader) 3.5 v8"
|
### Context: CREATE TABLE table_name_35 (points INTEGER, engine VARCHAR) ### Question: What is the lowest amount of points for a Ford Cosworth DFR (Mader) 3.5 V8 engine? ### Answer: SELECT MIN(points) FROM table_name_35 WHERE engine = "ford cosworth dfr (mader) 3.5 v8"
|
What year was a Rial Arc2 chassis used?
|
CREATE TABLE table_name_55 (year INTEGER, chassis VARCHAR)
|
SELECT SUM(year) FROM table_name_55 WHERE chassis = "rial arc2"
|
### Context: CREATE TABLE table_name_55 (year INTEGER, chassis VARCHAR) ### Question: What year was a Rial Arc2 chassis used? ### Answer: SELECT SUM(year) FROM table_name_55 WHERE chassis = "rial arc2"
|
Name the bronze when silver is 1
|
CREATE TABLE table_name_25 (bronze VARCHAR, silver VARCHAR)
|
SELECT bronze FROM table_name_25 WHERE silver = 1
|
### Context: CREATE TABLE table_name_25 (bronze VARCHAR, silver VARCHAR) ### Question: Name the bronze when silver is 1 ### Answer: SELECT bronze FROM table_name_25 WHERE silver = 1
|
Name the least silver when gold is less than 0
|
CREATE TABLE table_name_41 (silver INTEGER, gold INTEGER)
|
SELECT MIN(silver) FROM table_name_41 WHERE gold < 0
|
### Context: CREATE TABLE table_name_41 (silver INTEGER, gold INTEGER) ### Question: Name the least silver when gold is less than 0 ### Answer: SELECT MIN(silver) FROM table_name_41 WHERE gold < 0
|
Name the least silver for nation of total when bronze is more than 24
|
CREATE TABLE table_name_40 (silver INTEGER, nation VARCHAR, bronze VARCHAR)
|
SELECT MIN(silver) FROM table_name_40 WHERE nation = "total" AND bronze > 24
|
### Context: CREATE TABLE table_name_40 (silver INTEGER, nation VARCHAR, bronze VARCHAR) ### Question: Name the least silver for nation of total when bronze is more than 24 ### Answer: SELECT MIN(silver) FROM table_name_40 WHERE nation = "total" AND bronze > 24
|
Name the year with finish of 12th and record of 23-36
|
CREATE TABLE table_name_14 (year VARCHAR, finish VARCHAR, record VARCHAR)
|
SELECT year FROM table_name_14 WHERE finish = "12th" AND record = "23-36"
|
### Context: CREATE TABLE table_name_14 (year VARCHAR, finish VARCHAR, record VARCHAR) ### Question: Name the year with finish of 12th and record of 23-36 ### Answer: SELECT year FROM table_name_14 WHERE finish = "12th" AND record = "23-36"
|
Name the record for 1997
|
CREATE TABLE table_name_78 (record VARCHAR, year VARCHAR)
|
SELECT record FROM table_name_78 WHERE year = "1997"
|
### Context: CREATE TABLE table_name_78 (record VARCHAR, year VARCHAR) ### Question: Name the record for 1997 ### Answer: SELECT record FROM table_name_78 WHERE year = "1997"
|
Name the year for jesus alfaro and finish of 6th
|
CREATE TABLE table_name_65 (year VARCHAR, manager VARCHAR, finish VARCHAR)
|
SELECT year FROM table_name_65 WHERE manager = "jesus alfaro" AND finish = "6th"
|
### Context: CREATE TABLE table_name_65 (year VARCHAR, manager VARCHAR, finish VARCHAR) ### Question: Name the year for jesus alfaro and finish of 6th ### Answer: SELECT year FROM table_name_65 WHERE manager = "jesus alfaro" AND finish = "6th"
|
Name the manager for playoffs of missed for 1999
|
CREATE TABLE table_name_45 (manager VARCHAR, playoffs VARCHAR, year VARCHAR)
|
SELECT manager FROM table_name_45 WHERE playoffs = "missed" AND year = "1999"
|
### Context: CREATE TABLE table_name_45 (manager VARCHAR, playoffs VARCHAR, year VARCHAR) ### Question: Name the manager for playoffs of missed for 1999 ### Answer: SELECT manager FROM table_name_45 WHERE playoffs = "missed" AND year = "1999"
|
What was the average attendance when the record was 17-18?
|
CREATE TABLE table_name_45 (attendance INTEGER, record VARCHAR)
|
SELECT AVG(attendance) FROM table_name_45 WHERE record = "17-18"
|
### Context: CREATE TABLE table_name_45 (attendance INTEGER, record VARCHAR) ### Question: What was the average attendance when the record was 17-18? ### Answer: SELECT AVG(attendance) FROM table_name_45 WHERE record = "17-18"
|
What was marlboro brm's lowest points by using brm p160b?
|
CREATE TABLE table_name_60 (points INTEGER, entrant VARCHAR, chassis VARCHAR)
|
SELECT MIN(points) FROM table_name_60 WHERE entrant = "marlboro brm" AND chassis = "brm p160b"
|
### Context: CREATE TABLE table_name_60 (points INTEGER, entrant VARCHAR, chassis VARCHAR) ### Question: What was marlboro brm's lowest points by using brm p160b? ### Answer: SELECT MIN(points) FROM table_name_60 WHERE entrant = "marlboro brm" AND chassis = "brm p160b"
|
What is the total points in 1974?
|
CREATE TABLE table_name_47 (points VARCHAR, year VARCHAR)
|
SELECT COUNT(points) FROM table_name_47 WHERE year = 1974
|
### Context: CREATE TABLE table_name_47 (points VARCHAR, year VARCHAR) ### Question: What is the total points in 1974? ### Answer: SELECT COUNT(points) FROM table_name_47 WHERE year = 1974
|
Who has 0 points in 1974?
|
CREATE TABLE table_name_3 (entrant VARCHAR, points VARCHAR, year VARCHAR)
|
SELECT entrant FROM table_name_3 WHERE points = 0 AND year = 1974
|
### Context: CREATE TABLE table_name_3 (entrant VARCHAR, points VARCHAR, year VARCHAR) ### Question: Who has 0 points in 1974? ### Answer: SELECT entrant FROM table_name_3 WHERE points = 0 AND year = 1974
|
What is the lowest points of using mclaren m14a as chassis?
|
CREATE TABLE table_name_37 (points INTEGER, chassis VARCHAR)
|
SELECT MIN(points) FROM table_name_37 WHERE chassis = "mclaren m14a"
|
### Context: CREATE TABLE table_name_37 (points INTEGER, chassis VARCHAR) ### Question: What is the lowest points of using mclaren m14a as chassis? ### Answer: SELECT MIN(points) FROM table_name_37 WHERE chassis = "mclaren m14a"
|
Location of saint paul, and a Final-Score larger than 14.35, and a Event of all around is what sum of year?
|
CREATE TABLE table_name_39 (year INTEGER, event VARCHAR, location VARCHAR, final_score VARCHAR)
|
SELECT SUM(year) FROM table_name_39 WHERE location = "saint paul" AND final_score > 14.35 AND event = "all around"
|
### Context: CREATE TABLE table_name_39 (year INTEGER, event VARCHAR, location VARCHAR, final_score VARCHAR) ### Question: Location of saint paul, and a Final-Score larger than 14.35, and a Event of all around is what sum of year? ### Answer: SELECT SUM(year) FROM table_name_39 WHERE location = "saint paul" AND final_score > 14.35 AND event = "all around"
|
Competition of u.s championships, and a Event of all around has what average year?
|
CREATE TABLE table_name_61 (year INTEGER, competition VARCHAR, event VARCHAR)
|
SELECT AVG(year) FROM table_name_61 WHERE competition = "u.s championships" AND event = "all around"
|
### Context: CREATE TABLE table_name_61 (year INTEGER, competition VARCHAR, event VARCHAR) ### Question: Competition of u.s championships, and a Event of all around has what average year? ### Answer: SELECT AVG(year) FROM table_name_61 WHERE competition = "u.s championships" AND event = "all around"
|
What film was in 1970?
|
CREATE TABLE table_name_55 (film VARCHAR, year VARCHAR)
|
SELECT film FROM table_name_55 WHERE year = 1970
|
### Context: CREATE TABLE table_name_55 (film VARCHAR, year VARCHAR) ### Question: What film was in 1970? ### Answer: SELECT film FROM table_name_55 WHERE year = 1970
|
Who wrote the lyrics for Mukti?
|
CREATE TABLE table_name_14 (lyricist VARCHAR, film VARCHAR)
|
SELECT lyricist FROM table_name_14 WHERE film = "mukti"
|
### Context: CREATE TABLE table_name_14 (lyricist VARCHAR, film VARCHAR) ### Question: Who wrote the lyrics for Mukti? ### Answer: SELECT lyricist FROM table_name_14 WHERE film = "mukti"
|
What song was directed by Shankar Jaikishan?
|
CREATE TABLE table_name_13 (song VARCHAR, music_director_s_ VARCHAR)
|
SELECT song FROM table_name_13 WHERE music_director_s_ = "shankar jaikishan"
|
### Context: CREATE TABLE table_name_13 (song VARCHAR, music_director_s_ VARCHAR) ### Question: What song was directed by Shankar Jaikishan? ### Answer: SELECT song FROM table_name_13 WHERE music_director_s_ = "shankar jaikishan"
|
What song was written after 1976 and directed by Rahul Dev Burman?
|
CREATE TABLE table_name_23 (song VARCHAR, year VARCHAR, music_director_s_ VARCHAR)
|
SELECT song FROM table_name_23 WHERE year > 1976 AND music_director_s_ = "rahul dev burman"
|
### Context: CREATE TABLE table_name_23 (song VARCHAR, year VARCHAR, music_director_s_ VARCHAR) ### Question: What song was written after 1976 and directed by Rahul Dev Burman? ### Answer: SELECT song FROM table_name_23 WHERE year > 1976 AND music_director_s_ = "rahul dev burman"
|
What car does Scott Deware own that has rounds under 12?
|
CREATE TABLE table_name_24 (car_s_ VARCHAR, rounds VARCHAR, owner_s_ VARCHAR)
|
SELECT car_s_ FROM table_name_24 WHERE rounds < 12 AND owner_s_ = "scott deware"
|
### Context: CREATE TABLE table_name_24 (car_s_ VARCHAR, rounds VARCHAR, owner_s_ VARCHAR) ### Question: What car does Scott Deware own that has rounds under 12? ### Answer: SELECT car_s_ FROM table_name_24 WHERE rounds < 12 AND owner_s_ = "scott deware"
|
Which City or town has a Top division titles of 17
|
CREATE TABLE table_name_92 (city_or_town VARCHAR, top_division_titles VARCHAR)
|
SELECT city_or_town FROM table_name_92 WHERE top_division_titles = "17"
|
### Context: CREATE TABLE table_name_92 (city_or_town VARCHAR, top_division_titles VARCHAR) ### Question: Which City or town has a Top division titles of 17 ### Answer: SELECT city_or_town FROM table_name_92 WHERE top_division_titles = "17"
|
Which City or town has top division smaller than 40 and Gaziantepspor Club ?
|
CREATE TABLE table_name_70 (city_or_town VARCHAR, number_of_seasons_in_top_division VARCHAR, club VARCHAR)
|
SELECT city_or_town FROM table_name_70 WHERE number_of_seasons_in_top_division < 40 AND club = "gaziantepspor"
|
### Context: CREATE TABLE table_name_70 (city_or_town VARCHAR, number_of_seasons_in_top_division VARCHAR, club VARCHAR) ### Question: Which City or town has top division smaller than 40 and Gaziantepspor Club ? ### Answer: SELECT city_or_town FROM table_name_70 WHERE number_of_seasons_in_top_division < 40 AND club = "gaziantepspor"
|
What is the 2003 value with 2r in 2008 and 1r in 2011?
|
CREATE TABLE table_name_59 (Id VARCHAR)
|
SELECT 2003 FROM table_name_59 WHERE 2008 = "2r" AND 2011 = "1r"
|
### Context: CREATE TABLE table_name_59 (Id VARCHAR) ### Question: What is the 2003 value with 2r in 2008 and 1r in 2011? ### Answer: SELECT 2003 FROM table_name_59 WHERE 2008 = "2r" AND 2011 = "1r"
|
What is the 2007 value with 2r in 2011 and 2r in 2008?
|
CREATE TABLE table_name_67 (Id VARCHAR)
|
SELECT 2007 FROM table_name_67 WHERE 2011 = "2r" AND 2008 = "2r"
|
### Context: CREATE TABLE table_name_67 (Id VARCHAR) ### Question: What is the 2007 value with 2r in 2011 and 2r in 2008? ### Answer: SELECT 2007 FROM table_name_67 WHERE 2011 = "2r" AND 2008 = "2r"
|
What is the 2007 value with 1r in 2009 and 2r in 2011 at the Tournament of Wimbledon?
|
CREATE TABLE table_name_36 (tournament VARCHAR)
|
SELECT 2007 FROM table_name_36 WHERE 2009 = "1r" AND 2011 = "2r" AND tournament = "wimbledon"
|
### Context: CREATE TABLE table_name_36 (tournament VARCHAR) ### Question: What is the 2007 value with 1r in 2009 and 2r in 2011 at the Tournament of Wimbledon? ### Answer: SELECT 2007 FROM table_name_36 WHERE 2009 = "1r" AND 2011 = "2r" AND tournament = "wimbledon"
|
What is the 2003 value with 1r in 2009 at the Australian Open?
|
CREATE TABLE table_name_16 (tournament VARCHAR)
|
SELECT 2003 FROM table_name_16 WHERE 2009 = "1r" AND tournament = "australian open"
|
### Context: CREATE TABLE table_name_16 (tournament VARCHAR) ### Question: What is the 2003 value with 1r in 2009 at the Australian Open? ### Answer: SELECT 2003 FROM table_name_16 WHERE 2009 = "1r" AND tournament = "australian open"
|
How many wins did they have at Richmond Cricket Ground Stadium?
|
CREATE TABLE table_name_20 (wins VARCHAR, stadium VARCHAR)
|
SELECT wins FROM table_name_20 WHERE stadium = "richmond cricket ground"
|
### Context: CREATE TABLE table_name_20 (wins VARCHAR, stadium VARCHAR) ### Question: How many wins did they have at Richmond Cricket Ground Stadium? ### Answer: SELECT wins FROM table_name_20 WHERE stadium = "richmond cricket ground"
|
How many games did they play in 1905?
|
CREATE TABLE table_name_83 (played INTEGER, years VARCHAR)
|
SELECT AVG(played) FROM table_name_83 WHERE years = "1905"
|
### Context: CREATE TABLE table_name_83 (played INTEGER, years VARCHAR) ### Question: How many games did they play in 1905? ### Answer: SELECT AVG(played) FROM table_name_83 WHERE years = "1905"
|
Which term in office has a qld state, a Party of labor, and an Electorate of fisher?
|
CREATE TABLE table_name_76 (term_in_office VARCHAR, electorate VARCHAR, state VARCHAR, party VARCHAR)
|
SELECT term_in_office FROM table_name_76 WHERE state = "qld" AND party = "labor" AND electorate = "fisher"
|
### Context: CREATE TABLE table_name_76 (term_in_office VARCHAR, electorate VARCHAR, state VARCHAR, party VARCHAR) ### Question: Which term in office has a qld state, a Party of labor, and an Electorate of fisher? ### Answer: SELECT term_in_office FROM table_name_76 WHERE state = "qld" AND party = "labor" AND electorate = "fisher"
|
Which member has an Electorate of kennedy?
|
CREATE TABLE table_name_50 (member VARCHAR, electorate VARCHAR)
|
SELECT member FROM table_name_50 WHERE electorate = "kennedy"
|
### Context: CREATE TABLE table_name_50 (member VARCHAR, electorate VARCHAR) ### Question: Which member has an Electorate of kennedy? ### Answer: SELECT member FROM table_name_50 WHERE electorate = "kennedy"
|
Which Party has a Member of david jull?
|
CREATE TABLE table_name_75 (party VARCHAR, member VARCHAR)
|
SELECT party FROM table_name_75 WHERE member = "david jull"
|
### Context: CREATE TABLE table_name_75 (party VARCHAR, member VARCHAR) ### Question: Which Party has a Member of david jull? ### Answer: SELECT party FROM table_name_75 WHERE member = "david jull"
|
Which term in office has an Electorate of hinkler?
|
CREATE TABLE table_name_65 (term_in_office VARCHAR, electorate VARCHAR)
|
SELECT term_in_office FROM table_name_65 WHERE electorate = "hinkler"
|
### Context: CREATE TABLE table_name_65 (term_in_office VARCHAR, electorate VARCHAR) ### Question: Which term in office has an Electorate of hinkler? ### Answer: SELECT term_in_office FROM table_name_65 WHERE electorate = "hinkler"
|
Which Electorate has a State of qld, a Party of national, and a Member of hon evan adermann?
|
CREATE TABLE table_name_31 (electorate VARCHAR, member VARCHAR, state VARCHAR, party VARCHAR)
|
SELECT electorate FROM table_name_31 WHERE state = "qld" AND party = "national" AND member = "hon evan adermann"
|
### Context: CREATE TABLE table_name_31 (electorate VARCHAR, member VARCHAR, state VARCHAR, party VARCHAR) ### Question: Which Electorate has a State of qld, a Party of national, and a Member of hon evan adermann? ### Answer: SELECT electorate FROM table_name_31 WHERE state = "qld" AND party = "national" AND member = "hon evan adermann"
|
Which state has a Term in office of 1984β1996, a Party of labor, and a Member of robert tickner?
|
CREATE TABLE table_name_48 (state VARCHAR, member VARCHAR, term_in_office VARCHAR, party VARCHAR)
|
SELECT state FROM table_name_48 WHERE term_in_office = "1984β1996" AND party = "labor" AND member = "robert tickner"
|
### Context: CREATE TABLE table_name_48 (state VARCHAR, member VARCHAR, term_in_office VARCHAR, party VARCHAR) ### Question: Which state has a Term in office of 1984β1996, a Party of labor, and a Member of robert tickner? ### Answer: SELECT state FROM table_name_48 WHERE term_in_office = "1984β1996" AND party = "labor" AND member = "robert tickner"
|
What is the total amount of decile with the authority of state around the Pokuru School and a roll smaller than 109?
|
CREATE TABLE table_name_44 (decile INTEGER, roll VARCHAR, authority VARCHAR, name VARCHAR)
|
SELECT SUM(decile) FROM table_name_44 WHERE authority = "state" AND name = "pokuru school" AND roll < 109
|
### Context: CREATE TABLE table_name_44 (decile INTEGER, roll VARCHAR, authority VARCHAR, name VARCHAR) ### Question: What is the total amount of decile with the authority of state around the Pokuru School and a roll smaller than 109? ### Answer: SELECT SUM(decile) FROM table_name_44 WHERE authority = "state" AND name = "pokuru school" AND roll < 109
|
Name the most laps for corvette racing in 2004
|
CREATE TABLE table_name_11 (laps INTEGER, team VARCHAR, year VARCHAR)
|
SELECT MAX(laps) FROM table_name_11 WHERE team = "corvette racing" AND year = 2004
|
### Context: CREATE TABLE table_name_11 (laps INTEGER, team VARCHAR, year VARCHAR) ### Question: Name the most laps for corvette racing in 2004 ### Answer: SELECT MAX(laps) FROM table_name_11 WHERE team = "corvette racing" AND year = 2004
|
Name the class for 4th position with year before 2006
|
CREATE TABLE table_name_67 (class VARCHAR, pos VARCHAR, year VARCHAR)
|
SELECT class FROM table_name_67 WHERE pos = "4th" AND year < 2006
|
### Context: CREATE TABLE table_name_67 (class VARCHAR, pos VARCHAR, year VARCHAR) ### Question: Name the class for 4th position with year before 2006 ### Answer: SELECT class FROM table_name_67 WHERE pos = "4th" AND year < 2006
|
Name the total number of laps for 23rd position
|
CREATE TABLE table_name_17 (laps VARCHAR, pos VARCHAR)
|
SELECT COUNT(laps) FROM table_name_17 WHERE pos = "23rd"
|
### Context: CREATE TABLE table_name_17 (laps VARCHAR, pos VARCHAR) ### Question: Name the total number of laps for 23rd position ### Answer: SELECT COUNT(laps) FROM table_name_17 WHERE pos = "23rd"
|
Name the team with laps less than 315 and co-drivers of david brabham franck lagorce?
|
CREATE TABLE table_name_83 (team VARCHAR, laps VARCHAR, co_drivers VARCHAR)
|
SELECT team FROM table_name_83 WHERE laps < 315 AND co_drivers = "david brabham franck lagorce"
|
### Context: CREATE TABLE table_name_83 (team VARCHAR, laps VARCHAR, co_drivers VARCHAR) ### Question: Name the team with laps less than 315 and co-drivers of david brabham franck lagorce? ### Answer: SELECT team FROM table_name_83 WHERE laps < 315 AND co_drivers = "david brabham franck lagorce"
|
Name the team for co-drivers of david brabham mario andretti
|
CREATE TABLE table_name_15 (team VARCHAR, co_drivers VARCHAR)
|
SELECT team FROM table_name_15 WHERE co_drivers = "david brabham mario andretti"
|
### Context: CREATE TABLE table_name_15 (team VARCHAR, co_drivers VARCHAR) ### Question: Name the team for co-drivers of david brabham mario andretti ### Answer: SELECT team FROM table_name_15 WHERE co_drivers = "david brabham mario andretti"
|
Name the highest year with points more than 0
|
CREATE TABLE table_name_90 (year INTEGER, points INTEGER)
|
SELECT MAX(year) FROM table_name_90 WHERE points > 0
|
### Context: CREATE TABLE table_name_90 (year INTEGER, points INTEGER) ### Question: Name the highest year with points more than 0 ### Answer: SELECT MAX(year) FROM table_name_90 WHERE points > 0
|
Name the highest points when year is more than 1953
|
CREATE TABLE table_name_8 (points INTEGER, year INTEGER)
|
SELECT MAX(points) FROM table_name_8 WHERE year > 1953
|
### Context: CREATE TABLE table_name_8 (points INTEGER, year INTEGER) ### Question: Name the highest points when year is more than 1953 ### Answer: SELECT MAX(points) FROM table_name_8 WHERE year > 1953
|
Name the engine when points are 0 and chassis is kuzma indy roadster for 1954
|
CREATE TABLE table_name_38 (engine VARCHAR, year VARCHAR, points VARCHAR, chassis VARCHAR)
|
SELECT engine FROM table_name_38 WHERE points = 0 AND chassis = "kuzma indy roadster" AND year = 1954
|
### Context: CREATE TABLE table_name_38 (engine VARCHAR, year VARCHAR, points VARCHAR, chassis VARCHAR) ### Question: Name the engine when points are 0 and chassis is kuzma indy roadster for 1954 ### Answer: SELECT engine FROM table_name_38 WHERE points = 0 AND chassis = "kuzma indy roadster" AND year = 1954
|
Name the least points with chassis of kurtis kraft 3000 and year before 1951
|
CREATE TABLE table_name_92 (points INTEGER, chassis VARCHAR, year VARCHAR)
|
SELECT MIN(points) FROM table_name_92 WHERE chassis = "kurtis kraft 3000" AND year < 1951
|
### Context: CREATE TABLE table_name_92 (points INTEGER, chassis VARCHAR, year VARCHAR) ### Question: Name the least points with chassis of kurtis kraft 3000 and year before 1951 ### Answer: SELECT MIN(points) FROM table_name_92 WHERE chassis = "kurtis kraft 3000" AND year < 1951
|
What is the lowest Pioneer population in 1966 with a Sarina population greater than 4,611?
|
CREATE TABLE table_name_31 (pioneer INTEGER, year VARCHAR, sarina VARCHAR)
|
SELECT MIN(pioneer) FROM table_name_31 WHERE year = 1966 AND sarina > 4 OFFSET 611
|
### Context: CREATE TABLE table_name_31 (pioneer INTEGER, year VARCHAR, sarina VARCHAR) ### Question: What is the lowest Pioneer population in 1966 with a Sarina population greater than 4,611? ### Answer: SELECT MIN(pioneer) FROM table_name_31 WHERE year = 1966 AND sarina > 4 OFFSET 611
|
What is the year of the TV series directed by Soroush Sehat?
|
CREATE TABLE table_name_1 (year VARCHAR, director VARCHAR)
|
SELECT year FROM table_name_1 WHERE director = "soroush sehat"
|
### Context: CREATE TABLE table_name_1 (year VARCHAR, director VARCHAR) ### Question: What is the year of the TV series directed by Soroush Sehat? ### Answer: SELECT year FROM table_name_1 WHERE director = "soroush sehat"
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.