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