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