Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
46,600
<question>: Which City has a Result of w, and a Competition of international friendly (unofficial match), and a Score of 1-0? <context>: CREATE TABLE table_name_91 (city VARCHAR, score VARCHAR, result VARCHAR, competition VARCHAR)
SELECT city FROM table_name_91 WHERE result = "w" AND competition = "international friendly (unofficial match)" AND score = "1-0"
46,601
<question>: Which Date has a Result of w, and a Score of 3-0? <context>: CREATE TABLE table_name_94 (date VARCHAR, result VARCHAR, score VARCHAR)
SELECT date FROM table_name_94 WHERE result = "w" AND score = "3-0"
46,602
<question>: Which City has a Date of june 9, 1976? <context>: CREATE TABLE table_name_39 (city VARCHAR, date VARCHAR)
SELECT city FROM table_name_39 WHERE date = "june 9, 1976"
46,603
<question>: Which City has a Date of may 19, 1976? <context>: CREATE TABLE table_name_23 (city VARCHAR, date VARCHAR)
SELECT city FROM table_name_23 WHERE date = "may 19, 1976"
46,604
<question>: What are the total number of laps for Tom Bridger? <context>: CREATE TABLE table_name_63 (laps VARCHAR, driver VARCHAR)
SELECT COUNT(laps) FROM table_name_63 WHERE driver = "tom bridger"
46,605
<question>: What are the lowest laps of Graham Hill? <context>: CREATE TABLE table_name_68 (laps INTEGER, driver VARCHAR)
SELECT MIN(laps) FROM table_name_68 WHERE driver = "graham hill"
46,606
<question>: What are the lowest laps of grid 17? <context>: CREATE TABLE table_name_69 (laps INTEGER, grid VARCHAR)
SELECT MIN(laps) FROM table_name_69 WHERE grid = 17
46,607
<question>: Which Avg/G has a Gain of 16, and a Name of barnes, freddie, and a Loss smaller than 2? <context>: CREATE TABLE table_name_91 (avg_g INTEGER, loss VARCHAR, gain VARCHAR, name VARCHAR)
SELECT SUM(avg_g) FROM table_name_91 WHERE gain = 16 AND name = "barnes, freddie" AND loss < 2
46,608
<question>: Which average Long has a Gain smaller than 16, and a Loss smaller than 6? <context>: CREATE TABLE table_name_51 (long INTEGER, gain VARCHAR, loss VARCHAR)
SELECT AVG(long) FROM table_name_51 WHERE gain < 16 AND loss < 6
46,609
<question>: Which Gain is the lowest one that has a Loss larger than 2, and an Avg/G larger than -6, and a Name of sheehan, tyler, and a Long larger than 11? <context>: CREATE TABLE table_name_84 (gain INTEGER, long VARCHAR, name VARCHAR, loss VARCHAR, avg_g VARCHAR)
SELECT MIN(gain) FROM table_name_84 WHERE loss > 2 AND avg_g > -6 AND name = "sheehan, tyler" AND long > 11
46,610
<question>: Which Avg/G is the lowest one that has a Long larger than 8, and a Loss smaller than 34, and a Gain larger than 16, and a Name of bullock, chris? <context>: CREATE TABLE table_name_52 (avg_g INTEGER, name VARCHAR, gain VARCHAR, long VARCHAR, loss VARCHAR)
SELECT MIN(avg_g) FROM table_name_52 WHERE long > 8 AND loss < 34 AND gain > 16 AND name = "bullock, chris"
46,611
<question>: Which Loss has a Name of bullock, chris, and a Long smaller than 36? <context>: CREATE TABLE table_name_72 (loss INTEGER, name VARCHAR, long VARCHAR)
SELECT SUM(loss) FROM table_name_72 WHERE name = "bullock, chris" AND long < 36
46,612
<question>: How much Long has a Loss larger than 2, and a Gain of 157, and an Avg/G smaller than 129? <context>: CREATE TABLE table_name_58 (long INTEGER, avg_g VARCHAR, loss VARCHAR, gain VARCHAR)
SELECT SUM(long) FROM table_name_58 WHERE loss > 2 AND gain = 157 AND avg_g < 129
46,613
<question>: What is the fewest number of places for a skater from Norway with fewer than 1524.9 points? <context>: CREATE TABLE table_name_11 (places INTEGER, nation VARCHAR, points VARCHAR)
SELECT MIN(places) FROM table_name_11 WHERE nation = "norway" AND points < 1524.9
46,614
<question>: What home has Philadelphia as the visitor, and december 4 as the date? <context>: CREATE TABLE table_name_1 (home VARCHAR, visitor VARCHAR, date VARCHAR)
SELECT home FROM table_name_1 WHERE visitor = "philadelphia" AND date = "december 4"
46,615
<question>: What record has a decision of parent, Philadelphia as the home, with december 12 as the date? <context>: CREATE TABLE table_name_81 (record VARCHAR, date VARCHAR, decision VARCHAR, home VARCHAR)
SELECT record FROM table_name_81 WHERE decision = "parent" AND home = "philadelphia" AND date = "december 12"
46,616
<question>: Which Tournament has a Score of 6–4, 6–2? <context>: CREATE TABLE table_name_62 (tournament VARCHAR, score VARCHAR)
SELECT tournament FROM table_name_62 WHERE score = "6–4, 6–2"
46,617
<question>: Which Score has an Opponent in the final of mehdi tahiri? <context>: CREATE TABLE table_name_96 (score VARCHAR, opponent_in_the_final VARCHAR)
SELECT score FROM table_name_96 WHERE opponent_in_the_final = "mehdi tahiri"
46,618
<question>: Which Date has a Score of 6–3, 7–6? <context>: CREATE TABLE table_name_3 (date INTEGER, score VARCHAR)
SELECT SUM(date) FROM table_name_3 WHERE score = "6–3, 7–6"
46,619
<question>: Which Date has a Score of 7–6(3), 4–6, 6–2? <context>: CREATE TABLE table_name_68 (date INTEGER, score VARCHAR)
SELECT SUM(date) FROM table_name_68 WHERE score = "7–6(3), 4–6, 6–2"
46,620
<question>: Which Surface has a Tournament of olbia? <context>: CREATE TABLE table_name_62 (surface VARCHAR, tournament VARCHAR)
SELECT surface FROM table_name_62 WHERE tournament = "olbia"
46,621
<question>: What was the attendance at the week 7 game? <context>: CREATE TABLE table_name_43 (attendance VARCHAR, week VARCHAR)
SELECT attendance FROM table_name_43 WHERE week = 7
46,622
<question>: What was the result of the game after week 3 against the New York Giants? <context>: CREATE TABLE table_name_94 (result VARCHAR, week VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_94 WHERE week > 3 AND opponent = "new york giants"
46,623
<question>: Who was the opponent at the week 6 game? <context>: CREATE TABLE table_name_52 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_52 WHERE week = 6
46,624
<question>: What is the lowest loss that Jarius Wright has had where he also has had a gain bigger than 1. <context>: CREATE TABLE table_name_80 (loss INTEGER, name VARCHAR, gain VARCHAR)
SELECT MIN(loss) FROM table_name_80 WHERE name = "jarius wright" AND gain > 1
46,625
<question>: How much was the first place prize for the American golf classic located in Ohio? <context>: CREATE TABLE table_name_80 (location VARCHAR, tournament VARCHAR)
SELECT 1 AS st_prize___$__ FROM table_name_80 WHERE location = "ohio" AND tournament = "american golf classic"
46,626
<question>: What date was the Monsanto open located in Florida? <context>: CREATE TABLE table_name_58 (date VARCHAR, location VARCHAR, tournament VARCHAR)
SELECT date FROM table_name_58 WHERE location = "florida" AND tournament = "monsanto open"
46,627
<question>: What was the score of Johnny Miller (7)? <context>: CREATE TABLE table_name_80 (score VARCHAR, winner VARCHAR)
SELECT score FROM table_name_80 WHERE winner = "johnny miller (7)"
46,628
<question>: What is the total number of years that have divisions greater than 4? <context>: CREATE TABLE table_name_62 (year VARCHAR, division INTEGER)
SELECT COUNT(year) FROM table_name_62 WHERE division > 4
46,629
<question>: What is the highest division for years earlier than 2011? <context>: CREATE TABLE table_name_27 (division INTEGER, year INTEGER)
SELECT MAX(division) FROM table_name_27 WHERE year < 2011
46,630
<question>: What is the Week number on November 30, 1958 with more than 33,240 in Attendance? <context>: CREATE TABLE table_name_64 (week VARCHAR, date VARCHAR, attendance VARCHAR)
SELECT COUNT(week) FROM table_name_64 WHERE date = "november 30, 1958" AND attendance > 33 OFFSET 240
46,631
<question>: What was the Result on November 9, 1958? <context>: CREATE TABLE table_name_77 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_77 WHERE date = "november 9, 1958"
46,632
<question>: What was the Attendance on Week 8? <context>: CREATE TABLE table_name_70 (attendance INTEGER, week VARCHAR)
SELECT AVG(attendance) FROM table_name_70 WHERE week = 8
46,633
<question>: Which season did not qualify for UEFA competitions? <context>: CREATE TABLE table_name_70 (season VARCHAR, against VARCHAR)
SELECT season FROM table_name_70 WHERE against = "did not qualify for uefa competitions"
46,634
<question>: How many games were lost that had goals against of 5? <context>: CREATE TABLE table_name_15 (lost VARCHAR, goals_against VARCHAR)
SELECT lost FROM table_name_15 WHERE goals_against = "5"
46,635
<question>: How many draws were there with goals against that did not qualify for UEFA competitions? <context>: CREATE TABLE table_name_56 (drew VARCHAR, goals_against VARCHAR)
SELECT drew FROM table_name_56 WHERE goals_against = "did not qualify for uefa competitions"
46,636
<question>: Which competition did not qualify for UEFA competitions in the 1970-71 season? <context>: CREATE TABLE table_name_67 (competition VARCHAR, lost VARCHAR, season VARCHAR)
SELECT competition FROM table_name_67 WHERE lost = "did not qualify for uefa competitions" AND season = "1970-71"
46,637
<question>: What is the attendance in texas stadium? <context>: CREATE TABLE table_name_86 (attendance INTEGER, venue VARCHAR)
SELECT SUM(attendance) FROM table_name_86 WHERE venue = "texas stadium"
46,638
<question>: What is the home team score for the team that has a home field of the Telstra Dome? <context>: CREATE TABLE table_name_98 (home_team VARCHAR, ground VARCHAR)
SELECT home_team AS score FROM table_name_98 WHERE ground = "telstra dome"
46,639
<question>: Which home team had an away team of the Brisbane Lions? <context>: CREATE TABLE table_name_36 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_36 WHERE away_team = "brisbane lions"
46,640
<question>: What was the sensor with a resolution of 355x288 for a Naturalpoint Trackir 3? <context>: CREATE TABLE table_name_53 (sensor VARCHAR, sensor_resolution VARCHAR, camera VARCHAR)
SELECT sensor FROM table_name_53 WHERE sensor_resolution = "355x288" AND camera = "naturalpoint trackir 3"
46,641
<question>: What was the sensor resolution with a minimal CPU usage for a naturalpoint trackir 3 pro? <context>: CREATE TABLE table_name_39 (sensor_resolution VARCHAR, cpu_usage VARCHAR, camera VARCHAR)
SELECT sensor_resolution FROM table_name_39 WHERE cpu_usage = "minimal" AND camera = "naturalpoint trackir 3 pro"
46,642
<question>: What was the output with no IR LEDs? <context>: CREATE TABLE table_name_90 (output VARCHAR, ir_leds VARCHAR)
SELECT output FROM table_name_90 WHERE ir_leds = "no"
46,643
<question>: What sensor has a resolution of 640x480 with small CPU usage, jpeg compressed output and a camera of sony playstation eyetoy? <context>: CREATE TABLE table_name_21 (sensor VARCHAR, camera VARCHAR, output VARCHAR, sensor_resolution VARCHAR, cpu_usage VARCHAR)
SELECT sensor FROM table_name_21 WHERE sensor_resolution = "640x480" AND cpu_usage = "small" AND output = "jpeg compressed" AND camera = "sony playstation eyetoy"
46,644
<question>: What is the max speed of the unit with an 8+4 quantity built before 1971? <context>: CREATE TABLE table_name_22 (max_speed__km_h_ INTEGER, quantity_built VARCHAR, year_built VARCHAR)
SELECT SUM(max_speed__km_h_) FROM table_name_22 WHERE quantity_built = "8+4" AND year_built < 1971
46,645
<question>: What is the numbers of the thn unit with a power greater than 220? <context>: CREATE TABLE table_name_49 (numbers VARCHAR, power__horsepower_ VARCHAR, type VARCHAR)
SELECT numbers FROM table_name_49 WHERE power__horsepower_ > 220 AND type = "thn"
46,646
<question>: What is the power of the unit built after 1995? <context>: CREATE TABLE table_name_71 (power__horsepower_ INTEGER, year_built INTEGER)
SELECT SUM(power__horsepower_) FROM table_name_71 WHERE year_built > 1995
46,647
<question>: Week larger than 6, and a Date of november 22, 1959 had what result? <context>: CREATE TABLE table_name_5 (result VARCHAR, week VARCHAR, date VARCHAR)
SELECT result FROM table_name_5 WHERE week > 6 AND date = "november 22, 1959"
46,648
<question>: Result of w 21–7 had what average week? <context>: CREATE TABLE table_name_96 (week INTEGER, result VARCHAR)
SELECT AVG(week) FROM table_name_96 WHERE result = "w 21–7"
46,649
<question>: Date of november 29, 1959 had what lowest attendance? <context>: CREATE TABLE table_name_7 (attendance INTEGER, date VARCHAR)
SELECT MIN(attendance) FROM table_name_7 WHERE date = "november 29, 1959"
46,650
<question>: Week that has a Date of december 5, 1959 had what week? <context>: CREATE TABLE table_name_4 (week VARCHAR, date VARCHAR)
SELECT week FROM table_name_4 WHERE date = "december 5, 1959"
46,651
<question>: Which Game has an Opponent of @ carolina hurricanes? <context>: CREATE TABLE table_name_94 (game INTEGER, opponent VARCHAR)
SELECT SUM(game) FROM table_name_94 WHERE opponent = "@ carolina hurricanes"
46,652
<question>: How many games have a November of 10? <context>: CREATE TABLE table_name_10 (game VARCHAR, november VARCHAR)
SELECT COUNT(game) FROM table_name_10 WHERE november = 10
46,653
<question>: Which Game has a November of 22? <context>: CREATE TABLE table_name_32 (game INTEGER, november VARCHAR)
SELECT SUM(game) FROM table_name_32 WHERE november = 22
46,654
<question>: What is the mean year of marriage when her age was more than 19 and his age was 30? <context>: CREATE TABLE table_name_6 (year_of_marriage INTEGER, her_age VARCHAR, his_age VARCHAR)
SELECT AVG(year_of_marriage) FROM table_name_6 WHERE her_age > 19 AND his_age = 30
46,655
<question>: What is the lowest figure for her age when the year of marriage is before 1853, the number of children is less than 8, and the bride was Eliza Maria Partridge? <context>: CREATE TABLE table_name_60 (her_age INTEGER, name VARCHAR, year_of_marriage VARCHAR, _number_of_children VARCHAR)
SELECT MIN(her_age) FROM table_name_60 WHERE year_of_marriage < 1853 AND _number_of_children < 8 AND name = "eliza maria partridge"
46,656
<question>: What is the total number of her age figures where his age is less than 33, the bride was diontha walker, and the number of children was less than 0? <context>: CREATE TABLE table_name_84 (her_age INTEGER, _number_of_children VARCHAR, his_age VARCHAR, name VARCHAR)
SELECT SUM(her_age) FROM table_name_84 WHERE his_age < 33 AND name = "diontha walker" AND _number_of_children < 0
46,657
<question>: How much Lost has an Against larger than 19, and a Drawn smaller than 1? <context>: CREATE TABLE table_name_67 (lost INTEGER, against VARCHAR, drawn VARCHAR)
SELECT SUM(lost) FROM table_name_67 WHERE against > 19 AND drawn < 1
46,658
<question>: Which Played has a Lost of 3, and an Against of 23? <context>: CREATE TABLE table_name_63 (played INTEGER, lost VARCHAR, against VARCHAR)
SELECT AVG(played) FROM table_name_63 WHERE lost = 3 AND against = 23
46,659
<question>: Which Played is the highest one that has an Against smaller than 18, and Points smaller than 10? <context>: CREATE TABLE table_name_92 (played INTEGER, against VARCHAR, points VARCHAR)
SELECT MAX(played) FROM table_name_92 WHERE against < 18 AND points < 10
46,660
<question>: Which Against is the highest one that has a Drawn larger than 1, and a Team of corinthians, and a Played smaller than 7? <context>: CREATE TABLE table_name_31 (against INTEGER, played VARCHAR, drawn VARCHAR, team VARCHAR)
SELECT MAX(against) FROM table_name_31 WHERE drawn > 1 AND team = "corinthians" AND played < 7
46,661
<question>: What opponent has october less than 20, and 8 for points? <context>: CREATE TABLE table_name_13 (opponent VARCHAR, october VARCHAR, points VARCHAR)
SELECT opponent FROM table_name_13 WHERE october < 20 AND points = 8
46,662
<question>: What position does Drew Callander play? <context>: CREATE TABLE table_name_1 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_1 WHERE player = "drew callander"
46,663
<question>: What round did Ray Kurpis play? <context>: CREATE TABLE table_name_2 (round VARCHAR, player VARCHAR)
SELECT round FROM table_name_2 WHERE player = "ray kurpis"
46,664
<question>: Which Built by has a Name of northern jaeger? <context>: CREATE TABLE table_name_44 (built_by VARCHAR, name VARCHAR)
SELECT built_by FROM table_name_44 WHERE name = "northern jaeger"
46,665
<question>: How many Horsepowers have a Year smaller than 1974, and a Tonnage of 4437? <context>: CREATE TABLE table_name_51 (horsepowers INTEGER, year VARCHAR, tonnage VARCHAR)
SELECT SUM(horsepowers) FROM table_name_51 WHERE year < 1974 AND tonnage = 4437
46,666
<question>: When was the 2014 fifa world cup qualification? <context>: CREATE TABLE table_name_96 (date VARCHAR, competition VARCHAR)
SELECT date FROM table_name_96 WHERE competition = "2014 fifa world cup qualification"
46,667
<question>: When was the date of an event at Tokyo venue? <context>: CREATE TABLE table_name_86 (date VARCHAR, venue VARCHAR)
SELECT date FROM table_name_86 WHERE venue = "tokyo"
46,668
<question>: What city did Yugoslavia play against Poland in? <context>: CREATE TABLE table_name_58 (city VARCHAR, opponent VARCHAR)
SELECT city FROM table_name_58 WHERE opponent = "poland"
46,669
<question>: What day did Yugoslavia play Luxembourg? <context>: CREATE TABLE table_name_56 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_56 WHERE opponent = "luxembourg"
46,670
<question>: What type of game was played in Ljubljana? <context>: CREATE TABLE table_name_97 (type_of_game VARCHAR, city VARCHAR)
SELECT type_of_game FROM table_name_97 WHERE city = "ljubljana"
46,671
<question>: What's the result of the game played in Belgrade? <context>: CREATE TABLE table_name_70 (results¹ VARCHAR, city VARCHAR)
SELECT results¹ FROM table_name_70 WHERE city = "belgrade"
46,672
<question>: What was the score on March 23? <context>: CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_2 WHERE date = "march 23"
46,673
<question>: When the Vancouver Canucks were visiting, what was the record when the score was 4-2? <context>: CREATE TABLE table_name_6 (record VARCHAR, score VARCHAR, visitor VARCHAR)
SELECT record FROM table_name_6 WHERE score = "4-2" AND visitor = "vancouver canucks"
46,674
<question>: Which Partner has a Score of 6–7, 7–6, 6–7? <context>: CREATE TABLE table_name_79 (partner VARCHAR, score VARCHAR)
SELECT partner FROM table_name_79 WHERE score = "6–7, 7–6, 6–7"
46,675
<question>: Which Score has a Date of 13 april 1997? <context>: CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_50 WHERE date = "13 april 1997"
46,676
<question>: Which Partner has a Score of 7–6, 6–3? <context>: CREATE TABLE table_name_38 (partner VARCHAR, score VARCHAR)
SELECT partner FROM table_name_38 WHERE score = "7–6, 6–3"
46,677
<question>: Which Date has a Tournament of bmw open? <context>: CREATE TABLE table_name_63 (date VARCHAR, tournament VARCHAR)
SELECT date FROM table_name_63 WHERE tournament = "bmw open"
46,678
<question>: Which Partner has a Tournament of catella swedish open? <context>: CREATE TABLE table_name_13 (partner VARCHAR, tournament VARCHAR)
SELECT partner FROM table_name_13 WHERE tournament = "catella swedish open"
46,679
<question>: Which Date has a Surface of clay, and a Score of 6–3, 5–7, 2–6? <context>: CREATE TABLE table_name_89 (date VARCHAR, surface VARCHAR, score VARCHAR)
SELECT date FROM table_name_89 WHERE surface = "clay" AND score = "6–3, 5–7, 2–6"
46,680
<question>: Who was the winner of the tre valli varesine race? <context>: CREATE TABLE table_name_60 (winner VARCHAR, race_name VARCHAR)
SELECT winner FROM table_name_60 WHERE race_name = "tre valli varesine"
46,681
<question>: What is the date of the omloop van de vlaamse scheldeboorden race with a UCI rating of 1.1? <context>: CREATE TABLE table_name_22 (date VARCHAR, uci_rating VARCHAR, race_name VARCHAR)
SELECT date FROM table_name_22 WHERE uci_rating = "1.1" AND race_name = "omloop van de vlaamse scheldeboorden"
46,682
<question>: What is the date of the gp città di camaiore race? <context>: CREATE TABLE table_name_54 (date VARCHAR, race_name VARCHAR)
SELECT date FROM table_name_54 WHERE race_name = "gp città di camaiore"
46,683
<question>: What is the UCI rating of the race in Italy with the progetto ciclismo alplast team? <context>: CREATE TABLE table_name_81 (uci_rating VARCHAR, location VARCHAR, team VARCHAR)
SELECT uci_rating FROM table_name_81 WHERE location = "italy" AND team = "progetto ciclismo alplast"
46,684
<question>: What is the date of the game being played at Schaeffer Stadium? <context>: CREATE TABLE table_name_52 (date VARCHAR, game_site VARCHAR)
SELECT date FROM table_name_52 WHERE game_site = "schaeffer stadium"
46,685
<question>: Which Points have a Year larger than 1966, and Wins larger than 1? <context>: CREATE TABLE table_name_78 (points INTEGER, year VARCHAR, wins VARCHAR)
SELECT AVG(points) FROM table_name_78 WHERE year > 1966 AND wins > 1
46,686
<question>: Which Year is the lowest one that has Wins smaller than 0? <context>: CREATE TABLE table_name_47 (year INTEGER, wins INTEGER)
SELECT MIN(year) FROM table_name_47 WHERE wins < 0
46,687
<question>: Which Points have Wins larger than 1? <context>: CREATE TABLE table_name_15 (points INTEGER, wins INTEGER)
SELECT AVG(points) FROM table_name_15 WHERE wins > 1
46,688
<question>: Which Wins have a Year of 1963, and a Class of 50cc? <context>: CREATE TABLE table_name_54 (wins INTEGER, year VARCHAR, class VARCHAR)
SELECT AVG(wins) FROM table_name_54 WHERE year = 1963 AND class = "50cc"
46,689
<question>: What is the player from Australia's rank with more than 16 wins? <context>: CREATE TABLE table_name_63 (rank VARCHAR, wins VARCHAR, country VARCHAR)
SELECT COUNT(rank) FROM table_name_63 WHERE wins > 16 AND country = "australia"
46,690
<question>: What is the highest earnings of a player with more than 19 wins? <context>: CREATE TABLE table_name_16 (earnings___ INTEGER, wins INTEGER)
SELECT MAX(earnings___) AS $__ FROM table_name_16 WHERE wins > 19
46,691
<question>: Which average Opened has a Manufacturer of vekoma? <context>: CREATE TABLE table_name_19 (opened INTEGER, manufacturer VARCHAR)
SELECT AVG(opened) FROM table_name_19 WHERE manufacturer = "vekoma"
46,692
<question>: Which Opened is the highest one that has a Themed Area of aerial park, and a Manufacturer of zamperla? <context>: CREATE TABLE table_name_76 (opened INTEGER, themed_area VARCHAR, manufacturer VARCHAR)
SELECT MAX(opened) FROM table_name_76 WHERE themed_area = "aerial park" AND manufacturer = "zamperla"
46,693
<question>: Which Themed Area has a Name of troublesome trucks runaway coaster? <context>: CREATE TABLE table_name_12 (themed_area VARCHAR, name VARCHAR)
SELECT themed_area FROM table_name_12 WHERE name = "troublesome trucks runaway coaster"
46,694
<question>: Which Manufacturer has a Style of steel sit down, and an Opened larger than 2008? <context>: CREATE TABLE table_name_31 (manufacturer VARCHAR, style VARCHAR, opened VARCHAR)
SELECT manufacturer FROM table_name_31 WHERE style = "steel sit down" AND opened > 2008
46,695
<question>: What position has a pick less than 25 for the university of california? <context>: CREATE TABLE table_name_44 (position VARCHAR, pick VARCHAR, school VARCHAR)
SELECT position FROM table_name_44 WHERE pick < 25 AND school = "university of california"
46,696
<question>: What is the pick number for tulane university? <context>: CREATE TABLE table_name_23 (pick INTEGER, school VARCHAR)
SELECT SUM(pick) FROM table_name_23 WHERE school = "tulane university"
46,697
<question>: What is the pick number for the kansas city royals? <context>: CREATE TABLE table_name_12 (pick INTEGER, team VARCHAR)
SELECT SUM(pick) FROM table_name_12 WHERE team = "kansas city royals"
46,698
<question>: What is the average Pick for the Pasco, Wa school? <context>: CREATE TABLE table_name_87 (pick INTEGER, school VARCHAR)
SELECT AVG(pick) FROM table_name_87 WHERE school = "pasco, wa"
46,699
<question>: What Label released a CD single in 1993? <context>: CREATE TABLE table_name_5 (label VARCHAR, format VARCHAR, date VARCHAR)
SELECT label FROM table_name_5 WHERE format = "cd single" AND date = "1993"