question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
Who is Pick #41?
CREATE TABLE table_name_99 (player VARCHAR, pick__number VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_99 WHERE pick__number = \"41\"" }
Which player was Pick #40?
CREATE TABLE table_name_98 (player VARCHAR, pick__number VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_98 WHERE pick__number = \"40\"" }
Which team picked Dave Bonter?
CREATE TABLE table_name_23 (nhl_team VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT nhl_team FROM table_name_23 WHERE player = \"dave bonter\"" }
Which team picked the player from the Toronto Marlboros (OHA) as Pick #32?
CREATE TABLE table_name_81 (nhl_team VARCHAR, college_junior_club_team VARCHAR, pick__number VARCHAR)
{ "SQL_Query": "SELECT nhl_team FROM table_name_81 WHERE college_junior_club_team = \"toronto marlboros (oha)\" AND pick__number = \"32\"" }
Name the most games for eredivisie when jurrie koolhof is manager when goals are less than 10
CREATE TABLE table_name_25 (games INTEGER, goals VARCHAR, league VARCHAR, manager VARCHAR)
{ "SQL_Query": "SELECT MAX(games) FROM table_name_25 WHERE league = \"eredivisie\" AND manager = \"jurrie koolhof\" AND goals < 10" }
Name the least rank when games are more than 34 and the season is 2009-10
CREATE TABLE table_name_98 (rank INTEGER, games VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT MIN(rank) FROM table_name_98 WHERE games > 34 AND season = \"2009-10\"" }
Name the least point for mv agusta and rank of 13th for wins less than 0
CREATE TABLE table_name_52 (points INTEGER, wins VARCHAR, team VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT MIN(points) FROM table_name_52 WHERE team = \"mv agusta\" AND rank = \"13th\" AND wins < 0" }
Name the rank for wins of 0 and points of 2
CREATE TABLE table_name_10 (rank VARCHAR, wins VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT rank FROM table_name_10 WHERE wins = 0 AND points = 2" }
Name the total number of points with year less than 1955 and rank of 5th with wins less than 0
CREATE TABLE table_name_31 (points VARCHAR, wins VARCHAR, year VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT COUNT(points) FROM table_name_31 WHERE year < 1955 AND rank = \"5th\" AND wins < 0" }
What is the total decile in the area of Normanby with a roller smaller than 157?
CREATE TABLE table_name_99 (decile INTEGER, area VARCHAR, roll VARCHAR)
{ "SQL_Query": "SELECT SUM(decile) FROM table_name_99 WHERE area = \"normanby\" AND roll < 157" }
What Authority has a decile greater than 5, with a roll of 170?
CREATE TABLE table_name_62 (authority VARCHAR, decile VARCHAR, roll VARCHAR)
{ "SQL_Query": "SELECT authority FROM table_name_62 WHERE decile > 5 AND roll = 170" }
What is the average goals against average for those playing more than 78 games?
CREATE TABLE table_name_33 (goals_against_average INTEGER, games_played INTEGER)
{ "SQL_Query": "SELECT AVG(goals_against_average) FROM table_name_33 WHERE games_played > 78" }
Who played over 46 games and allowed less than 195 goals?
CREATE TABLE table_name_50 (player VARCHAR, games_played VARCHAR, goals_allowed VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_50 WHERE games_played > 46 AND goals_allowed < 195" }
Who played 44 games who averaged over 2.07 goals against?
CREATE TABLE table_name_88 (player VARCHAR, goals_against_average VARCHAR, games_played VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_88 WHERE goals_against_average > 2.07 AND games_played = 44" }
Name how ashtagrama lyers say it for engal veetil, engal agathil
CREATE TABLE table_name_6 (how_ashtagrama_iyers_say_it VARCHAR, pure_tamil VARCHAR)
{ "SQL_Query": "SELECT how_ashtagrama_iyers_say_it FROM table_name_6 WHERE pure_tamil = \"engal veetil, engal agathil\"" }
Name the english meaning for engey poringo
CREATE TABLE table_name_8 (english_meaning VARCHAR, how_other_tamils_say_it VARCHAR)
{ "SQL_Query": "SELECT english_meaning FROM table_name_8 WHERE how_other_tamils_say_it = \"engey poringo\"" }
Name how other lyers say enga ullale
CREATE TABLE table_name_22 (how_other_iyers_say_it VARCHAR, how_ashtagrama_iyers_say_it VARCHAR)
{ "SQL_Query": "SELECT how_other_iyers_say_it FROM table_name_22 WHERE how_ashtagrama_iyers_say_it = \"enga ullale\"" }
Name the pure tamil for enga athilae
CREATE TABLE table_name_97 (pure_tamil VARCHAR, how_other_iyers_say_it VARCHAR)
{ "SQL_Query": "SELECT pure_tamil FROM table_name_97 WHERE how_other_iyers_say_it = \"enga athilae\"" }
What company built the ship named excellent in 1998?
CREATE TABLE table_name_59 (company VARCHAR, built VARCHAR, ship VARCHAR)
{ "SQL_Query": "SELECT company FROM table_name_59 WHERE built = 1998 AND ship = \"excellent\"" }
What's the total built by the United Kingdom and holds 1,300 passengers?
CREATE TABLE table_name_68 (built VARCHAR, registry VARCHAR, passengers VARCHAR)
{ "SQL_Query": "SELECT COUNT(built) FROM table_name_68 WHERE registry = \"united kingdom\" AND passengers = 1 OFFSET 300" }
Name the visiting team for stadium of ralph wilson stadium
CREATE TABLE table_name_67 (visiting_team VARCHAR, stadium VARCHAR)
{ "SQL_Query": "SELECT visiting_team FROM table_name_67 WHERE stadium = \"ralph wilson stadium\"" }
Name the date for visiting team of denver broncos
CREATE TABLE table_name_72 (date VARCHAR, visiting_team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_72 WHERE visiting_team = \"denver broncos\"" }
Name the stadium with host team of san diego chargers and final score of 23-45
CREATE TABLE table_name_46 (stadium VARCHAR, host_team VARCHAR, final_score VARCHAR)
{ "SQL_Query": "SELECT stadium FROM table_name_46 WHERE host_team = \"san diego chargers\" AND final_score = \"23-45\"" }
Name the stadium with final score of 20-10
CREATE TABLE table_name_35 (stadium VARCHAR, final_score VARCHAR)
{ "SQL_Query": "SELECT stadium FROM table_name_35 WHERE final_score = \"20-10\"" }
Name the date with visiting team of philadelphia eagles
CREATE TABLE table_name_47 (date VARCHAR, visiting_team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_47 WHERE visiting_team = \"philadelphia eagles\"" }
Name the host team for january 1 (2006)
CREATE TABLE table_name_93 (host_team VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT host_team FROM table_name_93 WHERE date = \"january 1 (2006)\"" }
What team belongs to Delmar?
CREATE TABLE table_name_36 (team VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT team FROM table_name_36 WHERE school = \"delmar\"" }
What was Laurel's division record?
CREATE TABLE table_name_63 (division_record VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT division_record FROM table_name_63 WHERE school = \"laurel\"" }
What is the rank of airport with a (IATA/ICAO) of bcm/lrbc code and an amount of 240,735 in 2010?
CREATE TABLE table_name_90 (rank INTEGER, code__iata_icao_ VARCHAR)
{ "SQL_Query": "SELECT MIN(rank) FROM table_name_90 WHERE code__iata_icao_ = \"bcm/lrbc\" AND 2010 > 240 OFFSET 735" }
What is the average in 2010 of the team with a code of (IATA/ICAO) or cra/lrcv?
CREATE TABLE table_name_20 (code__iata_icao_ VARCHAR)
{ "SQL_Query": "SELECT 2010 FROM table_name_20 WHERE code__iata_icao_ = \"cra/lrcv\"" }
Which state has 67% Republicans and a ratio of 24/12 of Republicans to Democrats?
CREATE TABLE table_name_28 (state_ranked_in_partisan_order VARCHAR, percentage_republicans VARCHAR, republican__democratic VARCHAR)
{ "SQL_Query": "SELECT state_ranked_in_partisan_order FROM table_name_28 WHERE percentage_republicans = \"67%\" AND republican__democratic = \"24/12\"" }
What state is 25% Democrats has a ratio of 6/2 of Republicans to Democrats?
CREATE TABLE table_name_66 (state_ranked_in_partisan_order VARCHAR, percentage_democrats VARCHAR, republican__democratic VARCHAR)
{ "SQL_Query": "SELECT state_ranked_in_partisan_order FROM table_name_66 WHERE percentage_democrats = \"25%\" AND republican__democratic = \"6/2\"" }
What is the ratio of Republicans to Democrats in South Carolina?
CREATE TABLE table_name_91 (republican__democratic VARCHAR, state_ranked_in_partisan_order VARCHAR)
{ "SQL_Query": "SELECT republican__democratic FROM table_name_91 WHERE state_ranked_in_partisan_order = \"south carolina\"" }
What is the Republican seat plurality of the state with a ratio of 12/4 Republicans to Democrats?
CREATE TABLE table_name_30 (republican_seat_plurality VARCHAR, republican__democratic VARCHAR)
{ "SQL_Query": "SELECT republican_seat_plurality FROM table_name_30 WHERE republican__democratic = \"12/4\"" }
What is the Republican seat plurality of North Carolina?
CREATE TABLE table_name_18 (republican_seat_plurality VARCHAR, state_ranked_in_partisan_order VARCHAR)
{ "SQL_Query": "SELECT republican_seat_plurality FROM table_name_18 WHERE state_ranked_in_partisan_order = \"north carolina\"" }
What is the highest score in round 4 and total of 284 in a year more recent than 1998?
CREATE TABLE table_name_56 (round_4 INTEGER, score VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT MAX(round_4) FROM table_name_56 WHERE score = 284 AND year > 1998" }
What is the maximum ¥ for a round 2 score of 65 and a round 4 score smaller than 67?
CREATE TABLE table_name_65 (money__ INTEGER, round_2 VARCHAR, round_4 VARCHAR)
{ "SQL_Query": "SELECT MAX(money__) AS ¥_ FROM table_name_65 WHERE round_2 = 65 AND round_4 < 67" }
What is the earliest year when the Dunlop Phoenix Tournament was played with a round 4 score larger than 72?
CREATE TABLE table_name_23 (year INTEGER, tournament VARCHAR, round_4 VARCHAR)
{ "SQL_Query": "SELECT MIN(year) FROM table_name_23 WHERE tournament = \"dunlop phoenix tournament\" AND round_4 > 72" }
What is the lowest round with a place of t15 in a year earlier than 1998?
CREATE TABLE table_name_15 (round_1 INTEGER, place VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT MIN(round_1) FROM table_name_15 WHERE place = \"t15\" AND year < 1998" }
Where was the BRDC International Trophy with driver Emerson Fittipaldi held?
CREATE TABLE table_name_61 (venue VARCHAR, driver VARCHAR, event VARCHAR)
{ "SQL_Query": "SELECT venue FROM table_name_61 WHERE driver = \"emerson fittipaldi\" AND event = \"brdc international trophy\"" }
What was the most recent race at Kyalami with Keke Rosberg competing?
CREATE TABLE table_name_41 (year INTEGER, venue VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT MAX(year) FROM table_name_41 WHERE venue = \"kyalami\" AND driver = \"keke rosberg\"" }
What year was the Spanish Grand Prix where Emerson Fittipaldi drove?
CREATE TABLE table_name_30 (year VARCHAR, event VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT year FROM table_name_30 WHERE event = \"spanish grand prix\" AND driver = \"emerson fittipaldi\"" }
What was the outcome for Emerson Fittipaldi in the race held at Jarama?
CREATE TABLE table_name_51 (result VARCHAR, venue VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_51 WHERE venue = \"jarama\" AND driver = \"emerson fittipaldi\"" }
How many years did Wilson Fittipaldi race?
CREATE TABLE table_name_97 (year VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_name_97 WHERE driver = \"wilson fittipaldi\"" }
What was the score of the game that had a loss of Cox (6–2)?
CREATE TABLE table_name_44 (score VARCHAR, loss VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_44 WHERE loss = \"cox (6–2)\"" }
What was the date of the game that had a loss of Rojas (9–8)?
CREATE TABLE table_name_74 (date VARCHAR, loss VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_74 WHERE loss = \"rojas (9–8)\"" }
What was the score of the game that had a loss of Coates (0–2)?
CREATE TABLE table_name_25 (score VARCHAR, loss VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_25 WHERE loss = \"coates (0–2)\"" }
What was the score of the game when the record was 58–47?
CREATE TABLE table_name_12 (score VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_12 WHERE record = \"58–47\"" }
How do you spell the Hebrew word יְהוֹשָפָט in English?
CREATE TABLE table_name_24 (english_spelling VARCHAR, hebrew_word VARCHAR)
{ "SQL_Query": "SELECT english_spelling FROM table_name_24 WHERE hebrew_word = \"יְהוֹשָפָט\"" }
Which start has 1956 as the year?
CREATE TABLE table_name_96 (start VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT start FROM table_name_96 WHERE year = \"1956\"" }
Which start has 32 as the finish and laps more than 6?
CREATE TABLE table_name_11 (start VARCHAR, finish VARCHAR, laps VARCHAR)
{ "SQL_Query": "SELECT start FROM table_name_11 WHERE finish = \"32\" AND laps > 6" }
Which start has 4 as a rank?
CREATE TABLE table_name_55 (start VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT start FROM table_name_55 WHERE rank = \"4\"" }
How many laps have 1 as the start?
CREATE TABLE table_name_25 (laps VARCHAR, start VARCHAR)
{ "SQL_Query": "SELECT COUNT(laps) FROM table_name_25 WHERE start = \"1\"" }
Which finish has 33 as a rank and 200 for laps?
CREATE TABLE table_name_24 (finish VARCHAR, rank VARCHAR, laps VARCHAR)
{ "SQL_Query": "SELECT finish FROM table_name_24 WHERE rank = \"33\" AND laps = 200" }
Which finish has 1 as the rank?
CREATE TABLE table_name_95 (finish VARCHAR, rank VARCHAR)
{ "SQL_Query": "SELECT finish FROM table_name_95 WHERE rank = \"1\"" }
What are the special notes for an issue price under 24.95 with an edmonton oilers theme?
CREATE TABLE table_name_91 (special_notes VARCHAR, issue_price VARCHAR, theme VARCHAR)
{ "SQL_Query": "SELECT special_notes FROM table_name_91 WHERE issue_price < 24.95 AND theme = \"edmonton oilers\"" }
What theme has special notes from calgary flames gift set?
CREATE TABLE table_name_24 (theme VARCHAR, special_notes VARCHAR)
{ "SQL_Query": "SELECT theme FROM table_name_24 WHERE special_notes = \"from calgary flames gift set\"" }
What year has an issue price over 15.95, and a special notes from edmonton oilers gift set?
CREATE TABLE table_name_10 (year VARCHAR, issue_price VARCHAR, special_notes VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_name_10 WHERE issue_price > 15.95 AND special_notes = \"from edmonton oilers gift set\"" }
What is the site when the superintendent was John Barry?
CREATE TABLE table_name_28 (site VARCHAR, superintendent VARCHAR)
{ "SQL_Query": "SELECT site FROM table_name_28 WHERE superintendent = \"john barry\"" }
What is the number of guns when the superintendent was Silas Talbot?
CREATE TABLE table_name_36 (guns VARCHAR, superintendent VARCHAR)
{ "SQL_Query": "SELECT guns FROM table_name_36 WHERE superintendent = \"silas talbot\"" }
What is the site when the superintendent was James Sever?
CREATE TABLE table_name_93 (site VARCHAR, superintendent VARCHAR)
{ "SQL_Query": "SELECT site FROM table_name_93 WHERE superintendent = \"james sever\"" }
Who was the loss in the game with the record of 65-53?
CREATE TABLE table_name_25 (loss VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT loss FROM table_name_25 WHERE record = \"65-53\"" }
On August 29, What was the record playing against the Rangers?
CREATE TABLE table_name_75 (record VARCHAR, opponent VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_75 WHERE opponent = \"rangers\" AND date = \"august 29\"" }
On August 22, how many people came to the game?
CREATE TABLE table_name_39 (attendance VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_name_39 WHERE date = \"august 22\"" }
When west indes was a holder at the end of the series for the 1991 season with an england greater than 1, what is the smallest west indies?
CREATE TABLE table_name_92 (west_indies INTEGER, season VARCHAR, holder_at_the_end_of_the_series VARCHAR, england VARCHAR)
{ "SQL_Query": "SELECT MIN(west_indies) FROM table_name_92 WHERE holder_at_the_end_of_the_series = \"west indies\" AND england > 1 AND season = \"1991\"" }
When were the Brewers 27-31?
CREATE TABLE table_name_43 (date VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_43 WHERE record = \"27-31\"" }
When did the Brewers lose 2-8?
CREATE TABLE table_name_63 (loss VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT loss FROM table_name_63 WHERE score = \"2-8\"" }
When the Brewers score was 5-7, what was the lowest attendance?
CREATE TABLE table_name_13 (attendance INTEGER, score VARCHAR)
{ "SQL_Query": "SELECT MIN(attendance) FROM table_name_13 WHERE score = \"5-7\"" }
Who hosted the visiting team Baltimore Ravens?
CREATE TABLE table_name_24 (host_team VARCHAR, visiting_team VARCHAR)
{ "SQL_Query": "SELECT host_team FROM table_name_24 WHERE visiting_team = \"baltimore ravens\"" }
What was the final score at Heinz Field?
CREATE TABLE table_name_25 (final_score VARCHAR, stadium VARCHAR)
{ "SQL_Query": "SELECT final_score FROM table_name_25 WHERE stadium = \"heinz field\"" }
What is the home stadium of the Atlanta Falcons?
CREATE TABLE table_name_11 (stadium VARCHAR, host_team VARCHAR)
{ "SQL_Query": "SELECT stadium FROM table_name_11 WHERE host_team = \"atlanta falcons\"" }
What date did the New York Giants play as a visiting team?
CREATE TABLE table_name_34 (date VARCHAR, visiting_team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_34 WHERE visiting_team = \"new york giants\"" }
What is the score of Tim Herron, who placed t1?
CREATE TABLE table_name_60 (score VARCHAR, place VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_60 WHERE place = \"t1\" AND player = \"tim herron\"" }
What place does Fred Funk, who has a score of 69-69=138, have?
CREATE TABLE table_name_71 (place VARCHAR, player VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_71 WHERE score = 69 - 69 = 138 AND player = \"fred funk\"" }
What is Tiger Woods's score?
CREATE TABLE table_name_1 (score VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_1 WHERE player = \"tiger woods\"" }
What is the score of Australia?
CREATE TABLE table_name_55 (score VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_55 WHERE country = \"australia\"" }
Who was Constructor for rider Marco Melandri?
CREATE TABLE table_name_76 (constructor VARCHAR, rider VARCHAR)
{ "SQL_Query": "SELECT constructor FROM table_name_76 WHERE rider = \"marco melandri\"" }
Anthony West ride which Motorcyle?
CREATE TABLE table_name_23 (motorcycle VARCHAR, rider VARCHAR)
{ "SQL_Query": "SELECT motorcycle FROM table_name_23 WHERE rider = \"anthony west\"" }
What team draft a player from Canada that was picked #43 and plays right wing?
CREATE TABLE table_name_59 (nhl_team VARCHAR, pick__number VARCHAR, nationality VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT nhl_team FROM table_name_59 WHERE nationality = \"canada\" AND position = \"right wing\" AND pick__number = \"43\"" }
What nationality is Gerry Methe?
CREATE TABLE table_name_34 (nationality VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT nationality FROM table_name_34 WHERE player = \"gerry methe\"" }
What which player from Canada was picked #49 and plays left wing?
CREATE TABLE table_name_18 (player VARCHAR, pick__number VARCHAR, nationality VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_18 WHERE nationality = \"canada\" AND position = \"left wing\" AND pick__number = \"49\"" }
What Nationality is Dave Hynes?
CREATE TABLE table_name_74 (nationality VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT nationality FROM table_name_74 WHERE player = \"dave hynes\"" }
The Estevan Bruins (WCHL) are affiliated with what NHL team?
CREATE TABLE table_name_51 (nhl_team VARCHAR, college_junior_club_team VARCHAR)
{ "SQL_Query": "SELECT nhl_team FROM table_name_51 WHERE college_junior_club_team = \"estevan bruins (wchl)\"" }
what's the number of games with a Goals Against smaller than 14, and a Wins larger than 1, and a Draws smaller than 2, and a Goals For of 3?
CREATE TABLE table_name_27 (games INTEGER, goals_for VARCHAR, draws VARCHAR, goals_against VARCHAR, wins VARCHAR)
{ "SQL_Query": "SELECT MAX(games) FROM table_name_27 WHERE goals_against < 14 AND wins > 1 AND draws < 2 AND goals_for = 3" }
what's the total win count for Games smaller than 7, and a Goals For larger than 2, and a Goals Against smaller than 6, and Draws of 1
CREATE TABLE table_name_85 (wins VARCHAR, draws VARCHAR, goals_against VARCHAR, games VARCHAR, goals_for VARCHAR)
{ "SQL_Query": "SELECT COUNT(wins) FROM table_name_85 WHERE games < 7 AND goals_for > 2 AND goals_against < 6 AND draws = 1" }
for a Goals Against smaller than 9, and a Goal Differential of 0, and a Draws smaller than 2, and a Wins of 1, what's the goal total?
CREATE TABLE table_name_81 (goals_for INTEGER, wins VARCHAR, draws VARCHAR, goals_against VARCHAR, goal_differential VARCHAR)
{ "SQL_Query": "SELECT SUM(goals_for) FROM table_name_81 WHERE goals_against < 9 AND goal_differential = \"0\" AND draws < 2 AND wins = 1" }
What tournament happened on 12 november 2006?
CREATE TABLE table_name_88 (tournament VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_88 WHERE date = \"12 november 2006\"" }
what was the score on 6 june 2010?
CREATE TABLE table_name_82 (score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_82 WHERE date = \"6 june 2010\"" }
When was the railmotor made?
CREATE TABLE table_name_26 (date_made VARCHAR, type VARCHAR)
{ "SQL_Query": "SELECT date_made FROM table_name_26 WHERE type = \"railmotor\"" }
What are the fleet number for the 4-6-4t locomotive?
CREATE TABLE table_name_19 (fleet_numbers VARCHAR, type VARCHAR)
{ "SQL_Query": "SELECT fleet_numbers FROM table_name_19 WHERE type = \"4-6-4t\"" }
How many fast laps have 0 points in the World Series by Nissan?
CREATE TABLE table_name_54 (fast_laps VARCHAR, points VARCHAR, series VARCHAR)
{ "SQL_Query": "SELECT fast_laps FROM table_name_54 WHERE points = \"0\" AND series = \"world series by nissan\"" }
How many fast laps are in 6 races with 30 points in the World Series by Nissan?
CREATE TABLE table_name_28 (fast_laps VARCHAR, points VARCHAR, series VARCHAR, races VARCHAR)
{ "SQL_Query": "SELECT fast_laps FROM table_name_28 WHERE series = \"world series by nissan\" AND races = \"6\" AND points = \"30\"" }
Which team has the points category of test driver?
CREATE TABLE table_name_74 (team VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT team FROM table_name_74 WHERE points = \"test driver\"" }
What is the position with 0 points in Season of 2007–08?
CREATE TABLE table_name_37 (pos VARCHAR, points VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT pos FROM table_name_37 WHERE points = \"0\" AND season = \"2007–08\"" }
Name the least wins for 6 points
CREATE TABLE table_name_69 (wins INTEGER, points VARCHAR)
{ "SQL_Query": "SELECT MIN(wins) FROM table_name_69 WHERE points = 6" }
Name the wins for 1963 bultaco
CREATE TABLE table_name_15 (wins VARCHAR, year VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT wins FROM table_name_15 WHERE year = 1963 AND team = \"bultaco\"" }
Year larger than 2008, and a Nationality of director of lebanon is what director?
CREATE TABLE table_name_49 (director VARCHAR, year VARCHAR, nationality_of_director VARCHAR)
{ "SQL_Query": "SELECT director FROM table_name_49 WHERE year > 2008 AND nationality_of_director = \"lebanon\"" }
ilm of taukukauppiaat has how many total number of years?
CREATE TABLE table_name_52 (year VARCHAR, film VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_name_52 WHERE film = \"taukukauppiaat\"" }
Award of troisième prix, and a Year smaller than 2010, and a Director of jan komasa is what film?
CREATE TABLE table_name_10 (film VARCHAR, director VARCHAR, award VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT film FROM table_name_10 WHERE award = \"troisième prix\" AND year < 2010 AND director = \"jan komasa\"" }
Film of um sol alaranjado director is what nationality?
CREATE TABLE table_name_65 (nationality_of_director VARCHAR, film VARCHAR)
{ "SQL_Query": "SELECT nationality_of_director FROM table_name_65 WHERE film = \"um sol alaranjado\"" }