question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
On the Date of March 13, who was the Home team?
CREATE TABLE table_name_96 (home VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT home FROM table_name_96 WHERE date = \"march 13\"" }
What is the Decision listed when the Home was Colorado?
CREATE TABLE table_name_28 (decision VARCHAR, home VARCHAR)
{ "SQL_Query": "SELECT decision FROM table_name_28 WHERE home = \"colorado\"" }
What is the date that Ayrton Senna was the drive in Monza?
CREATE TABLE table_name_73 (date VARCHAR, winning_driver VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_73 WHERE winning_driver = \"ayrton senna\" AND location = \"monza\"" }
What was the constructor when riccardo patrese was the winning driver?
CREATE TABLE table_name_88 (winning_constructor VARCHAR, winning_driver VARCHAR)
{ "SQL_Query": "SELECT winning_constructor FROM table_name_88 WHERE winning_driver = \"riccardo patrese\"" }
What is the Pole Position for the German Grand Prix
CREATE TABLE table_name_83 (pole_position VARCHAR, grand_prix VARCHAR)
{ "SQL_Query": "SELECT pole_position FROM table_name_83 WHERE grand_prix = \"german grand prix\"" }
What is the date of the game between Melbourne and Footscray?
CREATE TABLE table_name_78 (date VARCHAR, home_team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_78 WHERE home_team = \"melbourne\"" }
In the match where footscray was the home team, how much did they score?
CREATE TABLE table_name_55 (home_team VARCHAR)
{ "SQL_Query": "SELECT home_team AS score FROM table_name_55 WHERE home_team = \"footscray\"" }
During melbourne's home game, who was the away team?
CREATE TABLE table_name_51 (away_team VARCHAR, home_team VARCHAR)
{ "SQL_Query": "SELECT away_team FROM table_name_51 WHERE home_team = \"melbourne\"" }
In the match where north melbourne was the away team, how much did the home team score?
CREATE TABLE table_name_61 (home_team VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT home_team AS score FROM table_name_61 WHERE away_team = \"north melbourne\"" }
How many years was there a team that was part of the usisl pro league?
CREATE TABLE table_name_38 (year VARCHAR, league VARCHAR)
{ "SQL_Query": "SELECT COUNT(year) FROM table_name_38 WHERE league = \"usisl pro league\"" }
How many goals were scored on 21 Junio 2008?
CREATE TABLE table_name_26 (goal VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(goal) FROM table_name_26 WHERE date = \"21 junio 2008\"" }
How was the competition in which 6 goals were made?
CREATE TABLE table_name_22 (competition VARCHAR, goal VARCHAR)
{ "SQL_Query": "SELECT competition FROM table_name_22 WHERE goal = 6" }
At the venue of panama city, on 11 Febrero 2006, how many goals were scored?
CREATE TABLE table_name_10 (goal VARCHAR, venue VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT COUNT(goal) FROM table_name_10 WHERE venue = \"panama city\" AND date = \"11 febrero 2006\"" }
what is the time/retired when the laps is 52?
CREATE TABLE table_name_24 (time_retired VARCHAR, laps VARCHAR)
{ "SQL_Query": "SELECT time_retired FROM table_name_24 WHERE laps = 52" }
What is the mean number of play-offs when the league number was bigger than 18, where the player was John Grant and the total number was bigger than 25?
CREATE TABLE table_name_15 (play_offs INTEGER, total VARCHAR, league VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT AVG(play_offs) FROM table_name_15 WHERE league > 18 AND player = \"john grant\" AND total > 25" }
Which mean total had Tim Sills as a player?
CREATE TABLE table_name_26 (total INTEGER, player VARCHAR)
{ "SQL_Query": "SELECT AVG(total) FROM table_name_26 WHERE player = \"tim sills\"" }
Which of the lowest FA Trophys involved the Forest Green Rovers club when the play-offs number was bigger than 0?
CREATE TABLE table_name_8 (fa_trophy INTEGER, club VARCHAR, play_offs VARCHAR)
{ "SQL_Query": "SELECT MIN(fa_trophy) FROM table_name_8 WHERE club = \"forest green rovers\" AND play_offs > 0" }
Which of the lowest leagues had Aldershot town as a club when the play-offs number was less than 0?
CREATE TABLE table_name_13 (league INTEGER, club VARCHAR, play_offs VARCHAR)
{ "SQL_Query": "SELECT MIN(league) FROM table_name_13 WHERE club = \"aldershot town\" AND play_offs < 0" }
What mean total had a league number of 18, Richard Logan as a player, and a play-offs number smaller than 1?
CREATE TABLE table_name_88 (total INTEGER, play_offs VARCHAR, league VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT AVG(total) FROM table_name_88 WHERE league = 18 AND player = \"richard logan\" AND play_offs < 1" }
What is the grid total for ralf schumacher racing over 53 laps?
CREATE TABLE table_name_31 (grid INTEGER, driver VARCHAR, laps VARCHAR)
{ "SQL_Query": "SELECT SUM(grid) FROM table_name_31 WHERE driver = \"ralf schumacher\" AND laps > 53" }
Who built the car that went 53 laps with a Time/Retired of 1:17:09.672?
CREATE TABLE table_name_25 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR)
{ "SQL_Query": "SELECT constructor FROM table_name_25 WHERE laps = 53 AND time_retired = \"1:17:09.672\"" }
What is the high lap total for pedro diniz?
CREATE TABLE table_name_24 (laps INTEGER, driver VARCHAR)
{ "SQL_Query": "SELECT MAX(laps) FROM table_name_24 WHERE driver = \"pedro diniz\"" }
Who was the Japan open runner up?
CREATE TABLE table_name_21 (runner_up VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT runner_up FROM table_name_21 WHERE tournament = \"japan open\"" }
What is the name of the race where Stirling Moss was the winning driver?
CREATE TABLE table_name_13 (race_name VARCHAR, winning_driver VARCHAR)
{ "SQL_Query": "SELECT race_name FROM table_name_13 WHERE winning_driver = \"stirling moss\"" }
What circuit did Innes Ireland win at for the I lombank trophy?
CREATE TABLE table_name_35 (circuit VARCHAR, winning_driver VARCHAR, race_name VARCHAR)
{ "SQL_Query": "SELECT circuit FROM table_name_35 WHERE winning_driver = \"innes ireland\" AND race_name = \"i lombank trophy\"" }
how many times is the constituency edinburgh northern and leith?
CREATE TABLE table_name_20 (swing_to_gain VARCHAR, constituency VARCHAR)
{ "SQL_Query": "SELECT COUNT(swing_to_gain) FROM table_name_20 WHERE constituency = \"edinburgh northern and leith\"" }
what is the constituency when the rank is less than 5 and the result is con hold?
CREATE TABLE table_name_64 (constituency VARCHAR, rank VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT constituency FROM table_name_64 WHERE rank < 5 AND result = \"con hold\"" }
what is the lowest rank when the constituency is edinburgh northern and leith and the swing to gain is less than 4.16?
CREATE TABLE table_name_61 (rank INTEGER, constituency VARCHAR, swing_to_gain VARCHAR)
{ "SQL_Query": "SELECT MIN(rank) FROM table_name_61 WHERE constituency = \"edinburgh northern and leith\" AND swing_to_gain < 4.16" }
What is the record when the leading scorer is Antawn Jamison (14)?
CREATE TABLE table_name_6 (record VARCHAR, leading_scorer VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_6 WHERE leading_scorer = \"antawn jamison (14)\"" }
How many people were in attendance on January 4, 2008?
CREATE TABLE table_name_33 (attendance INTEGER, date VARCHAR)
{ "SQL_Query": "SELECT SUM(attendance) FROM table_name_33 WHERE date = \"january 4, 2008\"" }
What is the score at the Addis Ababa location?
CREATE TABLE table_name_47 (score VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_47 WHERE location = \"addis ababa\"" }
Which competition was held at Addis Ababa?
CREATE TABLE table_name_26 (competition VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT competition FROM table_name_26 WHERE location = \"addis ababa\"" }
What is the date of birth of the goalkeeper from the 1st season?
CREATE TABLE table_name_13 (date_of_birth VARCHAR, position_s_ VARCHAR, seasons VARCHAR)
{ "SQL_Query": "SELECT date_of_birth FROM table_name_13 WHERE position_s_ = \"goalkeeper\" AND seasons = \"1st\"" }
What previous club was born on October 22, 1993?
CREATE TABLE table_name_48 (previous_club VARCHAR, date_of_birth VARCHAR)
{ "SQL_Query": "SELECT previous_club FROM table_name_48 WHERE date_of_birth = \"october 22, 1993\"" }
What was the competition on 7 June 1999?
CREATE TABLE table_name_84 (competition VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT competition FROM table_name_84 WHERE date = \"7 june 1999\"" }
What was the competition on 13 November 2005?
CREATE TABLE table_name_6 (competition VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT competition FROM table_name_6 WHERE date = \"13 november 2005\"" }
Where was the friendly competition on 7 June 1999 played?
CREATE TABLE table_name_9 (venue VARCHAR, competition VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT venue FROM table_name_9 WHERE competition = \"friendly\" AND date = \"7 june 1999\"" }
What is the time/retired for brm with a grid of 13?
CREATE TABLE table_name_81 (time_retired VARCHAR, constructor VARCHAR, grid VARCHAR)
{ "SQL_Query": "SELECT time_retired FROM table_name_81 WHERE constructor = \"brm\" AND grid = 13" }
Which Home team has a Venue of mcg?
CREATE TABLE table_name_32 (home_team VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT home_team FROM table_name_32 WHERE venue = \"mcg\"" }
What was the score of the Chiefs November 27, 1994 game?
CREATE TABLE table_name_74 (result VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_74 WHERE date = \"november 27, 1994\"" }
What was the score of the Chiefs pre-Week 16 game that 69,362 people attended?
CREATE TABLE table_name_1 (result VARCHAR, week VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_1 WHERE week < 16 AND attendance = \"69,362\"" }
What's sawyer hannay's total pick number?
CREATE TABLE table_name_39 (pick__number VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT COUNT(pick__number) FROM table_name_39 WHERE player = \"sawyer hannay\"" }
Tell me the score on 22 august 2012
CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_37 WHERE date = \"22 august 2012\"" }
Who has points larger than 167.5?
CREATE TABLE table_name_51 (name VARCHAR, points INTEGER)
{ "SQL_Query": "SELECT name FROM table_name_51 WHERE points > 167.5" }
What is the lowest crowd seen by the mcg Venue?
CREATE TABLE table_name_84 (crowd INTEGER, venue VARCHAR)
{ "SQL_Query": "SELECT MIN(crowd) FROM table_name_84 WHERE venue = \"mcg\"" }
When was the game with richmond as Away team?
CREATE TABLE table_name_86 (date VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_86 WHERE away_team = \"richmond\"" }
What is the total ratings on share less than 4?
CREATE TABLE table_name_66 (rating VARCHAR, share INTEGER)
{ "SQL_Query": "SELECT COUNT(rating) FROM table_name_66 WHERE share < 4" }
When did the person born 24 September 1851 pass away?
CREATE TABLE table_name_66 (date_of_death VARCHAR, date_of_birth VARCHAR)
{ "SQL_Query": "SELECT date_of_death FROM table_name_66 WHERE date_of_birth = \"24 september 1851\"" }
How old was the person born 24 September 1851 at the time of disaster?
CREATE TABLE table_name_81 (age_at_time_of_disaster VARCHAR, date_of_birth VARCHAR)
{ "SQL_Query": "SELECT age_at_time_of_disaster FROM table_name_81 WHERE date_of_birth = \"24 september 1851\"" }
What is the name of the person born in 1909?
CREATE TABLE table_name_26 (name VARCHAR, date_of_birth VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_26 WHERE date_of_birth = \"1909\"" }
What is the result in oakland?
CREATE TABLE table_name_11 (result VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_11 WHERE venue = \"oakland\"" }
Which Crowd has a Home team of richmond?
CREATE TABLE table_name_14 (crowd INTEGER, home_team VARCHAR)
{ "SQL_Query": "SELECT SUM(crowd) FROM table_name_14 WHERE home_team = \"richmond\"" }
Which Venue has a Home team of essendon?
CREATE TABLE table_name_47 (venue VARCHAR, home_team VARCHAR)
{ "SQL_Query": "SELECT venue FROM table_name_47 WHERE home_team = \"essendon\"" }
What nationality was the round 6 draft pick?
CREATE TABLE table_name_44 (nationality VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT nationality FROM table_name_44 WHERE round = 6" }
What nationality is the draft pick with w position from leninogorsk (russia-2)?
CREATE TABLE table_name_66 (nationality VARCHAR, position VARCHAR, college_junior_club_team__league_ VARCHAR)
{ "SQL_Query": "SELECT nationality FROM table_name_66 WHERE position = \"w\" AND college_junior_club_team__league_ = \"leninogorsk (russia-2)\"" }
What college or league did the round 2 pick with d position come from?
CREATE TABLE table_name_12 (college_junior_club_team__league_ VARCHAR, round VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT college_junior_club_team__league_ FROM table_name_12 WHERE round = 2 AND position = \"d\"" }
Who was the away team when North Melbourne was the home team?
CREATE TABLE table_name_17 (away_team VARCHAR, home_team VARCHAR)
{ "SQL_Query": "SELECT away_team FROM table_name_17 WHERE home_team = \"north melbourne\"" }
What away team played against Footscray as the home team?
CREATE TABLE table_name_50 (away_team VARCHAR, home_team VARCHAR)
{ "SQL_Query": "SELECT away_team FROM table_name_50 WHERE home_team = \"footscray\"" }
What is the rank for the show aired on May 19, 2009?
CREATE TABLE table_name_86 (rank___number_ VARCHAR, air_date VARCHAR)
{ "SQL_Query": "SELECT rank___number_ FROM table_name_86 WHERE air_date = \"may 19, 2009\"" }
What is the timeslot for the episode that aired April 28, 2009?
CREATE TABLE table_name_26 (timeslot VARCHAR, air_date VARCHAR)
{ "SQL_Query": "SELECT timeslot FROM table_name_26 WHERE air_date = \"april 28, 2009\"" }
What is the rating of the show ranked tba, aired on April 21, 2009?
CREATE TABLE table_name_63 (rating VARCHAR, rank___number_ VARCHAR, air_date VARCHAR)
{ "SQL_Query": "SELECT rating FROM table_name_63 WHERE rank___number_ = \"tba\" AND air_date = \"april 21, 2009\"" }
What building shows 2013 and has more than 20 floors?
CREATE TABLE table_name_54 (building VARCHAR, year VARCHAR, floors VARCHAR)
{ "SQL_Query": "SELECT building FROM table_name_54 WHERE year = 2013 AND floors > 20" }
What is the status of the building for 2014 with 33 floors?
CREATE TABLE table_name_54 (status VARCHAR, year VARCHAR, floors VARCHAR)
{ "SQL_Query": "SELECT status FROM table_name_54 WHERE year < 2014 AND floors = 33" }
What are the number of floors for the building of td building redevelopment (office)?
CREATE TABLE table_name_45 (floors INTEGER, building VARCHAR)
{ "SQL_Query": "SELECT AVG(floors) FROM table_name_45 WHERE building = \"td building redevelopment (office)\"" }
What is the status of the building with more than 28 floor and a year of 2013?
CREATE TABLE table_name_57 (status VARCHAR, floors VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT status FROM table_name_57 WHERE floors > 28 AND year = 2013" }
What is the status of the building with less than 18 floors and later than 2013?
CREATE TABLE table_name_18 (status VARCHAR, floors VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT status FROM table_name_18 WHERE floors < 18 AND year > 2013" }
Which Home team has a Venue of arden street oval?
CREATE TABLE table_name_64 (home_team VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT home_team FROM table_name_64 WHERE venue = \"arden street oval\"" }
When did tavárez lose?
CREATE TABLE table_name_64 (date VARCHAR, loss VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_64 WHERE loss = \"tavárez\"" }
What is the largest area with a Code of 66097, and a Region larger than 6?
CREATE TABLE table_name_72 (area__km_2__ INTEGER, code VARCHAR, region VARCHAR)
{ "SQL_Query": "SELECT MAX(area__km_2__) FROM table_name_72 WHERE code = 66097 AND region > 6" }
What is the largest region with a Code smaller than 66112, and a Name of l'île-dorval?
CREATE TABLE table_name_17 (region INTEGER, code VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT MAX(region) FROM table_name_17 WHERE code < 66112 AND name = \"l'île-dorval\"" }
Name the away team score for lake oval
CREATE TABLE table_name_1 (away_team VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT away_team AS score FROM table_name_1 WHERE venue = \"lake oval\"" }
Name the home team score for south melbourne home team
CREATE TABLE table_name_35 (home_team VARCHAR)
{ "SQL_Query": "SELECT home_team AS score FROM table_name_35 WHERE home_team = \"south melbourne\"" }
Name the home team for carlton away team
CREATE TABLE table_name_77 (home_team VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT home_team FROM table_name_77 WHERE away_team = \"carlton\"" }
when was the site listed when the county is cochise?
CREATE TABLE table_name_14 (listed VARCHAR, county VARCHAR)
{ "SQL_Query": "SELECT listed FROM table_name_14 WHERE county = \"cochise\"" }
what is the cerclis ID when the site was proposed on 12/30/1982 and was partially deleted on 05/01/2003?
CREATE TABLE table_name_74 (cerclis_id VARCHAR, proposed VARCHAR, partially_deleted VARCHAR)
{ "SQL_Query": "SELECT cerclis_id FROM table_name_74 WHERE proposed = \"12/30/1982\" AND partially_deleted = \"05/01/2003\"" }
when was the site partially deleted when the cerclis id is az7570028582?
CREATE TABLE table_name_67 (partially_deleted VARCHAR, cerclis_id VARCHAR)
{ "SQL_Query": "SELECT partially_deleted FROM table_name_67 WHERE cerclis_id = \"az7570028582\"" }
What band is the highest and has a System of gsm-450?
CREATE TABLE table_name_22 (band INTEGER, system VARCHAR)
{ "SQL_Query": "SELECT MAX(band) FROM table_name_22 WHERE system = \"gsm-450\"" }
What was the constructor when there were 95 laps and a grid less than 15?
CREATE TABLE table_name_85 (constructor VARCHAR, grid VARCHAR, laps VARCHAR)
{ "SQL_Query": "SELECT constructor FROM table_name_85 WHERE grid < 15 AND laps = 95" }
What was the grid for suspension time/retired?
CREATE TABLE table_name_8 (grid VARCHAR, time_retired VARCHAR)
{ "SQL_Query": "SELECT grid FROM table_name_8 WHERE time_retired = \"suspension\"" }
When the venue is victoria park, what's the largest Crowd that attended?
CREATE TABLE table_name_64 (crowd INTEGER, venue VARCHAR)
{ "SQL_Query": "SELECT MAX(crowd) FROM table_name_64 WHERE venue = \"victoria park\"" }
When the Away team is south melbourne, what's the Home team score?
CREATE TABLE table_name_32 (home_team VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT home_team AS score FROM table_name_32 WHERE away_team = \"south melbourne\"" }
If the Away team is north melbourne, what's the Home team score?
CREATE TABLE table_name_18 (home_team VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT home_team AS score FROM table_name_18 WHERE away_team = \"north melbourne\"" }
Name the manner of departyre for 26 january date of appointment
CREATE TABLE table_name_4 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)
{ "SQL_Query": "SELECT manner_of_departure FROM table_name_4 WHERE date_of_appointment = \"26 january\"" }
I want to know the team that was sacked and date of vacancy was 4 december
CREATE TABLE table_name_68 (team VARCHAR, manner_of_departure VARCHAR, date_of_vacancy VARCHAR)
{ "SQL_Query": "SELECT team FROM table_name_68 WHERE manner_of_departure = \"sacked\" AND date_of_vacancy = \"4 december\"" }
Tell me the outgoing manager for 22 november date of vacancy
CREATE TABLE table_name_13 (outgoing_manager VARCHAR, date_of_vacancy VARCHAR)
{ "SQL_Query": "SELECT outgoing_manager FROM table_name_13 WHERE date_of_vacancy = \"22 november\"" }
Tell me the outgoing manager for livingston
CREATE TABLE table_name_15 (outgoing_manager VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT outgoing_manager FROM table_name_15 WHERE team = \"livingston\"" }
Tell me the manner of departure for 3 january date of appointment
CREATE TABLE table_name_1 (manner_of_departure VARCHAR, date_of_appointment VARCHAR)
{ "SQL_Query": "SELECT manner_of_departure FROM table_name_1 WHERE date_of_appointment = \"3 january\"" }
When did the Argentine Grand Prix race?
CREATE TABLE table_name_84 (date VARCHAR, race VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_84 WHERE race = \"argentine grand prix\"" }
What day did Emerson Fittipaldi win the Spanish Grand Prix?
CREATE TABLE table_name_44 (date VARCHAR, winning_driver VARCHAR, race VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_44 WHERE winning_driver = \"emerson fittipaldi\" AND race = \"spanish grand prix\"" }
What circuit was the British Grand Prix?
CREATE TABLE table_name_92 (circuit VARCHAR, race VARCHAR)
{ "SQL_Query": "SELECT circuit FROM table_name_92 WHERE race = \"british grand prix\"" }
On which date was the 2006 FIFA World Cup Qualification in Manama, Bahrain?
CREATE TABLE table_name_57 (date VARCHAR, venue VARCHAR, competition VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_57 WHERE venue = \"manama, bahrain\" AND competition = \"2006 fifa world cup qualification\"" }
What was the final score of the Friendly Competition in Manama, Bahrain?
CREATE TABLE table_name_48 (score VARCHAR, venue VARCHAR, competition VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_48 WHERE venue = \"manama, bahrain\" AND competition = \"friendly\"" }
On which date was the match in Manama, Bahrain?
CREATE TABLE table_name_63 (date VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_63 WHERE venue = \"manama, bahrain\"" }
How many laps did Emerson Fittipaldi do on a grid larger than 14, and when was the Time/Retired of accident?
CREATE TABLE table_name_98 (laps VARCHAR, driver VARCHAR, grid VARCHAR, time_retired VARCHAR)
{ "SQL_Query": "SELECT COUNT(laps) FROM table_name_98 WHERE grid > 14 AND time_retired = \"accident\" AND driver = \"emerson fittipaldi\"" }
What is the Time/Retired of Carlos Reutemann who was driving a brabham - Alfa Romeo?
CREATE TABLE table_name_69 (time_retired VARCHAR, constructor VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT time_retired FROM table_name_69 WHERE constructor = \"brabham - alfa romeo\" AND driver = \"carlos reutemann\"" }
what status is the vehicle types of dmbs+tcl+dmcl?
CREATE TABLE table_name_55 (status VARCHAR, vehicle_types VARCHAR)
{ "SQL_Query": "SELECT status FROM table_name_55 WHERE vehicle_types = \"dmbs+tcl+dmcl\"" }
what livery has a status of in service as coaching stock?
CREATE TABLE table_name_74 (livery VARCHAR, status VARCHAR)
{ "SQL_Query": "SELECT livery FROM table_name_74 WHERE status = \"in service as coaching stock\"" }
what status is the vehicle numbers of adb977554?
CREATE TABLE table_name_78 (status VARCHAR, vehicle_numbers VARCHAR)
{ "SQL_Query": "SELECT status FROM table_name_78 WHERE vehicle_numbers = \"adb977554\"" }
Which city is Alianza?
CREATE TABLE table_name_62 (city VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT city FROM table_name_62 WHERE name = \"alianza\"" }
When was Alianza's first season in first division with a promotion after 1959?
CREATE TABLE table_name_63 (first_season_in_first_division VARCHAR, first_season_after_most_recent_promotion VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT first_season_in_first_division FROM table_name_63 WHERE first_season_after_most_recent_promotion = \"1959\" AND name = \"alianza\"" }