question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the average number of laps for the driver Piero Taruffi?
CREATE TABLE table_name_50 (laps INTEGER, driver VARCHAR)
SELECT AVG(laps) FROM table_name_50 WHERE driver = "piero taruffi"
### Context: CREATE TABLE table_name_50 (laps INTEGER, driver VARCHAR) ### Question: What is the average number of laps for the driver Piero Taruffi? ### Answer: SELECT AVG(laps) FROM table_name_50 WHERE driver = "piero taruffi"
Which driver has 12 laps and a grid of less than 10?
CREATE TABLE table_name_23 (driver VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT driver FROM table_name_23 WHERE laps = 12 AND grid < 10
### Context: CREATE TABLE table_name_23 (driver VARCHAR, laps VARCHAR, grid VARCHAR) ### Question: Which driver has 12 laps and a grid of less than 10? ### Answer: SELECT driver FROM table_name_23 WHERE laps = 12 AND grid < 10
What is the Illustration with a Design of tim nokes, and a First Day Cover Cancellation with calgary, alberta?
CREATE TABLE table_name_76 (illustration VARCHAR, design VARCHAR, first_day_cover_cancellation VARCHAR)
SELECT illustration FROM table_name_76 WHERE design = "tim nokes" AND first_day_cover_cancellation = "calgary, alberta"
### Context: CREATE TABLE table_name_76 (illustration VARCHAR, design VARCHAR, first_day_cover_cancellation VARCHAR) ### Question: What is the Illustration with a Design of tim nokes, and a First Day Cover Cancellation with calgary, alberta? ### Answer: SELECT illustration FROM table_name_76 WHERE design = "tim nokes" AND first_day_cover_cancellation = "calgary, alberta"
What is the Date of Issue with a Theme with mental health?
CREATE TABLE table_name_3 (date_of_issue VARCHAR, theme VARCHAR)
SELECT date_of_issue FROM table_name_3 WHERE theme = "mental health"
### Context: CREATE TABLE table_name_3 (date_of_issue VARCHAR, theme VARCHAR) ### Question: What is the Date of Issue with a Theme with mental health? ### Answer: SELECT date_of_issue FROM table_name_3 WHERE theme = "mental health"
What is the Theme with a Design with sputnik design partners?
CREATE TABLE table_name_55 (theme VARCHAR, design VARCHAR)
SELECT theme FROM table_name_55 WHERE design = "sputnik design partners"
### Context: CREATE TABLE table_name_55 (theme VARCHAR, design VARCHAR) ### Question: What is the Theme with a Design with sputnik design partners? ### Answer: SELECT theme FROM table_name_55 WHERE design = "sputnik design partners"
What is the Paper Type with a First Day Cover Cancellation with ottawa, on?
CREATE TABLE table_name_11 (paper_type VARCHAR, first_day_cover_cancellation VARCHAR)
SELECT paper_type FROM table_name_11 WHERE first_day_cover_cancellation = "ottawa, on"
### Context: CREATE TABLE table_name_11 (paper_type VARCHAR, first_day_cover_cancellation VARCHAR) ### Question: What is the Paper Type with a First Day Cover Cancellation with ottawa, on? ### Answer: SELECT paper_type FROM table_name_11 WHERE first_day_cover_cancellation = "ottawa, on"
What is the Paper Type with an Illustration with martin dee, ubc public affairs?
CREATE TABLE table_name_51 (paper_type VARCHAR, illustration VARCHAR)
SELECT paper_type FROM table_name_51 WHERE illustration = "martin dee, ubc public affairs"
### Context: CREATE TABLE table_name_51 (paper_type VARCHAR, illustration VARCHAR) ### Question: What is the Paper Type with an Illustration with martin dee, ubc public affairs? ### Answer: SELECT paper_type FROM table_name_51 WHERE illustration = "martin dee, ubc public affairs"
What is the Theme with a Paper Type of tullis russell coatings, and a Date with Issue of 1 october 2008?
CREATE TABLE table_name_28 (theme VARCHAR, paper_type VARCHAR, date_of_issue VARCHAR)
SELECT theme FROM table_name_28 WHERE paper_type = "tullis russell coatings" AND date_of_issue = "1 october 2008"
### Context: CREATE TABLE table_name_28 (theme VARCHAR, paper_type VARCHAR, date_of_issue VARCHAR) ### Question: What is the Theme with a Paper Type of tullis russell coatings, and a Date with Issue of 1 october 2008? ### Answer: SELECT theme FROM table_name_28 WHERE paper_type = "tullis russell coatings" AND date_of_issue = "1 october 2008"
What is the tie number when the away team is Lewes?
CREATE TABLE table_name_73 (tie_no VARCHAR, away_team VARCHAR)
SELECT tie_no FROM table_name_73 WHERE away_team = "lewes"
### Context: CREATE TABLE table_name_73 (tie_no VARCHAR, away_team VARCHAR) ### Question: What is the tie number when the away team is Lewes? ### Answer: SELECT tie_no FROM table_name_73 WHERE away_team = "lewes"
What is the away team when the home team is Cheltenham Town?
CREATE TABLE table_name_5 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_5 WHERE home_team = "cheltenham town"
### Context: CREATE TABLE table_name_5 (away_team VARCHAR, home_team VARCHAR) ### Question: What is the away team when the home team is Cheltenham Town? ### Answer: SELECT away_team FROM table_name_5 WHERE home_team = "cheltenham town"
What is the home team of the game with tie number 34?
CREATE TABLE table_name_76 (home_team VARCHAR, tie_no VARCHAR)
SELECT home_team FROM table_name_76 WHERE tie_no = "34"
### Context: CREATE TABLE table_name_76 (home_team VARCHAR, tie_no VARCHAR) ### Question: What is the home team of the game with tie number 34? ### Answer: SELECT home_team FROM table_name_76 WHERE tie_no = "34"
What is the away team of the game with tie number 31?
CREATE TABLE table_name_33 (away_team VARCHAR, tie_no VARCHAR)
SELECT away_team FROM table_name_33 WHERE tie_no = "31"
### Context: CREATE TABLE table_name_33 (away_team VARCHAR, tie_no VARCHAR) ### Question: What is the away team of the game with tie number 31? ### Answer: SELECT away_team FROM table_name_33 WHERE tie_no = "31"
How many goals for were scored for the team(s) that won fewer than 4 games and lost more than 6?
CREATE TABLE table_name_50 (goals_for INTEGER, wins VARCHAR, losses VARCHAR)
SELECT SUM(goals_for) FROM table_name_50 WHERE wins < 4 AND losses > 6
### Context: CREATE TABLE table_name_50 (goals_for INTEGER, wins VARCHAR, losses VARCHAR) ### Question: How many goals for were scored for the team(s) that won fewer than 4 games and lost more than 6? ### Answer: SELECT SUM(goals_for) FROM table_name_50 WHERE wins < 4 AND losses > 6
What is the average losses for the team(s) that played more than 8 games?
CREATE TABLE table_name_37 (losses INTEGER, games_played INTEGER)
SELECT AVG(losses) FROM table_name_37 WHERE games_played > 8
### Context: CREATE TABLE table_name_37 (losses INTEGER, games_played INTEGER) ### Question: What is the average losses for the team(s) that played more than 8 games? ### Answer: SELECT AVG(losses) FROM table_name_37 WHERE games_played > 8
What is the fleet size of the Vanguard 0-6-0dh class?
CREATE TABLE table_name_73 (fleet_size VARCHAR, class VARCHAR)
SELECT fleet_size FROM table_name_73 WHERE class = "vanguard 0-6-0dh"
### Context: CREATE TABLE table_name_73 (fleet_size VARCHAR, class VARCHAR) ### Question: What is the fleet size of the Vanguard 0-6-0dh class? ### Answer: SELECT fleet_size FROM table_name_73 WHERE class = "vanguard 0-6-0dh"
What is the year of introduction for the Electro-Diesel locomotive?
CREATE TABLE table_name_64 (introduced VARCHAR, type VARCHAR)
SELECT introduced FROM table_name_64 WHERE type = "electro-diesel locomotive"
### Context: CREATE TABLE table_name_64 (introduced VARCHAR, type VARCHAR) ### Question: What is the year of introduction for the Electro-Diesel locomotive? ### Answer: SELECT introduced FROM table_name_64 WHERE type = "electro-diesel locomotive"
What is the average fleet size for the Shunter type introduced in 1959?
CREATE TABLE table_name_3 (fleet_size INTEGER, type VARCHAR, introduced VARCHAR)
SELECT AVG(fleet_size) FROM table_name_3 WHERE type = "shunter" AND introduced = "1959"
### Context: CREATE TABLE table_name_3 (fleet_size INTEGER, type VARCHAR, introduced VARCHAR) ### Question: What is the average fleet size for the Shunter type introduced in 1959? ### Answer: SELECT AVG(fleet_size) FROM table_name_3 WHERE type = "shunter" AND introduced = "1959"
What is the smallest fleet size with a type of shunter introduced in 1953?
CREATE TABLE table_name_87 (fleet_size INTEGER, type VARCHAR, introduced VARCHAR)
SELECT MIN(fleet_size) FROM table_name_87 WHERE type = "shunter" AND introduced = "1953"
### Context: CREATE TABLE table_name_87 (fleet_size INTEGER, type VARCHAR, introduced VARCHAR) ### Question: What is the smallest fleet size with a type of shunter introduced in 1953? ### Answer: SELECT MIN(fleet_size) FROM table_name_87 WHERE type = "shunter" AND introduced = "1953"
What show that was aired on January 24, 2008 with a rating larger than 3.6 had the lowest viewers? How Many Viewers in the millions?
CREATE TABLE table_name_65 (viewers__m_ INTEGER, air_date VARCHAR, rating VARCHAR)
SELECT MIN(viewers__m_) FROM table_name_65 WHERE air_date = "january 24, 2008" AND rating > 3.6
### Context: CREATE TABLE table_name_65 (viewers__m_ INTEGER, air_date VARCHAR, rating VARCHAR) ### Question: What show that was aired on January 24, 2008 with a rating larger than 3.6 had the lowest viewers? How Many Viewers in the millions? ### Answer: SELECT MIN(viewers__m_) FROM table_name_65 WHERE air_date = "january 24, 2008" AND rating > 3.6
Which round has a car with a chassis of sf01?
CREATE TABLE table_name_20 (rounds VARCHAR, chassis VARCHAR)
SELECT rounds FROM table_name_20 WHERE chassis = "sf01"
### Context: CREATE TABLE table_name_20 (rounds VARCHAR, chassis VARCHAR) ### Question: Which round has a car with a chassis of sf01? ### Answer: SELECT rounds FROM table_name_20 WHERE chassis = "sf01"
Which country has swimsuit more than 9.46 and interview more than 9.22 with average less than 9.6?
CREATE TABLE table_name_22 (country VARCHAR, swimsuit VARCHAR, average VARCHAR, interview VARCHAR)
SELECT country FROM table_name_22 WHERE average < 9.6 AND interview > 9.22 AND swimsuit > 9.46
### Context: CREATE TABLE table_name_22 (country VARCHAR, swimsuit VARCHAR, average VARCHAR, interview VARCHAR) ### Question: Which country has swimsuit more than 9.46 and interview more than 9.22 with average less than 9.6? ### Answer: SELECT country FROM table_name_22 WHERE average < 9.6 AND interview > 9.22 AND swimsuit > 9.46
Which is the total number of evening gowns for swimsui less than 9.36 and average less than 9.23?
CREATE TABLE table_name_57 (evening_gown VARCHAR, swimsuit VARCHAR, average VARCHAR)
SELECT COUNT(evening_gown) FROM table_name_57 WHERE swimsuit < 9.36 AND average < 9.23
### Context: CREATE TABLE table_name_57 (evening_gown VARCHAR, swimsuit VARCHAR, average VARCHAR) ### Question: Which is the total number of evening gowns for swimsui less than 9.36 and average less than 9.23? ### Answer: SELECT COUNT(evening_gown) FROM table_name_57 WHERE swimsuit < 9.36 AND average < 9.23
Name the lowest average for interview more than 9.57 and delaware and evening gown more than 9.77
CREATE TABLE table_name_42 (average INTEGER, evening_gown VARCHAR, interview VARCHAR, country VARCHAR)
SELECT MIN(average) FROM table_name_42 WHERE interview > 9.57 AND country = "delaware" AND evening_gown > 9.77
### Context: CREATE TABLE table_name_42 (average INTEGER, evening_gown VARCHAR, interview VARCHAR, country VARCHAR) ### Question: Name the lowest average for interview more than 9.57 and delaware and evening gown more than 9.77 ### Answer: SELECT MIN(average) FROM table_name_42 WHERE interview > 9.57 AND country = "delaware" AND evening_gown > 9.77
Name the sum of swimsuit for average more than 9.23 for delaware for interview more than 9.73
CREATE TABLE table_name_31 (swimsuit INTEGER, interview VARCHAR, average VARCHAR, country VARCHAR)
SELECT SUM(swimsuit) FROM table_name_31 WHERE average > 9.23 AND country = "delaware" AND interview > 9.73
### Context: CREATE TABLE table_name_31 (swimsuit INTEGER, interview VARCHAR, average VARCHAR, country VARCHAR) ### Question: Name the sum of swimsuit for average more than 9.23 for delaware for interview more than 9.73 ### Answer: SELECT SUM(swimsuit) FROM table_name_31 WHERE average > 9.23 AND country = "delaware" AND interview > 9.73
Name the sum of average for interview more than 9.57 and swimsuit more than 9.65
CREATE TABLE table_name_99 (average INTEGER, interview VARCHAR, swimsuit VARCHAR)
SELECT SUM(average) FROM table_name_99 WHERE interview > 9.57 AND swimsuit > 9.65
### Context: CREATE TABLE table_name_99 (average INTEGER, interview VARCHAR, swimsuit VARCHAR) ### Question: Name the sum of average for interview more than 9.57 and swimsuit more than 9.65 ### Answer: SELECT SUM(average) FROM table_name_99 WHERE interview > 9.57 AND swimsuit > 9.65
Name the evening gown for swimsuit more than 9.51 for maryland
CREATE TABLE table_name_90 (evening_gown VARCHAR, swimsuit VARCHAR, country VARCHAR)
SELECT evening_gown FROM table_name_90 WHERE swimsuit > 9.51 AND country = "maryland"
### Context: CREATE TABLE table_name_90 (evening_gown VARCHAR, swimsuit VARCHAR, country VARCHAR) ### Question: Name the evening gown for swimsuit more than 9.51 for maryland ### Answer: SELECT evening_gown FROM table_name_90 WHERE swimsuit > 9.51 AND country = "maryland"
What points awarded are higher than 6 but smaller than 9
CREATE TABLE table_name_51 (points_awarded__platinum_ INTEGER, points_awarded__gold_ VARCHAR, points_awarded__silver_ VARCHAR)
SELECT MAX(points_awarded__platinum_) FROM table_name_51 WHERE points_awarded__gold_ = 9 AND points_awarded__silver_ > 6
### Context: CREATE TABLE table_name_51 (points_awarded__platinum_ INTEGER, points_awarded__gold_ VARCHAR, points_awarded__silver_ VARCHAR) ### Question: What points awarded are higher than 6 but smaller than 9 ### Answer: SELECT MAX(points_awarded__platinum_) FROM table_name_51 WHERE points_awarded__gold_ = 9 AND points_awarded__silver_ > 6
In the Canadian Grand Prix, what tyre was used when Jacky Ickx held pole position?
CREATE TABLE table_name_50 (tyre VARCHAR, pole_position VARCHAR, race VARCHAR)
SELECT tyre FROM table_name_50 WHERE pole_position = "jacky ickx" AND race = "canadian grand prix"
### Context: CREATE TABLE table_name_50 (tyre VARCHAR, pole_position VARCHAR, race VARCHAR) ### Question: In the Canadian Grand Prix, what tyre was used when Jacky Ickx held pole position? ### Answer: SELECT tyre FROM table_name_50 WHERE pole_position = "jacky ickx" AND race = "canadian grand prix"
When Jackie Stewart had the fastest lap and Jochen Rindt held the pole position with a D tyre, what was the circuit?
CREATE TABLE table_name_16 (circuit VARCHAR, fastest_lap VARCHAR, tyre VARCHAR, pole_position VARCHAR)
SELECT circuit FROM table_name_16 WHERE tyre = "d" AND pole_position = "jochen rindt" AND fastest_lap = "jackie stewart"
### Context: CREATE TABLE table_name_16 (circuit VARCHAR, fastest_lap VARCHAR, tyre VARCHAR, pole_position VARCHAR) ### Question: When Jackie Stewart had the fastest lap and Jochen Rindt held the pole position with a D tyre, what was the circuit? ### Answer: SELECT circuit FROM table_name_16 WHERE tyre = "d" AND pole_position = "jochen rindt" AND fastest_lap = "jackie stewart"
What was the circuit when Jochen Rindt won?
CREATE TABLE table_name_28 (circuit VARCHAR, winning_driver VARCHAR)
SELECT circuit FROM table_name_28 WHERE winning_driver = "jochen rindt"
### Context: CREATE TABLE table_name_28 (circuit VARCHAR, winning_driver VARCHAR) ### Question: What was the circuit when Jochen Rindt won? ### Answer: SELECT circuit FROM table_name_28 WHERE winning_driver = "jochen rindt"
What tyre was used in Kyalami?
CREATE TABLE table_name_81 (tyre VARCHAR, circuit VARCHAR)
SELECT tyre FROM table_name_81 WHERE circuit = "kyalami"
### Context: CREATE TABLE table_name_81 (tyre VARCHAR, circuit VARCHAR) ### Question: What tyre was used in Kyalami? ### Answer: SELECT tyre FROM table_name_81 WHERE circuit = "kyalami"
Which driver had a grid number of 10?
CREATE TABLE table_name_11 (driver VARCHAR, grid VARCHAR)
SELECT driver FROM table_name_11 WHERE grid = 10
### Context: CREATE TABLE table_name_11 (driver VARCHAR, grid VARCHAR) ### Question: Which driver had a grid number of 10? ### Answer: SELECT driver FROM table_name_11 WHERE grid = 10
Which constructor had a grid number of less than 3 and where the Time/Retired was 1:34:31.522?
CREATE TABLE table_name_55 (constructor VARCHAR, grid VARCHAR, time_retired VARCHAR)
SELECT constructor FROM table_name_55 WHERE grid < 3 AND time_retired = "1:34:31.522"
### Context: CREATE TABLE table_name_55 (constructor VARCHAR, grid VARCHAR, time_retired VARCHAR) ### Question: Which constructor had a grid number of less than 3 and where the Time/Retired was 1:34:31.522? ### Answer: SELECT constructor FROM table_name_55 WHERE grid < 3 AND time_retired = "1:34:31.522"
Which constructor had a Time/Retired of collision, where the grid number was less than 18 and Nick Heidfeld was the driver?
CREATE TABLE table_name_22 (constructor VARCHAR, driver VARCHAR, time_retired VARCHAR, grid VARCHAR)
SELECT constructor FROM table_name_22 WHERE time_retired = "collision" AND grid < 18 AND driver = "nick heidfeld"
### Context: CREATE TABLE table_name_22 (constructor VARCHAR, driver VARCHAR, time_retired VARCHAR, grid VARCHAR) ### Question: Which constructor had a Time/Retired of collision, where the grid number was less than 18 and Nick Heidfeld was the driver? ### Answer: SELECT constructor FROM table_name_22 WHERE time_retired = "collision" AND grid < 18 AND driver = "nick heidfeld"
What was the record on May 20?
CREATE TABLE table_name_64 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_64 WHERE date = "may 20"
### Context: CREATE TABLE table_name_64 (record VARCHAR, date VARCHAR) ### Question: What was the record on May 20? ### Answer: SELECT record FROM table_name_64 WHERE date = "may 20"
What is the height in feet of player number 24?
CREATE TABLE table_name_70 (height_in_ft VARCHAR, no_s_ VARCHAR)
SELECT height_in_ft FROM table_name_70 WHERE no_s_ = "24"
### Context: CREATE TABLE table_name_70 (height_in_ft VARCHAR, no_s_ VARCHAR) ### Question: What is the height in feet of player number 24? ### Answer: SELECT height_in_ft FROM table_name_70 WHERE no_s_ = "24"
Who is the school, club, team or country that the Rockets played for 1967-68?
CREATE TABLE table_name_27 (school_club_team_country VARCHAR, years_for_rockets VARCHAR)
SELECT school_club_team_country FROM table_name_27 WHERE years_for_rockets = "1967-68"
### Context: CREATE TABLE table_name_27 (school_club_team_country VARCHAR, years_for_rockets VARCHAR) ### Question: Who is the school, club, team or country that the Rockets played for 1967-68? ### Answer: SELECT school_club_team_country FROM table_name_27 WHERE years_for_rockets = "1967-68"
Which player has a Position of infielder, and a Hometown of atlanta, ga?
CREATE TABLE table_name_48 (player VARCHAR, position VARCHAR, hometown VARCHAR)
SELECT player FROM table_name_48 WHERE position = "infielder" AND hometown = "atlanta, ga"
### Context: CREATE TABLE table_name_48 (player VARCHAR, position VARCHAR, hometown VARCHAR) ### Question: Which player has a Position of infielder, and a Hometown of atlanta, ga? ### Answer: SELECT player FROM table_name_48 WHERE position = "infielder" AND hometown = "atlanta, ga"
What MLB draft has a School of green valley high school?
CREATE TABLE table_name_7 (mlb_draft VARCHAR, school VARCHAR)
SELECT mlb_draft FROM table_name_7 WHERE school = "green valley high school"
### Context: CREATE TABLE table_name_7 (mlb_draft VARCHAR, school VARCHAR) ### Question: What MLB draft has a School of green valley high school? ### Answer: SELECT mlb_draft FROM table_name_7 WHERE school = "green valley high school"
Which position has a School of green valley high school?
CREATE TABLE table_name_26 (position VARCHAR, school VARCHAR)
SELECT position FROM table_name_26 WHERE school = "green valley high school"
### Context: CREATE TABLE table_name_26 (position VARCHAR, school VARCHAR) ### Question: Which position has a School of green valley high school? ### Answer: SELECT position FROM table_name_26 WHERE school = "green valley high school"
Which position has a Player of chad hutchinson?
CREATE TABLE table_name_61 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_61 WHERE player = "chad hutchinson"
### Context: CREATE TABLE table_name_61 (position VARCHAR, player VARCHAR) ### Question: Which position has a Player of chad hutchinson? ### Answer: SELECT position FROM table_name_61 WHERE player = "chad hutchinson"
Which position has a School of petal high school?
CREATE TABLE table_name_71 (position VARCHAR, school VARCHAR)
SELECT position FROM table_name_71 WHERE school = "petal high school"
### Context: CREATE TABLE table_name_71 (position VARCHAR, school VARCHAR) ### Question: Which position has a School of petal high school? ### Answer: SELECT position FROM table_name_71 WHERE school = "petal high school"
What is the date of week 8?
CREATE TABLE table_name_23 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_23 WHERE week = 8
### Context: CREATE TABLE table_name_23 (date VARCHAR, week VARCHAR) ### Question: What is the date of week 8? ### Answer: SELECT date FROM table_name_23 WHERE week = 8
Which week has the lowest attendance of 48,102?
CREATE TABLE table_name_4 (week INTEGER, attendance VARCHAR)
SELECT MIN(week) FROM table_name_4 WHERE attendance = 48 OFFSET 102
### Context: CREATE TABLE table_name_4 (week INTEGER, attendance VARCHAR) ### Question: Which week has the lowest attendance of 48,102? ### Answer: SELECT MIN(week) FROM table_name_4 WHERE attendance = 48 OFFSET 102
What was the year with runs of 144?
CREATE TABLE table_name_68 (year VARCHAR, runs VARCHAR)
SELECT year FROM table_name_68 WHERE runs = "144"
### Context: CREATE TABLE table_name_68 (year VARCHAR, runs VARCHAR) ### Question: What was the year with runs of 144? ### Answer: SELECT year FROM table_name_68 WHERE runs = "144"
Name the place where adelaide oval is
CREATE TABLE table_name_51 (city_country VARCHAR, venue VARCHAR)
SELECT city_country FROM table_name_51 WHERE venue = "adelaide oval"
### Context: CREATE TABLE table_name_51 (city_country VARCHAR, venue VARCHAR) ### Question: Name the place where adelaide oval is ### Answer: SELECT city_country FROM table_name_51 WHERE venue = "adelaide oval"
Name the average zone for waddon marsh tram stop
CREATE TABLE table_name_64 (zone INTEGER, stations VARCHAR)
SELECT AVG(zone) FROM table_name_64 WHERE stations = "waddon marsh tram stop"
### Context: CREATE TABLE table_name_64 (zone INTEGER, stations VARCHAR) ### Question: Name the average zone for waddon marsh tram stop ### Answer: SELECT AVG(zone) FROM table_name_64 WHERE stations = "waddon marsh tram stop"
Name the stations for zone 5 and 1 platform by tramlink
CREATE TABLE table_name_58 (stations VARCHAR, platforms VARCHAR, managed_by VARCHAR, zone VARCHAR)
SELECT stations FROM table_name_58 WHERE managed_by = "tramlink" AND zone = 5 AND platforms = 1
### Context: CREATE TABLE table_name_58 (stations VARCHAR, platforms VARCHAR, managed_by VARCHAR, zone VARCHAR) ### Question: Name the stations for zone 5 and 1 platform by tramlink ### Answer: SELECT stations FROM table_name_58 WHERE managed_by = "tramlink" AND zone = 5 AND platforms = 1
Name the total number of platforms that waddon railway station has
CREATE TABLE table_name_41 (platforms VARCHAR, stations VARCHAR)
SELECT COUNT(platforms) FROM table_name_41 WHERE stations = "waddon railway station"
### Context: CREATE TABLE table_name_41 (platforms VARCHAR, stations VARCHAR) ### Question: Name the total number of platforms that waddon railway station has ### Answer: SELECT COUNT(platforms) FROM table_name_41 WHERE stations = "waddon railway station"
Name the average zone for waddon railway station and has more than 2 platforms
CREATE TABLE table_name_54 (zone INTEGER, stations VARCHAR, platforms VARCHAR)
SELECT AVG(zone) FROM table_name_54 WHERE stations = "waddon railway station" AND platforms > 2
### Context: CREATE TABLE table_name_54 (zone INTEGER, stations VARCHAR, platforms VARCHAR) ### Question: Name the average zone for waddon railway station and has more than 2 platforms ### Answer: SELECT AVG(zone) FROM table_name_54 WHERE stations = "waddon railway station" AND platforms > 2
What is Bob Ostovich's opponents record?
CREATE TABLE table_name_20 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_20 WHERE opponent = "bob ostovich"
### Context: CREATE TABLE table_name_20 (record VARCHAR, opponent VARCHAR) ### Question: What is Bob Ostovich's opponents record? ### Answer: SELECT record FROM table_name_20 WHERE opponent = "bob ostovich"
What location is Jimmy Smith fighting in?
CREATE TABLE table_name_72 (location VARCHAR, opponent VARCHAR)
SELECT location FROM table_name_72 WHERE opponent = "jimmy smith"
### Context: CREATE TABLE table_name_72 (location VARCHAR, opponent VARCHAR) ### Question: What location is Jimmy Smith fighting in? ### Answer: SELECT location FROM table_name_72 WHERE opponent = "jimmy smith"
What is the away score with a record of 7-4, win% of 0.637, and 2010 season?
CREATE TABLE table_name_22 (away VARCHAR, season VARCHAR, record VARCHAR, win__percentage VARCHAR)
SELECT away FROM table_name_22 WHERE record = "7-4" AND win__percentage = 0.637 AND season = "2010"
### Context: CREATE TABLE table_name_22 (away VARCHAR, season VARCHAR, record VARCHAR, win__percentage VARCHAR) ### Question: What is the away score with a record of 7-4, win% of 0.637, and 2010 season? ### Answer: SELECT away FROM table_name_22 WHERE record = "7-4" AND win__percentage = 0.637 AND season = "2010"
What was the lowest win% with an away score of 3-2 in 2011 season?
CREATE TABLE table_name_53 (win__percentage INTEGER, away VARCHAR, season VARCHAR)
SELECT MIN(win__percentage) FROM table_name_53 WHERE away = "3-2" AND season = "2011"
### Context: CREATE TABLE table_name_53 (win__percentage INTEGER, away VARCHAR, season VARCHAR) ### Question: What was the lowest win% with an away score of 3-2 in 2011 season? ### Answer: SELECT MIN(win__percentage) FROM table_name_53 WHERE away = "3-2" AND season = "2011"
What is the lowest win% in the 1999-2013 season?
CREATE TABLE table_name_66 (win__percentage INTEGER, season VARCHAR)
SELECT MIN(win__percentage) FROM table_name_66 WHERE season = "1999-2013"
### Context: CREATE TABLE table_name_66 (win__percentage INTEGER, season VARCHAR) ### Question: What is the lowest win% in the 1999-2013 season? ### Answer: SELECT MIN(win__percentage) FROM table_name_66 WHERE season = "1999-2013"
What's the record during 1925?
CREATE TABLE table_name_99 (record VARCHAR, year VARCHAR)
SELECT record FROM table_name_99 WHERE year = 1925
### Context: CREATE TABLE table_name_99 (record VARCHAR, year VARCHAR) ### Question: What's the record during 1925? ### Answer: SELECT record FROM table_name_99 WHERE year = 1925
What is the earliest year that the discus throw event occur?
CREATE TABLE table_name_2 (year INTEGER, event VARCHAR)
SELECT MIN(year) FROM table_name_2 WHERE event = "discus throw"
### Context: CREATE TABLE table_name_2 (year INTEGER, event VARCHAR) ### Question: What is the earliest year that the discus throw event occur? ### Answer: SELECT MIN(year) FROM table_name_2 WHERE event = "discus throw"
What Haydon had a 33 Ben-Tahir?
CREATE TABLE table_name_68 (haydon VARCHAR, ben_tahir VARCHAR)
SELECT haydon FROM table_name_68 WHERE ben_tahir = "33"
### Context: CREATE TABLE table_name_68 (haydon VARCHAR, ben_tahir VARCHAR) ### Question: What Haydon had a 33 Ben-Tahir? ### Answer: SELECT haydon FROM table_name_68 WHERE ben_tahir = "33"
What Gauthier had a 15 Liscumb?
CREATE TABLE table_name_65 (gauthier VARCHAR, liscumb VARCHAR)
SELECT gauthier FROM table_name_65 WHERE liscumb = "15"
### Context: CREATE TABLE table_name_65 (gauthier VARCHAR, liscumb VARCHAR) ### Question: What Gauthier had a 15 Liscumb? ### Answer: SELECT gauthier FROM table_name_65 WHERE liscumb = "15"
What Ben-Tahir has a 6 Liscumb and 3 Libweshya?
CREATE TABLE table_name_82 (ben_tahir VARCHAR, liscumb VARCHAR, libweshya VARCHAR)
SELECT ben_tahir FROM table_name_82 WHERE liscumb = "6" AND libweshya = "3"
### Context: CREATE TABLE table_name_82 (ben_tahir VARCHAR, liscumb VARCHAR, libweshya VARCHAR) ### Question: What Ben-Tahir has a 6 Liscumb and 3 Libweshya? ### Answer: SELECT ben_tahir FROM table_name_82 WHERE liscumb = "6" AND libweshya = "3"
What Bello has a 27 Liscumb and 6539 Libweshya?
CREATE TABLE table_name_35 (bello VARCHAR, liscumb VARCHAR, libweshya VARCHAR)
SELECT bello FROM table_name_35 WHERE liscumb = "27" AND libweshya = "6539"
### Context: CREATE TABLE table_name_35 (bello VARCHAR, liscumb VARCHAR, libweshya VARCHAR) ### Question: What Bello has a 27 Liscumb and 6539 Libweshya? ### Answer: SELECT bello FROM table_name_35 WHERE liscumb = "27" AND libweshya = "6539"
What is the Furtenbacher with a 6 Liscumb, 10 Lawrance, and a 24 Ben-Tahir?
CREATE TABLE table_name_6 (furtenbacher VARCHAR, ben_tahir VARCHAR, liscumb VARCHAR, lawrance VARCHAR)
SELECT furtenbacher FROM table_name_6 WHERE liscumb = "6" AND lawrance = "10" AND ben_tahir = "24"
### Context: CREATE TABLE table_name_6 (furtenbacher VARCHAR, ben_tahir VARCHAR, liscumb VARCHAR, lawrance VARCHAR) ### Question: What is the Furtenbacher with a 6 Liscumb, 10 Lawrance, and a 24 Ben-Tahir? ### Answer: SELECT furtenbacher FROM table_name_6 WHERE liscumb = "6" AND lawrance = "10" AND ben_tahir = "24"
What is the Ben-Tahir with a 3269 Doucet?
CREATE TABLE table_name_92 (ben_tahir VARCHAR, doucet VARCHAR)
SELECT ben_tahir FROM table_name_92 WHERE doucet = "3269"
### Context: CREATE TABLE table_name_92 (ben_tahir VARCHAR, doucet VARCHAR) ### Question: What is the Ben-Tahir with a 3269 Doucet? ### Answer: SELECT ben_tahir FROM table_name_92 WHERE doucet = "3269"
How many attended the game that was a Loss of k. gross (1-1)?
CREATE TABLE table_name_68 (attendance INTEGER, loss VARCHAR)
SELECT MAX(attendance) FROM table_name_68 WHERE loss = "k. gross (1-1)"
### Context: CREATE TABLE table_name_68 (attendance INTEGER, loss VARCHAR) ### Question: How many attended the game that was a Loss of k. gross (1-1)? ### Answer: SELECT MAX(attendance) FROM table_name_68 WHERE loss = "k. gross (1-1)"
What is the score of the game with tie number 65?
CREATE TABLE table_name_23 (score VARCHAR, tie_no VARCHAR)
SELECT score FROM table_name_23 WHERE tie_no = "65"
### Context: CREATE TABLE table_name_23 (score VARCHAR, tie_no VARCHAR) ### Question: What is the score of the game with tie number 65? ### Answer: SELECT score FROM table_name_23 WHERE tie_no = "65"
Which Home team had attendance 160?
CREATE TABLE table_name_91 (home_team VARCHAR, attendance VARCHAR)
SELECT home_team FROM table_name_91 WHERE attendance = "160"
### Context: CREATE TABLE table_name_91 (home_team VARCHAR, attendance VARCHAR) ### Question: Which Home team had attendance 160? ### Answer: SELECT home_team FROM table_name_91 WHERE attendance = "160"
What is the record of the game with a decision of Ellis and Vancouver as the visitor?
CREATE TABLE table_name_79 (record VARCHAR, decision VARCHAR, visitor VARCHAR)
SELECT record FROM table_name_79 WHERE decision = "ellis" AND visitor = "vancouver"
### Context: CREATE TABLE table_name_79 (record VARCHAR, decision VARCHAR, visitor VARCHAR) ### Question: What is the record of the game with a decision of Ellis and Vancouver as the visitor? ### Answer: SELECT record FROM table_name_79 WHERE decision = "ellis" AND visitor = "vancouver"
What is the record of the game with Mason as the decision and Nashville as the home team?
CREATE TABLE table_name_45 (record VARCHAR, decision VARCHAR, home VARCHAR)
SELECT record FROM table_name_45 WHERE decision = "mason" AND home = "nashville"
### Context: CREATE TABLE table_name_45 (record VARCHAR, decision VARCHAR, home VARCHAR) ### Question: What is the record of the game with Mason as the decision and Nashville as the home team? ### Answer: SELECT record FROM table_name_45 WHERE decision = "mason" AND home = "nashville"
What is the date with Ellis as the decision and St. Louis as the visitor?
CREATE TABLE table_name_27 (date VARCHAR, decision VARCHAR, visitor VARCHAR)
SELECT date FROM table_name_27 WHERE decision = "ellis" AND visitor = "st. louis"
### Context: CREATE TABLE table_name_27 (date VARCHAR, decision VARCHAR, visitor VARCHAR) ### Question: What is the date with Ellis as the decision and St. Louis as the visitor? ### Answer: SELECT date FROM table_name_27 WHERE decision = "ellis" AND visitor = "st. louis"
Which visiting team had a record of 31–31–8?
CREATE TABLE table_name_67 (visitor VARCHAR, record VARCHAR)
SELECT visitor FROM table_name_67 WHERE record = "31–31–8"
### Context: CREATE TABLE table_name_67 (visitor VARCHAR, record VARCHAR) ### Question: Which visiting team had a record of 31–31–8? ### Answer: SELECT visitor FROM table_name_67 WHERE record = "31–31–8"
Where is Jeff Lebo's hometown?
CREATE TABLE table_name_45 (hometown VARCHAR, player VARCHAR)
SELECT hometown FROM table_name_45 WHERE player = "jeff lebo"
### Context: CREATE TABLE table_name_45 (hometown VARCHAR, player VARCHAR) ### Question: Where is Jeff Lebo's hometown? ### Answer: SELECT hometown FROM table_name_45 WHERE player = "jeff lebo"
Who is the player from Houston, TX?
CREATE TABLE table_name_49 (player VARCHAR, hometown VARCHAR)
SELECT player FROM table_name_49 WHERE hometown = "houston, tx"
### Context: CREATE TABLE table_name_49 (player VARCHAR, hometown VARCHAR) ### Question: Who is the player from Houston, TX? ### Answer: SELECT player FROM table_name_49 WHERE hometown = "houston, tx"
What is the earliest year with an entry from Rotary Watches Stanley BRM and a BRM P207 with more than 0 points?
CREATE TABLE table_name_99 (year INTEGER, points VARCHAR, entrant VARCHAR, chassis VARCHAR)
SELECT MIN(year) FROM table_name_99 WHERE entrant = "rotary watches stanley brm" AND chassis = "brm p207" AND points > 0
### Context: CREATE TABLE table_name_99 (year INTEGER, points VARCHAR, entrant VARCHAR, chassis VARCHAR) ### Question: What is the earliest year with an entry from Rotary Watches Stanley BRM and a BRM P207 with more than 0 points? ### Answer: SELECT MIN(year) FROM table_name_99 WHERE entrant = "rotary watches stanley brm" AND chassis = "brm p207" AND points > 0
How many points were there in a year earlier than 1977, a Cosworth V8 engine, and an entry from HB Bewaking alarm systems?
CREATE TABLE table_name_68 (points VARCHAR, entrant VARCHAR, year VARCHAR, engine VARCHAR)
SELECT points FROM table_name_68 WHERE year < 1977 AND engine = "cosworth v8" AND entrant = "hb bewaking alarm systems"
### Context: CREATE TABLE table_name_68 (points VARCHAR, entrant VARCHAR, year VARCHAR, engine VARCHAR) ### Question: How many points were there in a year earlier than 1977, a Cosworth V8 engine, and an entry from HB Bewaking alarm systems? ### Answer: SELECT points FROM table_name_68 WHERE year < 1977 AND engine = "cosworth v8" AND entrant = "hb bewaking alarm systems"
What is the report for the race of Argentine Grand Prix?
CREATE TABLE table_name_88 (report VARCHAR, race VARCHAR)
SELECT report FROM table_name_88 WHERE race = "argentine grand prix"
### Context: CREATE TABLE table_name_88 (report VARCHAR, race VARCHAR) ### Question: What is the report for the race of Argentine Grand Prix? ### Answer: SELECT report FROM table_name_88 WHERE race = "argentine grand prix"
What is the Tyre when Jerry Hoyt was the pole position?
CREATE TABLE table_name_22 (tyre VARCHAR, pole_position VARCHAR)
SELECT tyre FROM table_name_22 WHERE pole_position = "jerry hoyt"
### Context: CREATE TABLE table_name_22 (tyre VARCHAR, pole_position VARCHAR) ### Question: What is the Tyre when Jerry Hoyt was the pole position? ### Answer: SELECT tyre FROM table_name_22 WHERE pole_position = "jerry hoyt"
Who was the constructor when Eugenio Castellotti was the pole position and the race had a C tyre?
CREATE TABLE table_name_89 (constructor VARCHAR, tyre VARCHAR, pole_position VARCHAR)
SELECT constructor FROM table_name_89 WHERE tyre = "c" AND pole_position = "eugenio castellotti"
### Context: CREATE TABLE table_name_89 (constructor VARCHAR, tyre VARCHAR, pole_position VARCHAR) ### Question: Who was the constructor when Eugenio Castellotti was the pole position and the race had a C tyre? ### Answer: SELECT constructor FROM table_name_89 WHERE tyre = "c" AND pole_position = "eugenio castellotti"
What was the fastest lap time at the British Grand Prix with Mercedes as the constructor?
CREATE TABLE table_name_2 (fastest_lap VARCHAR, constructor VARCHAR, race VARCHAR)
SELECT fastest_lap FROM table_name_2 WHERE constructor = "mercedes" AND race = "british grand prix"
### Context: CREATE TABLE table_name_2 (fastest_lap VARCHAR, constructor VARCHAR, race VARCHAR) ### Question: What was the fastest lap time at the British Grand Prix with Mercedes as the constructor? ### Answer: SELECT fastest_lap FROM table_name_2 WHERE constructor = "mercedes" AND race = "british grand prix"
Who scored the High points in the game with High rebounds by Nick Collison (14)?
CREATE TABLE table_name_20 (high_points VARCHAR, high_rebounds VARCHAR)
SELECT high_points FROM table_name_20 WHERE high_rebounds = "nick collison (14)"
### Context: CREATE TABLE table_name_20 (high_points VARCHAR, high_rebounds VARCHAR) ### Question: Who scored the High points in the game with High rebounds by Nick Collison (14)? ### Answer: SELECT high_points FROM table_name_20 WHERE high_rebounds = "nick collison (14)"
What is henry transfer fee at fcbarcelona.cat in fra?
CREATE TABLE table_name_41 (transfer_fee VARCHAR, name VARCHAR, source VARCHAR, country VARCHAR)
SELECT transfer_fee FROM table_name_41 WHERE source = "fcbarcelona.cat" AND country = "fra" AND name = "henry"
### Context: CREATE TABLE table_name_41 (transfer_fee VARCHAR, name VARCHAR, source VARCHAR, country VARCHAR) ### Question: What is henry transfer fee at fcbarcelona.cat in fra? ### Answer: SELECT transfer_fee FROM table_name_41 WHERE source = "fcbarcelona.cat" AND country = "fra" AND name = "henry"
What was the Grid with a hydraulics time/required?
CREATE TABLE table_name_57 (grid VARCHAR, time_retired VARCHAR)
SELECT grid FROM table_name_57 WHERE time_retired = "hydraulics"
### Context: CREATE TABLE table_name_57 (grid VARCHAR, time_retired VARCHAR) ### Question: What was the Grid with a hydraulics time/required? ### Answer: SELECT grid FROM table_name_57 WHERE time_retired = "hydraulics"
What is the grid with a Toyota constructor and +1:09.718 as time/retired?
CREATE TABLE table_name_24 (grid VARCHAR, constructor VARCHAR, time_retired VARCHAR)
SELECT grid FROM table_name_24 WHERE constructor = "toyota" AND time_retired = "+1:09.718"
### Context: CREATE TABLE table_name_24 (grid VARCHAR, constructor VARCHAR, time_retired VARCHAR) ### Question: What is the grid with a Toyota constructor and +1:09.718 as time/retired? ### Answer: SELECT grid FROM table_name_24 WHERE constructor = "toyota" AND time_retired = "+1:09.718"
What is the grid with 71 laps and the driver, Allan McNish.
CREATE TABLE table_name_55 (grid VARCHAR, laps VARCHAR, driver VARCHAR)
SELECT grid FROM table_name_55 WHERE laps = "71" AND driver = "allan mcnish"
### Context: CREATE TABLE table_name_55 (grid VARCHAR, laps VARCHAR, driver VARCHAR) ### Question: What is the grid with 71 laps and the driver, Allan McNish. ### Answer: SELECT grid FROM table_name_55 WHERE laps = "71" AND driver = "allan mcnish"
How many laps did Jacques Villeneuve have?
CREATE TABLE table_name_60 (laps VARCHAR, driver VARCHAR)
SELECT laps FROM table_name_60 WHERE driver = "jacques villeneuve"
### Context: CREATE TABLE table_name_60 (laps VARCHAR, driver VARCHAR) ### Question: How many laps did Jacques Villeneuve have? ### Answer: SELECT laps FROM table_name_60 WHERE driver = "jacques villeneuve"
What is the constructor of the driver Heinz-Harald Frentzen?
CREATE TABLE table_name_50 (constructor VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_50 WHERE driver = "heinz-harald frentzen"
### Context: CREATE TABLE table_name_50 (constructor VARCHAR, driver VARCHAR) ### Question: What is the constructor of the driver Heinz-Harald Frentzen? ### Answer: SELECT constructor FROM table_name_50 WHERE driver = "heinz-harald frentzen"
Tell me the rank for year of 2012 and out of larger than 176
CREATE TABLE table_name_66 (rank VARCHAR, year VARCHAR, out_of VARCHAR)
SELECT rank FROM table_name_66 WHERE year = "2012" AND out_of > 176
### Context: CREATE TABLE table_name_66 (rank VARCHAR, year VARCHAR, out_of VARCHAR) ### Question: Tell me the rank for year of 2012 and out of larger than 176 ### Answer: SELECT rank FROM table_name_66 WHERE year = "2012" AND out_of > 176
Tell me the year for rank more than 35 and out of 167
CREATE TABLE table_name_11 (year VARCHAR, rank VARCHAR, out_of VARCHAR)
SELECT year FROM table_name_11 WHERE rank > 35 AND out_of = 167
### Context: CREATE TABLE table_name_11 (year VARCHAR, rank VARCHAR, out_of VARCHAR) ### Question: Tell me the year for rank more than 35 and out of 167 ### Answer: SELECT year FROM table_name_11 WHERE rank > 35 AND out_of = 167
How many UCI points did Rabobank score?
CREATE TABLE table_name_88 (uci_points VARCHAR, team VARCHAR)
SELECT uci_points FROM table_name_88 WHERE team = "rabobank"
### Context: CREATE TABLE table_name_88 (uci_points VARCHAR, team VARCHAR) ### Question: How many UCI points did Rabobank score? ### Answer: SELECT uci_points FROM table_name_88 WHERE team = "rabobank"
What team in France had 15 UCi points?
CREATE TABLE table_name_81 (team VARCHAR, country VARCHAR, uci_points VARCHAR)
SELECT team FROM table_name_81 WHERE country = "france" AND uci_points = "15"
### Context: CREATE TABLE table_name_81 (team VARCHAR, country VARCHAR, uci_points VARCHAR) ### Question: What team in France had 15 UCi points? ### Answer: SELECT team FROM table_name_81 WHERE country = "france" AND uci_points = "15"
Which country has assets of x, an inception of 2007, and an abbreviation of adic?
CREATE TABLE table_name_24 (country VARCHAR, abbreviation VARCHAR, assets_us$billion VARCHAR, inception VARCHAR)
SELECT country FROM table_name_24 WHERE assets_us$billion = "x" AND inception = "2007" AND abbreviation = "adic"
### Context: CREATE TABLE table_name_24 (country VARCHAR, abbreviation VARCHAR, assets_us$billion VARCHAR, inception VARCHAR) ### Question: Which country has assets of x, an inception of 2007, and an abbreviation of adic? ### Answer: SELECT country FROM table_name_24 WHERE assets_us$billion = "x" AND inception = "2007" AND abbreviation = "adic"
What's the abbreviation for libya?
CREATE TABLE table_name_88 (abbreviation VARCHAR, country VARCHAR)
SELECT abbreviation FROM table_name_88 WHERE country = "libya"
### Context: CREATE TABLE table_name_88 (abbreviation VARCHAR, country VARCHAR) ### Question: What's the abbreviation for libya? ### Answer: SELECT abbreviation FROM table_name_88 WHERE country = "libya"
What's the origin for the country abbreviated atf?
CREATE TABLE table_name_1 (origin VARCHAR, abbreviation VARCHAR)
SELECT origin FROM table_name_1 WHERE abbreviation = "atf"
### Context: CREATE TABLE table_name_1 (origin VARCHAR, abbreviation VARCHAR) ### Question: What's the origin for the country abbreviated atf? ### Answer: SELECT origin FROM table_name_1 WHERE abbreviation = "atf"
What's the inception for the country with 25.5 billion USD in assets and an abbreviation of psf?
CREATE TABLE table_name_47 (inception VARCHAR, assets_us$billion VARCHAR, abbreviation VARCHAR)
SELECT inception FROM table_name_47 WHERE assets_us$billion = "25.5" AND abbreviation = "psf"
### Context: CREATE TABLE table_name_47 (inception VARCHAR, assets_us$billion VARCHAR, abbreviation VARCHAR) ### Question: What's the inception for the country with 25.5 billion USD in assets and an abbreviation of psf? ### Answer: SELECT inception FROM table_name_47 WHERE assets_us$billion = "25.5" AND abbreviation = "psf"
Which country has an abbreviation of kia?
CREATE TABLE table_name_61 (country VARCHAR, abbreviation VARCHAR)
SELECT country FROM table_name_61 WHERE abbreviation = "kia"
### Context: CREATE TABLE table_name_61 (country VARCHAR, abbreviation VARCHAR) ### Question: Which country has an abbreviation of kia? ### Answer: SELECT country FROM table_name_61 WHERE abbreviation = "kia"
What's the abbreviation for the country with an inception of 1999 and US$Billion assets of 7.1?
CREATE TABLE table_name_79 (abbreviation VARCHAR, inception VARCHAR, assets_us$billion VARCHAR)
SELECT abbreviation FROM table_name_79 WHERE inception = "1999" AND assets_us$billion = "7.1"
### Context: CREATE TABLE table_name_79 (abbreviation VARCHAR, inception VARCHAR, assets_us$billion VARCHAR) ### Question: What's the abbreviation for the country with an inception of 1999 and US$Billion assets of 7.1? ### Answer: SELECT abbreviation FROM table_name_79 WHERE inception = "1999" AND assets_us$billion = "7.1"
What was the opponent of the home team of essendon?
CREATE TABLE table_name_47 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_47 WHERE home_team = "essendon"
### Context: CREATE TABLE table_name_47 (away_team VARCHAR, home_team VARCHAR) ### Question: What was the opponent of the home team of essendon? ### Answer: SELECT away_team FROM table_name_47 WHERE home_team = "essendon"
Tell me the cast for b. reeves eason and joseph kane
CREATE TABLE table_name_80 (cast VARCHAR, director VARCHAR)
SELECT cast FROM table_name_80 WHERE director = "b. reeves eason and joseph kane"
### Context: CREATE TABLE table_name_80 (cast VARCHAR, director VARCHAR) ### Question: Tell me the cast for b. reeves eason and joseph kane ### Answer: SELECT cast FROM table_name_80 WHERE director = "b. reeves eason and joseph kane"
I want the director for heroes of the wild
CREATE TABLE table_name_29 (director VARCHAR, serial_title VARCHAR)
SELECT director FROM table_name_29 WHERE serial_title = "heroes of the wild"
### Context: CREATE TABLE table_name_29 (director VARCHAR, serial_title VARCHAR) ### Question: I want the director for heroes of the wild ### Answer: SELECT director FROM table_name_29 WHERE serial_title = "heroes of the wild"
I want the year for the three musketeers
CREATE TABLE table_name_13 (year VARCHAR, serial_title VARCHAR)
SELECT year FROM table_name_13 WHERE serial_title = "the three musketeers"
### Context: CREATE TABLE table_name_13 (year VARCHAR, serial_title VARCHAR) ### Question: I want the year for the three musketeers ### Answer: SELECT year FROM table_name_13 WHERE serial_title = "the three musketeers"
I want the cast for director of colbert clark and armand schaefer for burn 'em up barnes
CREATE TABLE table_name_75 (cast VARCHAR, director VARCHAR, serial_title VARCHAR)
SELECT cast FROM table_name_75 WHERE director = "colbert clark and armand schaefer" AND serial_title = "burn 'em up barnes"
### Context: CREATE TABLE table_name_75 (cast VARCHAR, director VARCHAR, serial_title VARCHAR) ### Question: I want the cast for director of colbert clark and armand schaefer for burn 'em up barnes ### Answer: SELECT cast FROM table_name_75 WHERE director = "colbert clark and armand schaefer" AND serial_title = "burn 'em up barnes"