instruction stringlengths 0 990 | input stringlengths 33 7.14k | response stringlengths 2 3.43k | source stringclasses 25
values | text stringlengths 309 7.74k |
|---|---|---|---|---|
What's the rank in West Virginia when the overweight adult was 66.8%? | CREATE TABLE table_66573 (
"State and District of Columbia" text,
"Obese adults" text,
"Overweight (incl. obese) adults" text,
"Obese children and adolescents" text,
"Obesity rank" real
) | SELECT "Obesity rank" FROM table_66573 WHERE "Overweight (incl. obese) adults" = '66.8%' AND "State and District of Columbia" = 'west virginia' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What's the rank in West Virginia when the overweight adult was 66.8%? ### Input: CREATE TABLE table_66573 (
"State and D... |
Which opponent played in 2001/02? | CREATE TABLE table_9251 (
"Rank" text,
"Runs" text,
"Opponent" text,
"Venue" text,
"Season" text
) | SELECT "Opponent" FROM table_9251 WHERE "Season" = '2001/02' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which opponent played in 2001/02? ### Input: CREATE TABLE table_9251 (
"Rank" text,
"Runs" text,
"Opponent" text... |
If the team is Worcester, what is the 2005-2006 points? | CREATE TABLE table_25734 (
"Rank" real,
"Team" text,
"Total Points" real,
"2008-09 Points" real,
"2007-08 Points" real,
"2006-07 Points" real,
"2005-06 Points" real
) | SELECT "2005-06 Points" FROM table_25734 WHERE "Team" = 'Worcester' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: If the team is Worcester, what is the 2005-2006 points? ### Input: CREATE TABLE table_25734 (
"Rank" real,
"Team" te... |
Which Season has a Skip of Eve Muirhead with a thirs of Jackie Lockhart (e/o) Kelly Wood (w)? | CREATE TABLE table_50533 (
"Season" text,
"Skip" text,
"Third" text,
"Second" text,
"Lead" text
) | SELECT "Season" FROM table_50533 WHERE "Skip" = 'eve muirhead' AND "Third" = 'jackie lockhart (e/o) kelly wood (w)' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which Season has a Skip of Eve Muirhead with a thirs of Jackie Lockhart (e/o) Kelly Wood (w)? ### Input: CREATE TABLE table_... |
What is the time/retired for eddie irvine with a grid of greater than 3? | CREATE TABLE table_56100 (
"Driver" text,
"Constructor" text,
"Laps" real,
"Time/Retired" text,
"Grid" real
) | SELECT "Time/Retired" FROM table_56100 WHERE "Grid" > '3' AND "Driver" = 'eddie irvine' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the time/retired for eddie irvine with a grid of greater than 3? ### Input: CREATE TABLE table_56100 (
"Driver" ... |
What is the percentage of Android use when Windows is 1.15%? | CREATE TABLE table_16675 (
"Source" text,
"Date" text,
"Method" text,
"iOS" text,
"Android" text,
"BlackBerry" text,
"Symbian / Series 40" text,
"Bada" text,
"Windows" text,
"Other" text
) | SELECT "Android" FROM table_16675 WHERE "Windows" = '1.15%' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the percentage of Android use when Windows is 1.15%? ### Input: CREATE TABLE table_16675 (
"Source" text,
"D... |
What's the mean week number when attendance was 63,263? | CREATE TABLE table_7202 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" real
) | SELECT AVG("Week") FROM table_7202 WHERE "Attendance" = '63,263' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What's the mean week number when attendance was 63,263? ### Input: CREATE TABLE table_7202 (
"Week" real,
"Date" tex... |
On what date was the game played where the opponent was Stanford, ranked #5? | CREATE TABLE table_59322 (
"Date" text,
"Time" text,
"Opponent#" text,
"Rank #" text,
"Result" text,
"Attendance" text
) | SELECT "Date" FROM table_59322 WHERE "Rank #" = '5' AND "Opponent#" = 'stanford' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: On what date was the game played where the opponent was Stanford, ranked #5? ### Input: CREATE TABLE table_59322 (
"Date... |
What was the record on April 16? | CREATE TABLE table_34200 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Record" text
) | SELECT "Record" FROM table_34200 WHERE "Date" = 'april 16' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was the record on April 16? ### Input: CREATE TABLE table_34200 (
"Date" text,
"Visitor" text,
"Score" text... |
What number episode in the season had a production code of 334? | CREATE TABLE table_74356 (
"Series #" real,
"Season #" real,
"Title" text,
"Directed by" text,
"Written by" text,
"Original air date" text,
"Prod. code" real,
"U.S. viewers (millions)" text
) | SELECT MAX("Season #") FROM table_74356 WHERE "Prod. code" = '334' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What number episode in the season had a production code of 334? ### Input: CREATE TABLE table_74356 (
"Series #" real,
... |
What team had a high rebound of perkins (9) and a game smaller than 78? | CREATE TABLE table_51237 (
"Game" real,
"Date" text,
"Team" text,
"Score" text,
"High points" text,
"High rebounds" text,
"High assists" text,
"Location Attendance" text,
"Record" text
) | SELECT "Team" FROM table_51237 WHERE "Game" < '78' AND "High rebounds" = 'perkins (9)' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What team had a high rebound of perkins (9) and a game smaller than 78? ### Input: CREATE TABLE table_51237 (
"Game" rea... |
What is the soccer stadium with the varsity name is citadins? | CREATE TABLE table_29453 (
"University" text,
"Varsity Name" text,
"City" text,
"Province" text,
"Founded" real,
"Soccer Stadium" text,
"Stadium Capacity" real
) | SELECT "Soccer Stadium" FROM table_29453 WHERE "Varsity Name" = 'Citadins' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the soccer stadium with the varsity name is citadins? ### Input: CREATE TABLE table_29453 (
"University" text,
... |
Which commander received complement larger than 240 , guns of 66 and ship of revolutie? | CREATE TABLE table_9895 (
"Ship" text,
"Guns" text,
"Commander" text,
"Complement" real,
"Notes" text
) | SELECT "Commander" FROM table_9895 WHERE "Complement" > '240' AND "Guns" = '66' AND "Ship" = 'revolutie' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which commander received complement larger than 240 , guns of 66 and ship of revolutie? ### Input: CREATE TABLE table_9895 (... |
Which player started in 2001? | CREATE TABLE table_74613 (
"Player" text,
"Nationality" text,
"Position" text,
"From" text,
"School/Country" text
) | SELECT "Player" FROM table_74613 WHERE "From" = '2001' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which player started in 2001? ### Input: CREATE TABLE table_74613 (
"Player" text,
"Nationality" text,
"Position... |
What is the total pick number of player curt bennett from canada with a draft before 1976 and a round less than 2? | CREATE TABLE table_12801 (
"Draft" real,
"Round" real,
"Pick" real,
"Player" text,
"Nationality" text
) | SELECT COUNT("Pick") FROM table_12801 WHERE "Nationality" = 'canada' AND "Draft" < '1976' AND "Player" = 'curt bennett' AND "Round" < '2' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the total pick number of player curt bennett from canada with a draft before 1976 and a round less than 2? ### Input... |
What was held in 2003/04 when Former Ranking Tournaments was in 2007/08? | CREATE TABLE table_69202 (
"2003/ 04" text,
"2004/ 05" text,
"2007/ 08" text,
"2009/ 10" text,
"2010/ 11" text,
"2011/ 12" text,
"2012/ 13" text
) | SELECT "2003/ 04" FROM table_69202 WHERE "2007/ 08" = 'former ranking tournaments' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was held in 2003/04 when Former Ranking Tournaments was in 2007/08? ### Input: CREATE TABLE table_69202 (
"2003/ 04... |
Who is the incumbent when the elected year is 2004, the status is re-elected and the party is republican? | CREATE TABLE table_28670 (
"District" real,
"Incumbent" text,
"Party" text,
"Elected" text,
"Status" text,
"2010 Candidates" text
) | SELECT "Incumbent" FROM table_28670 WHERE "Elected" = '2004' AND "Status" = 'Re-elected' AND "Party" = 'Republican' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Who is the incumbent when the elected year is 2004, the status is re-elected and the party is republican? ### Input: CREATE ... |
What is the name of call sign that uses a Frequency MHz of 91.1 fm? | CREATE TABLE table_67337 (
"Call sign" text,
"Frequency MHz" text,
"City of license" text,
"ERP W" real,
"Class" text,
"FCC info" text
) | SELECT "Call sign" FROM table_67337 WHERE "Frequency MHz" = '91.1 fm' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the name of call sign that uses a Frequency MHz of 91.1 fm? ### Input: CREATE TABLE table_67337 (
"Call sign" te... |
What position did the MLS team metrostars pick? | CREATE TABLE table_31847 (
"Pick #" real,
"MLS Team" text,
"Player" text,
"Position" text,
"Affiliation" text
) | SELECT "Position" FROM table_31847 WHERE "MLS Team" = 'metrostars' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What position did the MLS team metrostars pick? ### Input: CREATE TABLE table_31847 (
"Pick #" real,
"MLS Team" text... |
what's the model name with engine code being b5254 t4 | CREATE TABLE table_16824 (
"Model name" text,
"Power (ps)" real,
"Torque (Nm@rpm)" text,
"Displacement (cm\u00b3)" real,
"Engine code" text,
"Comment" text
) | SELECT "Model name" FROM table_16824 WHERE "Engine code" = 'B5254 T4' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what's the model name with engine code being b5254 t4 ### Input: CREATE TABLE table_16824 (
"Model name" text,
"Powe... |
What's the gold medal count for Total Nation with a bronze count more than 0 and a total less than 54? | CREATE TABLE table_14295 (
"Rank" text,
"Nation" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
) | SELECT MAX("Gold") FROM table_14295 WHERE "Bronze" > '0' AND "Nation" = 'total' AND "Total" < '54' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What's the gold medal count for Total Nation with a bronze count more than 0 and a total less than 54? ### Input: CREATE TAB... |
What are the results in 2008 when 2009 is 0, and the ATP Tournaments Won is the tournament? | CREATE TABLE table_50388 (
"Tournament" text,
"2003" text,
"2004" text,
"2005" text,
"2006" text,
"2007" text,
"2008" text,
"2009" text,
"2010" text,
"2011" text,
"2012" text
) | SELECT "2008" FROM table_50388 WHERE "2009" = '0' AND "Tournament" = 'atp tournaments won' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What are the results in 2008 when 2009 is 0, and the ATP Tournaments Won is the tournament? ### Input: CREATE TABLE table_50... |
What is the lowest amount of money player jim colbert has? | CREATE TABLE table_50249 (
"Place" text,
"Player" text,
"Country" text,
"Score" text,
"To par" text,
"Money ( $ )" real
) | SELECT MIN("Money ( $ )") FROM table_50249 WHERE "Player" = 'jim colbert' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the lowest amount of money player jim colbert has? ### Input: CREATE TABLE table_50249 (
"Place" text,
"Play... |
What is the name of this constellation with an area of 245.375 sq. deg.? | CREATE TABLE table_21909 (
"Rank" real,
"Family" text,
"Abbre\u00adviation" text,
"Constellation" text,
"Area (sq.deg.)" text,
"Area (msr)" text,
"Per\u00adcent\u00adage" text,
"Right ascension (hm)" text,
"Decli\u00adnation (dm)" text,
"Quad" text
) | SELECT "Constellation" FROM table_21909 WHERE "Area (sq.deg.)" = '245.375' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the name of this constellation with an area of 245.375 sq. deg.? ### Input: CREATE TABLE table_21909 (
"Rank" re... |
On what date was the individual time trial? | CREATE TABLE table_14661 (
"Date" text,
"Course" text,
"Distance" text,
"Type" text,
"Winner" text
) | SELECT "Date" FROM table_14661 WHERE "Type" = 'individual time trial' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: On what date was the individual time trial? ### Input: CREATE TABLE table_14661 (
"Date" text,
"Course" text,
"D... |
Who is the opponent(s) in round 6? | CREATE TABLE table_61140 (
"Date" text,
"Round" text,
"Opponents" text,
"H / A" text,
"Result F \u2013 A" text,
"Attendance" real
) | SELECT "Opponents" FROM table_61140 WHERE "Round" = 'round 6' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Who is the opponent(s) in round 6? ### Input: CREATE TABLE table_61140 (
"Date" text,
"Round" text,
"Opponents" ... |
Name the film for award of 3,740 | CREATE TABLE table_67489 (
"Film" text,
"Director(s)" text,
"Writer(s)" text,
"Recipient" text,
"Date" text,
"Award" text
) | SELECT "Film" FROM table_67489 WHERE "Award" = '£3,740' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the film for award of 3,740 ### Input: CREATE TABLE table_67489 (
"Film" text,
"Director(s)" text,
"Writer(... |
How many runners up for the team that won in 1993? | CREATE TABLE table_10145 (
"Team" text,
"Winners" real,
"Runners-up" real,
"Years won" text,
"Years runner-up" text
) | SELECT MIN("Runners-up") FROM table_10145 WHERE "Years won" = '1993' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many runners up for the team that won in 1993? ### Input: CREATE TABLE table_10145 (
"Team" text,
"Winners" real... |
What is the average attendance at a game held at Firhill for the 5(r) round? | CREATE TABLE table_80097 (
"Round" text,
"Date" text,
"Opponent" text,
"Venue" text,
"Attendance" real
) | SELECT AVG("Attendance") FROM table_80097 WHERE "Venue" = 'firhill' AND "Round" = '5(r)' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the average attendance at a game held at Firhill for the 5(r) round? ### Input: CREATE TABLE table_80097 (
"Roun... |
How many sets were played in 2007 at the tournament that had 4R in 2011 and 2R in 2009? | CREATE TABLE table_14546 (
"Tournament" text,
"2007" text,
"2008" text,
"2009" text,
"2011" text,
"2012" text,
"2013" text
) | SELECT "2007" FROM table_14546 WHERE "2011" = '4r' AND "2009" = '2r' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many sets were played in 2007 at the tournament that had 4R in 2011 and 2R in 2009? ### Input: CREATE TABLE table_14546 ... |
How many totals had a silver larger than 2? | CREATE TABLE table_45803 (
"Rank" text,
"Nation" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
) | SELECT COUNT("Total") FROM table_45803 WHERE "Silver" > '2' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many totals had a silver larger than 2? ### Input: CREATE TABLE table_45803 (
"Rank" text,
"Nation" text,
"G... |
Name the highest total for the tournament more than 0 and regular season after 8 | CREATE TABLE table_11797 (
"Team" text,
"Seasons" text,
"Regular season" real,
"Tournament" real,
"Total" real
) | SELECT MAX("Total") FROM table_11797 WHERE "Tournament" > '0' AND "Regular season" > '8' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the highest total for the tournament more than 0 and regular season after 8 ### Input: CREATE TABLE table_11797 (
"... |
Who was the director of Small Voices, a film title used in nomination? | CREATE TABLE table_78755 (
"Year (Ceremony)" text,
"Film title used in nomination" text,
"Original title" text,
"Director" text,
"Result" text
) | SELECT "Director" FROM table_78755 WHERE "Film title used in nomination" = 'small voices' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Who was the director of Small Voices, a film title used in nomination? ### Input: CREATE TABLE table_78755 (
"Year (Cere... |
What is the highest average number in attendance when the most in attendance is 5,078? | CREATE TABLE table_10258 (
"Team" text,
"Stadium" text,
"Capacity" real,
"Highest" real,
"Lowest" real,
"Average" real
) | SELECT MAX("Average") FROM table_10258 WHERE "Highest" = '5,078' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the highest average number in attendance when the most in attendance is 5,078? ### Input: CREATE TABLE table_10258 (... |
What score has west ham united as the away team? | CREATE TABLE table_61903 (
"Tie no" text,
"Home team" text,
"Score" text,
"Away team" text,
"Date" text
) | SELECT "Score" FROM table_61903 WHERE "Away team" = 'west ham united' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What score has west ham united as the away team? ### Input: CREATE TABLE table_61903 (
"Tie no" text,
"Home team" te... |
How many numbers were recorded points against when the tries were for 43? | CREATE TABLE table_811 (
"Club" text,
"Played" text,
"Won" text,
"Drawn" text,
"Lost" text,
"Points for" text,
"Points against" text,
"Tries for" text,
"Tries against" text,
"Try bonus" text,
"Losing bonus" text,
"Points" text
) | SELECT COUNT("Points against") FROM table_811 WHERE "Tries for" = '43' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many numbers were recorded points against when the tries were for 43? ### Input: CREATE TABLE table_811 (
"Club" tex... |
How many grids were there races with more than 10 laps and a time of +34.121? | CREATE TABLE table_38273 (
"Team" text,
"Driver" text,
"Laps" real,
"Time" text,
"Grid" real
) | SELECT COUNT("Grid") FROM table_38273 WHERE "Time" = '+34.121' AND "Laps" > '10' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many grids were there races with more than 10 laps and a time of +34.121? ### Input: CREATE TABLE table_38273 (
"Tea... |
Name the rank for mikey and melanie | CREATE TABLE table_28646 (
"Rank" real,
"Couple" text,
"Judges" real,
"Public" real,
"Total" real,
"Vote percentage" text,
"Result" text
) | SELECT "Rank" FROM table_28646 WHERE "Couple" = 'Mikey and Melanie' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the rank for mikey and melanie ### Input: CREATE TABLE table_28646 (
"Rank" real,
"Couple" text,
"Judges" r... |
Which League has a Venue of martin luther king, jr. recreation center? | CREATE TABLE table_67625 (
"Club" text,
"Sport" text,
"League" text,
"Venue" text,
"Championships (Years)" text
) | SELECT "League" FROM table_67625 WHERE "Venue" = 'martin luther king, jr. recreation center' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which League has a Venue of martin luther king, jr. recreation center? ### Input: CREATE TABLE table_67625 (
"Club" text... |
Who was the guest when attendance was 3? | CREATE TABLE table_5525 (
"Venue" text,
"Home" text,
"Guest" text,
"Score" text,
"Attendance" real
) | SELECT "Guest" FROM table_5525 WHERE "Attendance" = '3' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Who was the guest when attendance was 3? ### Input: CREATE TABLE table_5525 (
"Venue" text,
"Home" text,
"Guest"... |
What is the transfer fee for the country of Nir? | CREATE TABLE table_65621 (
"Name" text,
"Country" text,
"Status" text,
"Moving to" text,
"Transfer fee" text
) | SELECT "Transfer fee" FROM table_65621 WHERE "Country" = 'nir' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the transfer fee for the country of Nir? ### Input: CREATE TABLE table_65621 (
"Name" text,
"Country" text,
... |
When 1934 wsu* 19 0 pullman is the 1894 wsu 10 0 moscow how many 1899 wsu* 11 0 pullmans are there? | CREATE TABLE table_19408 (
"1890 No game" text,
"1891 No game" text,
"1892 No game" text,
"1893 No game" text,
"1894 WSU 10\u20130 Moscow" text,
"1895 WSU* 10\u20134 Pullman" text,
"1896 No game" text,
"1897 No game" text,
"1898 No game" text,
"1899 WSU* 11\u20130 Pullman" text
) | SELECT COUNT("1899 WSU* 11\u20130 Pullman") FROM table_19408 WHERE "1894 WSU 10\u20130 Moscow" = '1934 WSU* 19–0 Pullman' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: When 1934 wsu* 19 0 pullman is the 1894 wsu 10 0 moscow how many 1899 wsu* 11 0 pullmans are there? ### Input: CREATE TABLE ... |
What is the location when the name is 'I feel free' b/w 'n.s.u.', with a release date of December 1966, on the Atco 6462 label? | CREATE TABLE table_44699 (
"Name" text,
"Location" text,
"Format" text,
"Record Label" text,
"Release Date" text
) | SELECT "Location" FROM table_44699 WHERE "Name" = 'i feel free" b/w "n.s.u.' AND "Release Date" = 'december 1966' AND "Record Label" = 'atco 6462' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the location when the name is 'I feel free' b/w 'n.s.u.', with a release date of December 1966, on the Atco 6462 lab... |
What Score has a Place of t8, and a Country of scotland? | CREATE TABLE table_59841 (
"Place" text,
"Player" text,
"Country" text,
"Score" text,
"To par" text,
"Money ( \u00a3 )" real
) | SELECT "Score" FROM table_59841 WHERE "Place" = 't8' AND "Country" = 'scotland' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What Score has a Place of t8, and a Country of scotland? ### Input: CREATE TABLE table_59841 (
"Place" text,
"Player... |
What's the highest game found when the record is 2-1? | CREATE TABLE table_44053 (
"Game" real,
"Date" text,
"Opponent" text,
"Score" text,
"High points" text,
"High rebounds" text,
"High assists" text,
"Location/Attendance" text,
"Record" text
) | SELECT MAX("Game") FROM table_44053 WHERE "Record" = '2-1' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What's the highest game found when the record is 2-1? ### Input: CREATE TABLE table_44053 (
"Game" real,
"Date" text... |
What is the total for Austria when there is less than 1 bronze? | CREATE TABLE table_64660 (
"Rank" text,
"Nation" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
) | SELECT AVG("Total") FROM table_64660 WHERE "Nation" = 'austria' AND "Bronze" < '1' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the total for Austria when there is less than 1 bronze? ### Input: CREATE TABLE table_64660 (
"Rank" text,
"... |
What is the voltage when the L2 cache is 2 256 kb and the turbo is 5/8? | CREATE TABLE table_13611 (
"Model number" text,
"sSpec number" text,
"Frequency" text,
"Turbo" text,
"GPU frequency" text,
"Cores" text,
"L2 cache" text,
"L3 cache" text,
"I/O bus" text,
"Mult." text,
"Memory" text,
"Voltage" text,
"Socket" text,
"Release date" te... | SELECT "Voltage" FROM table_13611 WHERE "L2 cache" = '2 × 256 kb' AND "Turbo" = '5/8' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the voltage when the L2 cache is 2 256 kb and the turbo is 5/8? ### Input: CREATE TABLE table_13611 (
"Model num... |
Who was the music director in 1994? | CREATE TABLE table_55027 (
"Year" real,
"Song Title" text,
"Movie" text,
"Music Director" text,
"Co-Singers" text
) | SELECT "Music Director" FROM table_55027 WHERE "Year" = '1994' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Who was the music director in 1994? ### Input: CREATE TABLE table_55027 (
"Year" real,
"Song Title" text,
"Movie... |
What was the winning score in the Alfred Dunhill links championship? | CREATE TABLE table_14358 (
"Date" text,
"Tournament" text,
"Winning score" text,
"Margin of victory" text,
"Runner(s)-up" text
) | SELECT "Winning score" FROM table_14358 WHERE "Tournament" = 'alfred dunhill links championship' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was the winning score in the Alfred Dunhill links championship? ### Input: CREATE TABLE table_14358 (
"Date" text,
... |
Name the men doubles for els baert | CREATE TABLE table_19659 (
"Year" real,
"Mens Singles" text,
"Womens Singles" text,
"Men Doubles" text,
"Womens Doubles" text,
"Mixed Doubles" text
) | SELECT "Men Doubles" FROM table_19659 WHERE "Womens Singles" = 'Els Baert' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the men doubles for els baert ### Input: CREATE TABLE table_19659 (
"Year" real,
"Mens Singles" text,
"Wome... |
How many Points have a Record of 40 21 12 3, and a March larger than 28? | CREATE TABLE table_75245 (
"Game" real,
"March" real,
"Opponent" text,
"Score" text,
"Record" text,
"Points" real
) | SELECT COUNT("Points") FROM table_75245 WHERE "Record" = '40–21–12–3' AND "March" > '28' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many Points have a Record of 40 21 12 3, and a March larger than 28? ### Input: CREATE TABLE table_75245 (
"Game" re... |
WHAT IS THE TO PAR FOR GEOFF OGILVY WITH A PLACE OF T3? | CREATE TABLE table_50847 (
"Place" text,
"Player" text,
"Country" text,
"Score" real,
"To par" text
) | SELECT "To par" FROM table_50847 WHERE "Place" = 't3' AND "Player" = 'geoff ogilvy' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: WHAT IS THE TO PAR FOR GEOFF OGILVY WITH A PLACE OF T3? ### Input: CREATE TABLE table_50847 (
"Place" text,
"Player"... |
When did the away team score 12.7 (79)? | CREATE TABLE table_10631 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
) | SELECT "Date" FROM table_10631 WHERE "Away team score" = '12.7 (79)' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: When did the away team score 12.7 (79)? ### Input: CREATE TABLE table_10631 (
"Home team" text,
"Home team score" te... |
What is the low attendance was based in phoenix with a Record of 1 0 0? | CREATE TABLE table_56957 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Decision" text,
"Attendance" real,
"Record" text
) | SELECT MIN("Attendance") FROM table_56957 WHERE "Home" = 'phoenix' AND "Record" = '1–0–0' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the low attendance was based in phoenix with a Record of 1 0 0? ### Input: CREATE TABLE table_56957 (
"Date" tex... |
Which Enrollment has a Primary Conference of mid-hoosier, and a County of 16 decatur, and an IHSAA Class of aa? | CREATE TABLE table_66122 (
"School" text,
"Location" text,
"Mascot" text,
"Enrollment" real,
"IHSAA Class" text,
"County" text,
"Primary Conference" text
) | SELECT "Enrollment" FROM table_66122 WHERE "Primary Conference" = 'mid-hoosier' AND "County" = '16 decatur' AND "IHSAA Class" = 'aa' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which Enrollment has a Primary Conference of mid-hoosier, and a County of 16 decatur, and an IHSAA Class of aa? ### Input: C... |
Who had the 2008 final performance film when the 2011 off-broadway revival was annaleigh ashford? | CREATE TABLE table_28690 (
"Role" text,
"Original Broadway Cast" text,
"2005 film" text,
"2008 Final Performance Film" text,
"Hollywood Bowl Cast" text,
"2011 Off-Broadway Revival" text
) | SELECT "2008 Final Performance Film" FROM table_28690 WHERE "2011 Off-Broadway Revival" = 'Annaleigh Ashford' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Who had the 2008 final performance film when the 2011 off-broadway revival was annaleigh ashford? ### Input: CREATE TABLE ta... |
How many to par has the winning score of 69-66-68=203. | CREATE TABLE table_23107 (
"No." real,
"Date" text,
"Tournament" text,
"Winning score" text,
"To par" text,
"Margin of victory" text,
"Runner(s)-up" text
) | SELECT "To par" FROM table_23107 WHERE "Winning score" = '69-66-68=203' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many to par has the winning score of 69-66-68=203. ### Input: CREATE TABLE table_23107 (
"No." real,
"Date" text... |
What was the result F-A for round 5? | CREATE TABLE table_8223 (
"Date" text,
"Round" text,
"Opponents" text,
"H / A" text,
"Result F \u2013 A" text,
"Attendance" real
) | SELECT "Result F \u2013 A" FROM table_8223 WHERE "Round" = 'round 5' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was the result F-A for round 5? ### Input: CREATE TABLE table_8223 (
"Date" text,
"Round" text,
"Opponents"... |
What is the swimsuit score when the interview was 9.74? | CREATE TABLE table_72230 (
"Country" text,
"Interview" text,
"Swimsuit" text,
"Evening Gown" text,
"Average" text
) | SELECT "Swimsuit" FROM table_72230 WHERE "Interview" = '9.74' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the swimsuit score when the interview was 9.74? ### Input: CREATE TABLE table_72230 (
"Country" text,
"Inter... |
What is the withdrawal rate for the school district with a graduation rate of 89.3%? | CREATE TABLE table_73313 (
"School District" text,
"Headquarters" text,
"Sector" text,
"Enrollment (2011-12)" real,
"Teachers (2008-09" real,
"Student-Teacher ratio (2008-09)" text,
"French enrollment (2011-12)" text,
"Graduation rate (2011-12)" text,
"Withdrawal rate (2010-11)" text... | SELECT "Withdrawal rate (2010-11)" FROM table_73313 WHERE "Graduation rate (2011-12)" = '89.3%' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the withdrawal rate for the school district with a graduation rate of 89.3%? ### Input: CREATE TABLE table_73313 (
... |
What was the highest amount of people that attended the elgin city team? | CREATE TABLE table_146 (
"Team" text,
"Stadium" text,
"Capacity" real,
"Highest" real,
"Lowest" real,
"Average" real
) | SELECT COUNT("Highest") FROM table_146 WHERE "Team" = 'Elgin City' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was the highest amount of people that attended the elgin city team? ### Input: CREATE TABLE table_146 (
"Team" text... |
How much January has a Game smaller than 37, and an Opponent of detroit red wings? | CREATE TABLE table_48117 (
"Game" real,
"January" real,
"Opponent" text,
"Score" text,
"Record" text
) | SELECT COUNT("January") FROM table_48117 WHERE "Game" < '37' AND "Opponent" = 'detroit red wings' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How much January has a Game smaller than 37, and an Opponent of detroit red wings? ### Input: CREATE TABLE table_48117 (
... |
What Venue had Carlton has the Away team? | CREATE TABLE table_55964 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
) | SELECT "Venue" FROM table_55964 WHERE "Away team" = 'carlton' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What Venue had Carlton has the Away team? ### Input: CREATE TABLE table_55964 (
"Home team" text,
"Home team score" ... |
What is the Catalog with a Format of lp, a Country of us, a Label of sundazed, and a Date of 2006? | CREATE TABLE table_43268 (
"Date" text,
"Label" text,
"Format" text,
"Country" text,
"Catalog" text
) | SELECT "Catalog" FROM table_43268 WHERE "Format" = 'lp' AND "Country" = 'us' AND "Label" = 'sundazed' AND "Date" = '2006' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the Catalog with a Format of lp, a Country of us, a Label of sundazed, and a Date of 2006? ### Input: CREATE TABLE t... |
What team has a year listed of 2008? | CREATE TABLE table_32973 (
"Year" real,
"Sportsperson" text,
"Nation of birth" text,
"Team" text,
"Competition , federation , or league" text,
"Sport" text
) | SELECT "Team" FROM table_32973 WHERE "Year" = '2008' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What team has a year listed of 2008? ### Input: CREATE TABLE table_32973 (
"Year" real,
"Sportsperson" text,
"Na... |
What club wast he player hristo stoitchkov from? | CREATE TABLE table_43301 (
"RANK" real,
"PLAYER" text,
"CLUB" text,
"NATIONALITY" text,
"POINTS" real
) | SELECT "CLUB" FROM table_43301 WHERE "PLAYER" = 'hristo stoitchkov' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What club wast he player hristo stoitchkov from? ### Input: CREATE TABLE table_43301 (
"RANK" real,
"PLAYER" text,
... |
What is the English name of the country whose official native language is Dutch Papiamento? | CREATE TABLE table_72080 (
"Country ( exonym )" text,
"Capital ( exonym )" text,
"Country ( endonym )" text,
"Capital ( endonym )" text,
"Official or native language(s) (alphabet/script)" text
) | SELECT "Country ( exonym )" FROM table_72080 WHERE "Official or native language(s) (alphabet/script)" = 'Dutch Papiamento' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the English name of the country whose official native language is Dutch Papiamento? ### Input: CREATE TABLE table_72... |
How many different writers have written the episode with series number 8? | CREATE TABLE table_26439 (
"No. by series" real,
"Title" text,
"Directed by" text,
"Written by" text,
"Original air date" text,
"Production number" real,
"U.S. viewers (in millions)" text
) | SELECT COUNT("Written by") FROM table_26439 WHERE "No. by series" = '8' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many different writers have written the episode with series number 8? ### Input: CREATE TABLE table_26439 (
"No. by ... |
what are all the result for New York 7 district | CREATE TABLE table_675 (
"District" text,
"Incumbent" text,
"Party" text,
"First elected" real,
"Result" text,
"Candidates" text
) | SELECT "Result" FROM table_675 WHERE "District" = 'New York 7' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what are all the result for New York 7 district ### Input: CREATE TABLE table_675 (
"District" text,
"Incumbent" tex... |
How many players had 6 180s? | CREATE TABLE table_23721 (
"Player" text,
"Played" real,
"Legs Won" real,
"Legs Lost" real,
"100+" real,
"140+" real,
"180s" real,
"High Checkout" real,
"3-dart Average" text
) | SELECT COUNT("Player") FROM table_23721 WHERE "180s" = '6' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many players had 6 180s? ### Input: CREATE TABLE table_23721 (
"Player" text,
"Played" real,
"Legs Won" real... |
Which film did Al Mackay write? | CREATE TABLE table_69173 (
"Film" text,
"Director(s)" text,
"Producer(s)" text,
"Writer(s)" text,
"Date" text,
"Award" text
) | SELECT "Film" FROM table_69173 WHERE "Writer(s)" = 'al mackay' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which film did Al Mackay write? ### Input: CREATE TABLE table_69173 (
"Film" text,
"Director(s)" text,
"Producer... |
what is the highest goals against when the wins is less than 1? | CREATE TABLE table_77519 (
"Team" text,
"Games Played" real,
"Wins" real,
"Losses" real,
"Ties" real,
"Goals For" real,
"Goals Against" real
) | SELECT MAX("Goals Against") FROM table_77519 WHERE "Wins" < '1' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what is the highest goals against when the wins is less than 1? ### Input: CREATE TABLE table_77519 (
"Team" text,
"... |
Where was the game, and how many attended the game on january 2? | CREATE TABLE table_75817 (
"Game" real,
"Date" text,
"Team" text,
"Score" text,
"High points" text,
"High rebounds" text,
"High assists" text,
"Location Attendance" text,
"Record" text
) | SELECT "Location Attendance" FROM table_75817 WHERE "Date" = 'january 2' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Where was the game, and how many attended the game on january 2? ### Input: CREATE TABLE table_75817 (
"Game" real,
... |
What is the result of the match with Jeff Monson as opponent? | CREATE TABLE table_45261 (
"Res." text,
"Record" text,
"Opponent" text,
"Method" text,
"Round" text
) | SELECT "Res." FROM table_45261 WHERE "Opponent" = 'jeff monson' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the result of the match with Jeff Monson as opponent? ### Input: CREATE TABLE table_45261 (
"Res." text,
"Re... |
What was the away team at mcg? | CREATE TABLE table_55284 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
) | SELECT "Away team" FROM table_55284 WHERE "Venue" = 'mcg' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was the away team at mcg? ### Input: CREATE TABLE table_55284 (
"Home team" text,
"Home team score" text,
"... |
What is the name of the college that is from a round greater than 3 with Gillis Wilson playing? | CREATE TABLE table_38436 (
"Round" real,
"Pick" real,
"Player" text,
"Position" text,
"College" text
) | SELECT "College" FROM table_38436 WHERE "Round" > '3' AND "Player" = 'gillis wilson' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the name of the college that is from a round greater than 3 with Gillis Wilson playing? ### Input: CREATE TABLE tabl... |
What name was in the number 4 spot when Aiden was number 7 and James was number 3? | CREATE TABLE table_47206 (
"Region (year)" text,
"No. 1" text,
"No. 2" text,
"No. 3" text,
"No. 4" text,
"No. 5" text,
"No. 6" text,
"No. 7" text,
"No. 8" text,
"No. 9" text,
"No. 10" text
) | SELECT "No. 4" FROM table_47206 WHERE "No. 7" = 'aiden' AND "No. 3" = 'james' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What name was in the number 4 spot when Aiden was number 7 and James was number 3? ### Input: CREATE TABLE table_47206 (
... |
Who was at Home at the Bucharest Venue with a Score of 9-9? | CREATE TABLE table_7705 (
"Year" real,
"Date" text,
"Home" text,
"Score" text,
"Away" text,
"Venue" text
) | SELECT "Home" FROM table_7705 WHERE "Venue" = 'bucharest' AND "Score" = '9-9' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Who was at Home at the Bucharest Venue with a Score of 9-9? ### Input: CREATE TABLE table_7705 (
"Year" real,
"Date"... |
Tell me the time/retired for Laps of 42 and Grids of 4 | CREATE TABLE table_78530 (
"Driver" text,
"Constructor" text,
"Laps" real,
"Time/Retired" text,
"Grid" real
) | SELECT "Time/Retired" FROM table_78530 WHERE "Laps" = '42' AND "Grid" = '4' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Tell me the time/retired for Laps of 42 and Grids of 4 ### Input: CREATE TABLE table_78530 (
"Driver" text,
"Constru... |
What is the place of player sergio garc a, who has 77,500? | CREATE TABLE table_60947 (
"Place" text,
"Player" text,
"Country" text,
"Score" text,
"To par" text,
"Money ( \u00a3 )" text
) | SELECT "Place" FROM table_60947 WHERE "Money ( \u00a3 )" = '77,500' AND "Player" = 'sergio garcía' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the place of player sergio garc a, who has 77,500? ### Input: CREATE TABLE table_60947 (
"Place" text,
"Play... |
what is the highest attendance when the week is smaller than 1? | CREATE TABLE table_14287 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" real
) | SELECT MAX("Attendance") FROM table_14287 WHERE "Week" < '1' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what is the highest attendance when the week is smaller than 1? ### Input: CREATE TABLE table_14287 (
"Week" real,
"... |
Which Gold has a Nation of sri lanka, and a Silver smaller than 10? | CREATE TABLE table_79714 (
"Rank" real,
"Nation" text,
"Gold" real,
"Silver" real,
"Bronze" real,
"Total" real
) | SELECT AVG("Gold") FROM table_79714 WHERE "Nation" = 'sri lanka' AND "Silver" < '10' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which Gold has a Nation of sri lanka, and a Silver smaller than 10? ### Input: CREATE TABLE table_79714 (
"Rank" real,
... |
Who was the recipient for Outstanding actress television series prior to 2008? | CREATE TABLE table_69344 (
"Year" real,
"Recipient" text,
"Role" text,
"Category" text,
"Result" text
) | SELECT "Recipient" FROM table_69344 WHERE "Year" < '2008' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Who was the recipient for Outstanding actress television series prior to 2008? ### Input: CREATE TABLE table_69344 (
"Ye... |
How much 1991-1992 has a Team of gimnasia de la plata, and more than 113 points? | CREATE TABLE table_78876 (
"Team" text,
"Average" real,
"Points" real,
"Played" real,
"1989-90" text,
"1990-91" text,
"1991-1992" real
) | SELECT COUNT("1991-1992") FROM table_78876 WHERE "Team" = 'gimnasia de la plata' AND "Points" > '113' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How much 1991-1992 has a Team of gimnasia de la plata, and more than 113 points? ### Input: CREATE TABLE table_78876 (
"... |
What total D (max) has a taper of 1:20.047, and a C (max) bigger than 65.5? | CREATE TABLE table_9640 (
"Morse Taper number" real,
"Taper" text,
"B (max)" real,
"C (max)" real,
"D (max)" real
) | SELECT SUM("D (max)") FROM table_9640 WHERE "Taper" = '1:20.047' AND "C (max)" > '65.5' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What total D (max) has a taper of 1:20.047, and a C (max) bigger than 65.5? ### Input: CREATE TABLE table_9640 (
"Morse ... |
Name the first downs for points against being 0 | CREATE TABLE table_20181 (
"Week" real,
"Date" text,
"Result" text,
"Record" text,
"Opponent" text,
"Points For" real,
"Points Against" real,
"First Downs" real,
"Attendance" real
) | SELECT "First Downs" FROM table_20181 WHERE "Points Against" = '0' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the first downs for points against being 0 ### Input: CREATE TABLE table_20181 (
"Week" real,
"Date" text,
... |
What is the purpose of Euromarine? | CREATE TABLE table_31580 (
"Payee" text,
"Purpose" text,
"Amount (millions)" text,
"Signatories" text,
"Date signed" text
) | SELECT "Purpose" FROM table_31580 WHERE "Payee" = 'euromarine' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the purpose of Euromarine? ### Input: CREATE TABLE table_31580 (
"Payee" text,
"Purpose" text,
"Amount (... |
Who had 2 WSOP cashes and was 6th in final place? | CREATE TABLE table_26275 (
"Name" text,
"Starting chip count" real,
"WSOP bracelets" real,
"WSOP cashes" real,
"WSOP earnings" text,
"Final place" text,
"Prize" text
) | SELECT "Name" FROM table_26275 WHERE "WSOP cashes" = '2' AND "Final place" = '6th' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Who had 2 WSOP cashes and was 6th in final place? ### Input: CREATE TABLE table_26275 (
"Name" text,
"Starting chip ... |
On which date was the opponent lamine ouahab? | CREATE TABLE table_60096 (
"Edition" text,
"Round" text,
"Date" text,
"Against" text,
"Surface" text,
"Opponent" text,
"Result" text
) | SELECT "Date" FROM table_60096 WHERE "Opponent" = 'lamine ouahab' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: On which date was the opponent lamine ouahab? ### Input: CREATE TABLE table_60096 (
"Edition" text,
"Round" text,
... |
Name the number of lost for against being 46 | CREATE TABLE table_20011 (
"Position" real,
"Team" text,
"Points" real,
"Played" real,
"Won" real,
"Drawn" real,
"Lost" real,
"For" real,
"Against" real,
"Difference" text
) | SELECT COUNT("Lost") FROM table_20011 WHERE "Against" = '46' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the number of lost for against being 46 ### Input: CREATE TABLE table_20011 (
"Position" real,
"Team" text,
... |
On what surface was the Australian Open (6) played on? | CREATE TABLE table_4182 (
"Outcome" text,
"Year" real,
"Championship" text,
"Surface" text,
"Partner" text,
"Opponents" text,
"Score" text
) | SELECT "Surface" FROM table_4182 WHERE "Championship" = 'Australian Open (6)' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: On what surface was the Australian Open (6) played on? ### Input: CREATE TABLE table_4182 (
"Outcome" text,
"Year" r... |
Visitor of dallas, and a Date of june 12 had what highest attendance? | CREATE TABLE table_37668 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Decision" text,
"Attendance" real
) | SELECT MAX("Attendance") FROM table_37668 WHERE "Visitor" = 'dallas' AND "Date" = 'june 12' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Visitor of dallas, and a Date of june 12 had what highest attendance? ### Input: CREATE TABLE table_37668 (
"Date" text,... |
What is the highest Points, when Position is less than 4, when Equipment is Zabel - VMC, and when Bike No is less than 1? | CREATE TABLE table_48574 (
"Position" real,
"Driver / Passenger" text,
"Equipment" text,
"Bike No" real,
"Points" real
) | SELECT MAX("Points") FROM table_48574 WHERE "Position" < '4' AND "Equipment" = 'zabel - vmc' AND "Bike No" < '1' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the highest Points, when Position is less than 4, when Equipment is Zabel - VMC, and when Bike No is less than 1? ##... |
What was the lowest amount of people to turn out at a game with the away team as collingwood? | CREATE TABLE table_10378 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
) | SELECT MIN("Crowd") FROM table_10378 WHERE "Away team" = 'collingwood' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was the lowest amount of people to turn out at a game with the away team as collingwood? ### Input: CREATE TABLE table_... |
What is the win/loss of coach Peter German? | CREATE TABLE table_53837 (
"Season" real,
"Position" real,
"Win/Loss" text,
"Coach" text,
"Captain" text,
"Dudley Tuckey Medal" text,
"Leading goalkicker" text
) | SELECT "Win/Loss" FROM table_53837 WHERE "Coach" = 'peter german' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the win/loss of coach Peter German? ### Input: CREATE TABLE table_53837 (
"Season" real,
"Position" real,
... |
What was the score in the 1st leg when Stade d'Abidjan was Team 2? | CREATE TABLE table_70497 (
"Team 1" text,
"Agg." text,
"Team 2" text,
"1st leg" text,
"2nd leg" text
) | SELECT "1st leg" FROM table_70497 WHERE "Team 2" = 'stade d''abidjan' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was the score in the 1st leg when Stade d'Abidjan was Team 2? ### Input: CREATE TABLE table_70497 (
"Team 1" text,
... |
Who was the home team with 3305 in attendance? | CREATE TABLE table_47781 (
"Date" text,
"Home" text,
"Score" text,
"Away" text,
"Attendance" real
) | SELECT "Home" FROM table_47781 WHERE "Attendance" = '3305' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Who was the home team with 3305 in attendance? ### Input: CREATE TABLE table_47781 (
"Date" text,
"Home" text,
"... |
How many weeks have an attendance greater than 21,231, with l 38-10 as the result? | CREATE TABLE table_38067 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" real
) | SELECT COUNT("Week") FROM table_38067 WHERE "Attendance" > '21,231' AND "Result" = 'l 38-10' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many weeks have an attendance greater than 21,231, with l 38-10 as the result? ### Input: CREATE TABLE table_38067 (
... |
What is the title of the 8th doctor published in January 2003? | CREATE TABLE table_61122 (
"Title" text,
"Author" text,
"Doctor" text,
"Companion(s)" text,
"Published" text
) | SELECT "Title" FROM table_61122 WHERE "Doctor" = '8th' AND "Published" = 'january 2003' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the title of the 8th doctor published in January 2003? ### Input: CREATE TABLE table_61122 (
"Title" text,
"... |
What year has 54 (73) points? | CREATE TABLE table_58736 (
"Year" real,
"Entrant" text,
"Chassis" text,
"Engine" text,
"Pts." text
) | SELECT SUM("Year") FROM table_58736 WHERE "Pts." = '54 (73)' | wikisql | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What year has 54 (73) points? ### Input: CREATE TABLE table_58736 (
"Year" real,
"Entrant" text,
"Chassis" text,... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.