text
stringlengths
114
1.06k
### 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 ### context: CREATE TABLE table_name_66 (roll VARCHAR, authority VARCHAR, decile VARCHAR)
### question: Who did the Jays play on August 30? ### answer: SELECT opponent FROM table_name_53 WHERE date = "august 30" ### context: CREATE TABLE table_name_53 (opponent VARCHAR, date VARCHAR)
### question: Which opponent has a record of 5-0-1? ### answer: SELECT opponent FROM table_name_10 WHERE record = "5-0-1" ### context: CREATE TABLE table_name_10 (opponent VARCHAR, record VARCHAR)
### question: What method does the opponent of Dan New use? ### answer: SELECT method FROM table_name_90 WHERE opponent = "dan new" ### context: CREATE TABLE table_name_90 (method VARCHAR, opponent VARCHAR)
### question: Which method has a record of 3-0? ### answer: SELECT method FROM table_name_27 WHERE record = "3-0" ### context: CREATE TABLE table_name_27 (method VARCHAR, record 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" ### context: CREATE TABLE table_name_24 (event VARCHAR, opponent VARCHAR, res VARCHAR, round 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" ### context: CREATE TABLE table_name_36 (event VARCHAR, round VARCHAR, opponent VARCHAR)
### question: What is Jimmy Smith's opponent's record? ### answer: SELECT record FROM table_name_70 WHERE opponent = "jimmy smith" ### context: CREATE TABLE table_name_70 (record VARCHAR, opponent VARCHAR)
### question: Name the sum of frequecy with brand of exa fm ### answer: SELECT SUM(frequency) FROM table_name_47 WHERE brand = "exa fm" ### context: CREATE TABLE table_name_47 (frequency INTEGER, brand 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 ### context: CREATE TABLE table_name_5 (webcast VARCHAR, website VARCHAR, frequency VARCHAR)
### question: Name the lowest frequency for brand of radio manantial ### answer: SELECT MIN(frequency) FROM table_name_54 WHERE brand = "radio manantial" ### context: CREATE TABLE table_name_54 (frequency INTEGER, brand 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" ### context: CREATE TABLE table_name_13 (game VARCHAR, score VARCHAR)
### question: Date of october 5 had what score? ### answer: SELECT score FROM table_name_15 WHERE date = "october 5" ### context: CREATE TABLE table_name_15 (score VARCHAR, date 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 ### context: CREATE TABLE table_name_47 (attendance INTEGER, score VARCHAR, game VARCHAR)
### question: Who won mixed doubles in the 2002 season? ### answer: SELECT mixed_doubles FROM table_name_42 WHERE season = 2002 ### context: CREATE TABLE table_name_42 (mixed_doubles VARCHAR, season 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)" ### context: CREATE TABLE table_name_72 (quay_cranes INTEGER, terminal VARCHAR, berths VARCHAR, operator 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" ### context: CREATE TABLE table_name_81 (operator VARCHAR, berths VARCHAR, depth__m_ 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" ### context: CREATE TABLE table_name_3 (points INTEGER, chassis VARCHAR, entrant VARCHAR)
### question: What was the chassis of Emilio de Villota in 1981? ### answer: SELECT chassis FROM table_name_94 WHERE year > 1981 ### context: CREATE TABLE table_name_94 (chassis VARCHAR, year INTEGER)
### question: What directors won an award on 14/6/6? ### answer: 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 date did Passion Pictures receive an award? ### answer: SELECT date FROM table_name_42 WHERE recipient = "passion pictures" ### context: CREATE TABLE table_name_42 (date VARCHAR, recipient VARCHAR)
### question: What award did Charlie Productions Ltd receive? ### answer: SELECT award FROM table_name_14 WHERE recipient = "charlie productions ltd" ### context: CREATE TABLE table_name_14 (award VARCHAR, recipient VARCHAR)
### question: What film had Bub Ltd as the recipient? ### answer: SELECT film FROM table_name_75 WHERE recipient = "bub ltd" ### context: CREATE TABLE table_name_75 (film VARCHAR, recipient VARCHAR)
### question: What film was awarded on 22/3/06? ### answer: SELECT film FROM table_name_2 WHERE date = "22/3/06" ### context: CREATE TABLE table_name_2 (film VARCHAR, date VARCHAR)
### question: What score resulted in a winner after 2008? ### answer: 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 has an opponent gan teik chai lin woon fui? ### answer: 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 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" ### context: CREATE TABLE table_name_77 (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" ### context: CREATE TABLE table_name_59 (tournament VARCHAR, opponent 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)" ### context: CREATE TABLE table_name_12 (record VARCHAR, loss VARCHAR)
### question: Which opponent has a record of 17-11? ### answer: SELECT opponent FROM table_name_86 WHERE record = "17-11" ### context: CREATE TABLE table_name_86 (opponent 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" ### context: CREATE TABLE table_name_46 (score VARCHAR, record VARCHAR)
### question: What was the attendance on May 26? ### answer: SELECT attendance FROM table_name_86 WHERE date = "may 26" ### context: CREATE TABLE table_name_86 (attendance VARCHAR, date 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)" ### context: CREATE TABLE table_name_34 (score VARCHAR, loss VARCHAR)
### question: On what date was the record 19-11? ### answer: SELECT date FROM table_name_58 WHERE record = "19-11" ### context: CREATE TABLE table_name_58 (date VARCHAR, record VARCHAR)
### question: What were the highest points before the year 1974? ### answer: SELECT MAX(points) FROM table_name_61 WHERE year < 1974 ### context: CREATE TABLE table_name_61 (points INTEGER, year INTEGER)
### 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 ### 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 year was 1975? ### answer: 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 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" ### context: CREATE TABLE table_name_74 (chassis VARCHAR, points VARCHAR, entrant VARCHAR)
### question: Who had a time of 56.07? ### answer: SELECT name FROM table_name_21 WHERE time = 56.07 ### context: CREATE TABLE table_name_21 (name VARCHAR, time VARCHAR)
### question: What is the original title of Madame Rosa? ### answer: 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 where Paul Verhoeven is the director? ### answer: SELECT original_title FROM table_name_42 WHERE director = "paul verhoeven" ### context: CREATE TABLE table_name_42 (original_title VARCHAR, director VARCHAR)
### question: What original title has a year of 1978? ### answer: SELECT original_title FROM table_name_18 WHERE year = "1978" ### context: CREATE TABLE table_name_18 (original_title VARCHAR, year VARCHAR)
### question: Who is the director of the best foreign film? ### answer: SELECT director FROM table_name_14 WHERE original_title = "best foreign film" ### context: CREATE TABLE table_name_14 (director 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" ### context: CREATE TABLE table_name_90 (english_title VARCHAR, original_title VARCHAR)
### question: What happened on 2009-09-05? ### answer: SELECT circumstances FROM table_name_93 WHERE date = "2009-09-05" ### context: CREATE TABLE table_name_93 (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" ### context: CREATE TABLE table_name_80 (location VARCHAR, circumstances VARCHAR, date VARCHAR)
### question: What happened on 2009-03-14? ### answer: SELECT circumstances FROM table_name_25 WHERE date = "2009-03-14" ### context: CREATE TABLE table_name_25 (circumstances VARCHAR, date 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" ### context: CREATE TABLE table_name_71 (casualties VARCHAR, circumstances VARCHAR, location VARCHAR)
### question: Where was the incident of 2009-09-05? ### answer: SELECT location FROM table_name_28 WHERE date = "2009-09-05" ### context: CREATE TABLE table_name_28 (location 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" ### context: CREATE TABLE table_name_67 (home VARCHAR, date 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" ### context: CREATE TABLE table_name_59 (score VARCHAR, date VARCHAR, home VARCHAR, visitor VARCHAR)
### question: What is the home team of the game on February 4? ### answer: SELECT home FROM table_name_74 WHERE date = "february 4" ### context: CREATE TABLE table_name_74 (home VARCHAR, date 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" ### context: CREATE TABLE table_name_44 (team VARCHAR, points VARCHAR, chassis 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" ### context: CREATE TABLE table_name_35 (points INTEGER, engine VARCHAR)
### question: What year was a Rial Arc2 chassis used? ### answer: SELECT SUM(year) FROM table_name_55 WHERE chassis = "rial arc2" ### context: CREATE TABLE table_name_55 (year INTEGER, chassis VARCHAR)
### question: Name the bronze when silver is 1 ### answer: SELECT bronze FROM table_name_25 WHERE silver = 1 ### context: CREATE TABLE table_name_25 (bronze VARCHAR, silver VARCHAR)
### question: Name the least silver when gold is less than 0 ### answer: 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 for nation of total when bronze is more than 24 ### answer: 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 year with finish of 12th and record of 23-36 ### answer: 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 record for 1997 ### answer: SELECT record FROM table_name_78 WHERE year = "1997" ### context: CREATE TABLE table_name_78 (record VARCHAR, year 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" ### context: CREATE TABLE table_name_65 (year VARCHAR, manager VARCHAR, finish VARCHAR)
### question: Name the manager for playoffs of missed for 1999 ### answer: 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: What was the average attendance when the record was 17-18? ### answer: SELECT AVG(attendance) FROM table_name_45 WHERE record = "17-18" ### context: CREATE TABLE table_name_45 (attendance INTEGER, record 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" ### context: CREATE TABLE table_name_60 (points INTEGER, entrant VARCHAR, chassis VARCHAR)
### question: What is the total points in 1974? ### answer: SELECT COUNT(points) FROM table_name_47 WHERE year = 1974 ### context: CREATE TABLE table_name_47 (points VARCHAR, year VARCHAR)
### question: Who has 0 points in 1974? ### answer: 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: What is the lowest points of using mclaren m14a as chassis? ### answer: SELECT MIN(points) FROM table_name_37 WHERE chassis = "mclaren m14a" ### context: CREATE TABLE table_name_37 (points INTEGER, chassis 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" ### context: CREATE TABLE table_name_39 (year INTEGER, event VARCHAR, location VARCHAR, final_score 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" ### context: CREATE TABLE table_name_61 (year INTEGER, competition VARCHAR, event VARCHAR)
### question: What film was in 1970? ### answer: SELECT film FROM table_name_55 WHERE year = 1970 ### context: CREATE TABLE table_name_55 (film VARCHAR, year VARCHAR)
### question: Who wrote the lyrics for Mukti? ### answer: SELECT lyricist FROM table_name_14 WHERE film = "mukti" ### context: CREATE TABLE table_name_14 (lyricist VARCHAR, film VARCHAR)
### question: What song was directed by Shankar Jaikishan? ### answer: 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 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" ### context: CREATE TABLE table_name_23 (song VARCHAR, year VARCHAR, music_director_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" ### context: CREATE TABLE table_name_24 (car_s_ VARCHAR, rounds VARCHAR, owner_s_ 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" ### context: CREATE TABLE table_name_92 (city_or_town VARCHAR, top_division_titles 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" ### context: CREATE TABLE table_name_70 (city_or_town VARCHAR, number_of_seasons_in_top_division VARCHAR, club 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" ### context: CREATE TABLE table_name_59 (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" ### context: CREATE TABLE table_name_67 (Id 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" ### context: CREATE TABLE table_name_36 (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" ### context: CREATE TABLE table_name_16 (tournament 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" ### context: CREATE TABLE table_name_20 (wins VARCHAR, stadium VARCHAR)
### question: How many games did they play in 1905? ### answer: SELECT AVG(played) FROM table_name_83 WHERE years = "1905" ### context: CREATE TABLE table_name_83 (played INTEGER, years 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" ### context: CREATE TABLE table_name_76 (term_in_office VARCHAR, electorate VARCHAR, state VARCHAR, party VARCHAR)
### question: Which member has an Electorate of kennedy? ### answer: SELECT member FROM table_name_50 WHERE electorate = "kennedy" ### context: CREATE TABLE table_name_50 (member VARCHAR, electorate VARCHAR)
### question: Which Party has a Member of david jull? ### answer: SELECT party FROM table_name_75 WHERE member = "david jull" ### context: CREATE TABLE table_name_75 (party VARCHAR, member VARCHAR)
### question: Which term in office has an Electorate of hinkler? ### answer: 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 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" ### context: CREATE TABLE table_name_31 (electorate VARCHAR, member VARCHAR, state 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" ### context: CREATE TABLE table_name_48 (state VARCHAR, member VARCHAR, term_in_office VARCHAR, party 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 ### context: CREATE TABLE table_name_44 (decile INTEGER, roll VARCHAR, authority VARCHAR, name 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 ### context: CREATE TABLE table_name_11 (laps INTEGER, team 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 ### context: CREATE TABLE table_name_67 (class VARCHAR, pos VARCHAR, year VARCHAR)
### question: Name the total number of laps for 23rd position ### answer: SELECT COUNT(laps) FROM table_name_17 WHERE pos = "23rd" ### context: CREATE TABLE table_name_17 (laps VARCHAR, pos 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" ### context: CREATE TABLE table_name_83 (team VARCHAR, laps 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" ### context: CREATE TABLE table_name_15 (team VARCHAR, co_drivers VARCHAR)
### question: Name the highest year with points more than 0 ### answer: SELECT MAX(year) FROM table_name_90 WHERE points > 0 ### context: CREATE TABLE table_name_90 (year INTEGER, points INTEGER)
### question: Name the highest points when year is more than 1953 ### answer: SELECT MAX(points) FROM table_name_8 WHERE year > 1953 ### context: CREATE TABLE table_name_8 (points INTEGER, year INTEGER)
### 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 ### context: CREATE TABLE table_name_38 (engine VARCHAR, year VARCHAR, points VARCHAR, chassis 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 ### context: CREATE TABLE table_name_92 (points INTEGER, chassis VARCHAR, year 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 ### context: CREATE TABLE table_name_31 (pioneer INTEGER, year VARCHAR, sarina 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" ### context: CREATE TABLE table_name_1 (year VARCHAR, director VARCHAR)