text
stringlengths 114
1.06k
|
---|
### 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" ### context: CREATE TABLE table_name_50 (laps INTEGER, driver 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 ### context: CREATE TABLE table_name_23 (driver VARCHAR, laps VARCHAR, grid 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" ### context: CREATE TABLE table_name_76 (illustration VARCHAR, design VARCHAR, first_day_cover_cancellation 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" ### context: CREATE TABLE table_name_3 (date_of_issue VARCHAR, theme 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" ### context: CREATE TABLE table_name_55 (theme VARCHAR, design 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" ### context: CREATE TABLE table_name_11 (paper_type VARCHAR, first_day_cover_cancellation 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" ### context: CREATE TABLE table_name_51 (paper_type VARCHAR, illustration 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" ### context: CREATE TABLE table_name_28 (theme VARCHAR, paper_type VARCHAR, date_of_issue 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" ### context: CREATE TABLE table_name_73 (tie_no VARCHAR, away_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" ### context: CREATE TABLE table_name_5 (away_team VARCHAR, home_team 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" ### context: CREATE TABLE table_name_76 (home_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" ### context: CREATE TABLE table_name_33 (away_team VARCHAR, tie_no 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 ### context: CREATE TABLE table_name_50 (goals_for INTEGER, wins VARCHAR, losses VARCHAR) |
### 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 ### context: CREATE TABLE table_name_37 (losses INTEGER, games_played INTEGER) |
### 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" ### context: CREATE TABLE table_name_73 (fleet_size VARCHAR, class 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" ### context: CREATE TABLE table_name_64 (introduced VARCHAR, type 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" ### context: CREATE TABLE table_name_3 (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" ### context: CREATE TABLE table_name_87 (fleet_size INTEGER, type VARCHAR, introduced 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 ### context: CREATE TABLE table_name_65 (viewers__m_ INTEGER, air_date VARCHAR, rating VARCHAR) |
### question: Which round has a car with a chassis of sf01? ### answer: SELECT rounds FROM table_name_20 WHERE chassis = "sf01" ### context: CREATE TABLE table_name_20 (rounds VARCHAR, chassis 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 ### context: CREATE TABLE table_name_22 (country VARCHAR, swimsuit VARCHAR, average VARCHAR, interview 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 ### context: CREATE TABLE table_name_57 (evening_gown VARCHAR, swimsuit VARCHAR, average 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 ### context: CREATE TABLE table_name_42 (average INTEGER, evening_gown VARCHAR, interview 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 ### context: CREATE TABLE table_name_31 (swimsuit INTEGER, interview VARCHAR, average VARCHAR, country 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 ### context: CREATE TABLE table_name_99 (average INTEGER, interview VARCHAR, swimsuit 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" ### context: CREATE TABLE table_name_90 (evening_gown VARCHAR, swimsuit VARCHAR, country 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 ### context: CREATE TABLE table_name_51 (points_awarded__platinum_ INTEGER, points_awarded__gold_ VARCHAR, points_awarded__silver_ 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" ### context: CREATE TABLE table_name_50 (tyre VARCHAR, pole_position VARCHAR, race 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" ### context: CREATE TABLE table_name_16 (circuit VARCHAR, fastest_lap VARCHAR, tyre VARCHAR, pole_position VARCHAR) |
### question: What was the circuit when Jochen Rindt won? ### answer: SELECT circuit FROM table_name_28 WHERE winning_driver = "jochen rindt" ### context: CREATE TABLE table_name_28 (circuit VARCHAR, winning_driver VARCHAR) |
### question: What tyre was used in Kyalami? ### answer: SELECT tyre FROM table_name_81 WHERE circuit = "kyalami" ### context: CREATE TABLE table_name_81 (tyre VARCHAR, circuit VARCHAR) |
### question: Which driver had a grid number of 10? ### answer: SELECT driver FROM table_name_11 WHERE grid = 10 ### context: CREATE TABLE table_name_11 (driver VARCHAR, grid 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" ### context: CREATE TABLE table_name_55 (constructor VARCHAR, grid VARCHAR, time_retired 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" ### context: CREATE TABLE table_name_22 (constructor VARCHAR, driver VARCHAR, time_retired VARCHAR, grid VARCHAR) |
### question: What was the record on May 20? ### answer: SELECT record FROM table_name_64 WHERE date = "may 20" ### context: CREATE TABLE table_name_64 (record VARCHAR, date 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" ### context: CREATE TABLE table_name_70 (height_in_ft VARCHAR, no_s_ 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" ### context: CREATE TABLE table_name_27 (school_club_team_country VARCHAR, years_for_rockets 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" ### context: CREATE TABLE table_name_48 (player VARCHAR, position VARCHAR, hometown 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" ### context: CREATE TABLE table_name_7 (mlb_draft 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" ### context: CREATE TABLE table_name_26 (position VARCHAR, school VARCHAR) |
### question: Which position has a Player of chad hutchinson? ### answer: 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 School of petal high school? ### answer: SELECT position FROM table_name_71 WHERE school = "petal high school" ### context: CREATE TABLE table_name_71 (position VARCHAR, school VARCHAR) |
### question: What is the date of week 8? ### answer: SELECT date FROM table_name_23 WHERE week = 8 ### context: CREATE TABLE table_name_23 (date VARCHAR, week VARCHAR) |
### question: Which week has the lowest attendance of 48,102? ### answer: SELECT MIN(week) FROM table_name_4 WHERE attendance = 48 OFFSET 102 ### context: CREATE TABLE table_name_4 (week INTEGER, attendance VARCHAR) |
### question: What was the year with runs of 144? ### answer: SELECT year FROM table_name_68 WHERE runs = "144" ### context: CREATE TABLE table_name_68 (year VARCHAR, runs VARCHAR) |
### question: Name the place where adelaide oval is ### answer: 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 average zone for waddon marsh tram stop ### answer: 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 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 ### context: CREATE TABLE table_name_58 (stations VARCHAR, platforms VARCHAR, managed_by VARCHAR, zone 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" ### context: CREATE TABLE table_name_41 (platforms VARCHAR, stations 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 ### context: CREATE TABLE table_name_54 (zone INTEGER, stations VARCHAR, platforms VARCHAR) |
### question: What is Bob Ostovich's opponents record? ### answer: SELECT record FROM table_name_20 WHERE opponent = "bob ostovich" ### context: CREATE TABLE table_name_20 (record VARCHAR, opponent VARCHAR) |
### question: What location is Jimmy Smith fighting in? ### answer: SELECT location FROM table_name_72 WHERE opponent = "jimmy smith" ### context: CREATE TABLE table_name_72 (location VARCHAR, opponent 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" ### context: CREATE TABLE table_name_22 (away VARCHAR, season VARCHAR, record VARCHAR, win__percentage 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" ### context: CREATE TABLE table_name_53 (win__percentage INTEGER, away VARCHAR, 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" ### context: CREATE TABLE table_name_66 (win__percentage INTEGER, season VARCHAR) |
### question: What's the record during 1925? ### answer: SELECT record FROM table_name_99 WHERE year = 1925 ### context: CREATE TABLE table_name_99 (record VARCHAR, year 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" ### context: CREATE TABLE table_name_2 (year INTEGER, event VARCHAR) |
### question: What Haydon had a 33 Ben-Tahir? ### answer: SELECT haydon FROM table_name_68 WHERE ben_tahir = "33" ### context: CREATE TABLE table_name_68 (haydon VARCHAR, ben_tahir VARCHAR) |
### question: What Gauthier had a 15 Liscumb? ### answer: SELECT gauthier FROM table_name_65 WHERE liscumb = "15" ### context: CREATE TABLE table_name_65 (gauthier VARCHAR, liscumb 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" ### context: CREATE TABLE table_name_82 (ben_tahir 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" ### context: CREATE TABLE table_name_35 (bello VARCHAR, liscumb VARCHAR, libweshya 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" ### context: CREATE TABLE table_name_6 (furtenbacher VARCHAR, ben_tahir VARCHAR, liscumb VARCHAR, lawrance VARCHAR) |
### question: What is the Ben-Tahir with a 3269 Doucet? ### answer: SELECT ben_tahir FROM table_name_92 WHERE doucet = "3269" ### context: CREATE TABLE table_name_92 (ben_tahir VARCHAR, doucet 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)" ### context: CREATE TABLE table_name_68 (attendance INTEGER, loss VARCHAR) |
### question: What is the score of the game with tie number 65? ### answer: SELECT score FROM table_name_23 WHERE tie_no = "65" ### context: CREATE TABLE table_name_23 (score VARCHAR, tie_no VARCHAR) |
### question: Which Home team had attendance 160? ### answer: SELECT home_team FROM table_name_91 WHERE attendance = "160" ### context: CREATE TABLE table_name_91 (home_team VARCHAR, attendance 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" ### context: CREATE TABLE table_name_79 (record VARCHAR, decision VARCHAR, visitor 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" ### context: CREATE TABLE table_name_45 (record VARCHAR, decision VARCHAR, home 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" ### context: CREATE TABLE table_name_27 (date VARCHAR, decision VARCHAR, visitor VARCHAR) |
### question: Which visiting team had a record of 31β31β8? ### answer: SELECT visitor FROM table_name_67 WHERE record = "31β31β8" ### context: CREATE TABLE table_name_67 (visitor VARCHAR, record VARCHAR) |
### question: Where is Jeff Lebo's hometown? ### answer: SELECT hometown FROM table_name_45 WHERE player = "jeff lebo" ### context: CREATE TABLE table_name_45 (hometown VARCHAR, player VARCHAR) |
### question: Who is the player from Houston, TX? ### answer: SELECT player FROM table_name_49 WHERE hometown = "houston, tx" ### context: CREATE TABLE table_name_49 (player VARCHAR, hometown 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 ### context: CREATE TABLE table_name_99 (year INTEGER, points VARCHAR, entrant VARCHAR, chassis 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" ### context: CREATE TABLE table_name_68 (points VARCHAR, entrant VARCHAR, year VARCHAR, engine 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" ### context: CREATE TABLE table_name_88 (report VARCHAR, race 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" ### context: CREATE TABLE table_name_22 (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" ### context: CREATE TABLE table_name_89 (constructor VARCHAR, tyre VARCHAR, pole_position 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" ### context: CREATE TABLE table_name_2 (fastest_lap VARCHAR, constructor VARCHAR, race 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)" ### context: CREATE TABLE table_name_20 (high_points VARCHAR, high_rebounds 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" ### context: CREATE TABLE table_name_41 (transfer_fee VARCHAR, name VARCHAR, source VARCHAR, country VARCHAR) |
### question: What was the Grid with a hydraulics time/required? ### answer: SELECT grid FROM table_name_57 WHERE time_retired = "hydraulics" ### context: CREATE TABLE table_name_57 (grid 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" ### context: CREATE TABLE table_name_24 (grid VARCHAR, constructor VARCHAR, time_retired 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" ### context: CREATE TABLE table_name_55 (grid VARCHAR, laps VARCHAR, driver VARCHAR) |
### question: How many laps did Jacques Villeneuve have? ### answer: SELECT laps FROM table_name_60 WHERE driver = "jacques villeneuve" ### context: CREATE TABLE table_name_60 (laps 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" ### context: CREATE TABLE table_name_50 (constructor VARCHAR, driver 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 ### context: CREATE TABLE table_name_66 (rank VARCHAR, year 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 ### context: CREATE TABLE table_name_11 (year VARCHAR, rank VARCHAR, out_of VARCHAR) |
### question: How many UCI points did Rabobank score? ### answer: SELECT uci_points FROM table_name_88 WHERE team = "rabobank" ### context: CREATE TABLE table_name_88 (uci_points VARCHAR, team VARCHAR) |
### question: What team in France had 15 UCi points? ### answer: 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: 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" ### context: CREATE TABLE table_name_24 (country VARCHAR, abbreviation VARCHAR, assets_us$billion VARCHAR, inception VARCHAR) |
### question: What's the abbreviation for libya? ### answer: SELECT abbreviation FROM table_name_88 WHERE country = "libya" ### context: CREATE TABLE table_name_88 (abbreviation VARCHAR, country VARCHAR) |
### question: What's the origin for the country abbreviated atf? ### answer: SELECT origin FROM table_name_1 WHERE abbreviation = "atf" ### context: CREATE TABLE table_name_1 (origin 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" ### context: CREATE TABLE table_name_47 (inception VARCHAR, assets_us$billion VARCHAR, abbreviation VARCHAR) |
### question: Which country has an abbreviation of kia? ### answer: SELECT country FROM table_name_61 WHERE abbreviation = "kia" ### context: CREATE TABLE table_name_61 (country VARCHAR, abbreviation 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" ### context: CREATE TABLE table_name_79 (abbreviation VARCHAR, inception VARCHAR, assets_us$billion VARCHAR) |
### question: What was the opponent of the home team of essendon? ### answer: SELECT away_team FROM table_name_47 WHERE home_team = "essendon" ### context: CREATE TABLE table_name_47 (away_team VARCHAR, home_team 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" ### context: CREATE TABLE table_name_80 (cast VARCHAR, director 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" ### context: CREATE TABLE table_name_29 (director 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" ### context: CREATE TABLE table_name_13 (year 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" ### context: CREATE TABLE table_name_75 (cast VARCHAR, director VARCHAR, serial_title VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.