Unnamed: 0 int64 0 60k | input stringlengths 76 562 | answer stringlengths 18 557 |
|---|---|---|
12,000 | <question>: What is the date for the winner Universitario after the 1943 season? <context>: CREATE TABLE table_name_99 (date VARCHAR, winner VARCHAR, season VARCHAR) | SELECT date FROM table_name_99 WHERE winner = "universitario" AND season > 1943 |
12,001 | <question>: What is the competition before the 1930 season, and a winning draw? <context>: CREATE TABLE table_name_75 (competition_round_ VARCHAR, d_ VARCHAR, season VARCHAR, winner VARCHAR) | SELECT competition_round_[d_] FROM table_name_75 WHERE season < 1930 AND winner = "draw" |
12,002 | <question>: Who is the co-driver for the 6th position and more than 159 laps? <context>: CREATE TABLE table_name_36 (co_driver VARCHAR, position VARCHAR, laps VARCHAR) | SELECT co_driver FROM table_name_36 WHERE position = "6th" AND laps > 159 |
12,003 | <question>: Which location has 13 floors and a rank greater than 12? <context>: CREATE TABLE table_name_83 (location VARCHAR, rank VARCHAR, floors VARCHAR) | SELECT location FROM table_name_83 WHERE rank > 12 AND floors = 13 |
12,004 | <question>: What is the Visitor on January 1? <context>: CREATE TABLE table_name_58 (visitor VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_58 WHERE date = "january 1" |
12,005 | <question>: What is the Record of the Game on January 20 with Visitor Toronto Maple Leafs with a Score of 3–1? <context>: CREATE TABLE table_name_63 (record VARCHAR, date VARCHAR, score VARCHAR, visitor VARCHAR) | SELECT record FROM table_name_63 WHERE score = "3–1" AND visitor = "toronto maple leafs" AND date = "january 20" |
12,006 | <question>: What is the Record of the game on November 24 with a Score of 6–2? <context>: CREATE TABLE table_name_75 (record VARCHAR, score VARCHAR, date VARCHAR) | SELECT record FROM table_name_75 WHERE score = "6–2" AND date = "november 24" |
12,007 | <question>: What is the Record of the game on November 15 against Visitor Chicago Black Hawks with a Score of 1–3? <context>: CREATE TABLE table_name_32 (record VARCHAR, date VARCHAR, score VARCHAR, visitor VARCHAR) | SELECT record FROM table_name_32 WHERE score = "1–3" AND visitor = "chicago black hawks" AND date = "november 15" |
12,008 | <question>: What is the Date of the game with a Score of 3–1 and Record of 1–1–0? <context>: CREATE TABLE table_name_70 (date VARCHAR, score VARCHAR, record VARCHAR) | SELECT date FROM table_name_70 WHERE score = "3–1" AND record = "1–1–0" |
12,009 | <question>: What is the Visitor of the game on January 24? <context>: CREATE TABLE table_name_33 (visitor VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_33 WHERE date = "january 24" |
12,010 | <question>: What is Record, when Game is 27? <context>: CREATE TABLE table_name_54 (record VARCHAR, game VARCHAR) | SELECT record FROM table_name_54 WHERE game = 27 |
12,011 | <question>: What is Team, when High Rebounds is David Lee (15)? <context>: CREATE TABLE table_name_61 (team VARCHAR, high_rebounds VARCHAR) | SELECT team FROM table_name_61 WHERE high_rebounds = "david lee (15)" |
12,012 | <question>: What is Record, when Location Attendance, is Madison Square Garden 19,009? <context>: CREATE TABLE table_name_32 (record VARCHAR, location_attendance VARCHAR) | SELECT record FROM table_name_32 WHERE location_attendance = "madison square garden 19,009" |
12,013 | <question>: How many weeks on top was OMC? <context>: CREATE TABLE table_name_48 (weeks_on_top VARCHAR, artist VARCHAR) | SELECT weeks_on_top FROM table_name_48 WHERE artist = "omc" |
12,014 | <question>: What's the volume:issue of Sheryl Crow with 3 weeks on top? <context>: CREATE TABLE table_name_7 (volume VARCHAR, weeks_on_top VARCHAR, artist VARCHAR) | SELECT volume AS :issue FROM table_name_7 WHERE weeks_on_top = "3" AND artist = "sheryl crow" |
12,015 | <question>: What is Coverage (Transmitter Site), when Power (kW) is "10kW", and when Callsign is "DYFX-TV"? <context>: CREATE TABLE table_name_14 (coverage__transmitter_site_ VARCHAR, power__kw_ VARCHAR, callsign VARCHAR) | SELECT coverage__transmitter_site_ FROM table_name_14 WHERE power__kw_ = "10kw" AND callsign = "dyfx-tv" |
12,016 | <question>: What is Coverage (Transmitter Site), when Power (kW) is "10kW", and when Callsign is "DYFX-TV"? <context>: CREATE TABLE table_name_69 (coverage__transmitter_site_ VARCHAR, power__kw_ VARCHAR, callsign VARCHAR) | SELECT coverage__transmitter_site_ FROM table_name_69 WHERE power__kw_ = "10kw" AND callsign = "dyfx-tv" |
12,017 | <question>: What is Branding, when Callsign is "DXED-TV"? <context>: CREATE TABLE table_name_73 (branding VARCHAR, callsign VARCHAR) | SELECT branding FROM table_name_73 WHERE callsign = "dxed-tv" |
12,018 | <question>: What is Power (kW), when Coverage (Transmitter Site) is "Lucena"? <context>: CREATE TABLE table_name_12 (power__kw_ VARCHAR, coverage__transmitter_site_ VARCHAR) | SELECT power__kw_ FROM table_name_12 WHERE coverage__transmitter_site_ = "lucena" |
12,019 | <question>: What year did Ivanovic win with Ivanovic greater than 4 and round of R16? <context>: CREATE TABLE table_name_95 (year INTEGER, round VARCHAR, winner VARCHAR) | SELECT SUM(year) FROM table_name_95 WHERE winner = "ivanovic" AND "ivanovic" > 4 AND round = "r16" |
12,020 | <question>: What is the highest result for Jankovic at Indian Wells and round of SF? <context>: CREATE TABLE table_name_68 (jankovic INTEGER, round VARCHAR, tournament VARCHAR) | SELECT MAX(jankovic) FROM table_name_68 WHERE round = "sf" AND tournament = "indian wells" |
12,021 | <question>: Where did Ben Gordon (8) have the high assists? <context>: CREATE TABLE table_name_55 (location_attendance VARCHAR, high_assists VARCHAR) | SELECT location_attendance FROM table_name_55 WHERE high_assists = "ben gordon (8)" |
12,022 | <question>: Who had the high points at the United Center 20,389? <context>: CREATE TABLE table_name_42 (high_points VARCHAR, location_attendance VARCHAR) | SELECT high_points FROM table_name_42 WHERE location_attendance = "united center 20,389" |
12,023 | <question>: Where was the location attendance when Minnesota played? <context>: CREATE TABLE table_name_1 (location_attendance VARCHAR, team VARCHAR) | SELECT location_attendance FROM table_name_1 WHERE team = "minnesota" |
12,024 | <question>: What date did Ben Gordon (8) have high assists? <context>: CREATE TABLE table_name_20 (date VARCHAR, high_assists VARCHAR) | SELECT date FROM table_name_20 WHERE high_assists = "ben gordon (8)" |
12,025 | <question>: What team had a finish of 25 in a smaller than 28? <context>: CREATE TABLE table_name_82 (team VARCHAR, start VARCHAR, finish VARCHAR) | SELECT team FROM table_name_82 WHERE start < 28 AND finish = 25 |
12,026 | <question>: For any races with a start of 14 what was the lowest finish? <context>: CREATE TABLE table_name_61 (finish INTEGER, start VARCHAR) | SELECT MIN(finish) FROM table_name_61 WHERE start = 14 |
12,027 | <question>: What is the transfer fee for Jimmy Gibson? <context>: CREATE TABLE table_name_22 (transfer_fee VARCHAR, name VARCHAR) | SELECT transfer_fee FROM table_name_22 WHERE name = "jimmy gibson" |
12,028 | <question>: What is the sum of silver medals won for rank 7? <context>: CREATE TABLE table_name_30 (silver INTEGER, rank VARCHAR) | SELECT SUM(silver) FROM table_name_30 WHERE rank = "7" |
12,029 | <question>: Goldfields Obuasi Team 1 has what Agg. totals ? <context>: CREATE TABLE table_name_95 (agg VARCHAR, team_1 VARCHAR) | SELECT agg FROM table_name_95 WHERE team_1 = "goldfields obuasi" |
12,030 | <question>: Which Inhabitants has a Party of south tyrolean people's party, a Municipality of bruneck, and an Election larger than 2010? <context>: CREATE TABLE table_name_36 (inhabitants INTEGER, election VARCHAR, party VARCHAR, municipality VARCHAR) | SELECT AVG(inhabitants) FROM table_name_36 WHERE party = "south tyrolean people's party" AND municipality = "bruneck" AND election > 2010 |
12,031 | <question>: Which Election has a Municipality of laives, and Inhabitants smaller than 17,197? <context>: CREATE TABLE table_name_35 (election INTEGER, municipality VARCHAR, inhabitants VARCHAR) | SELECT AVG(election) FROM table_name_35 WHERE municipality = "laives" AND inhabitants < 17 OFFSET 197 |
12,032 | <question>: What is the number week with a result of w 40–62? <context>: CREATE TABLE table_name_35 (week INTEGER, result VARCHAR) | SELECT SUM(week) FROM table_name_35 WHERE result = "w 40–62" |
12,033 | <question>: What was the game site week 15? <context>: CREATE TABLE table_name_79 (game_site VARCHAR, week VARCHAR) | SELECT game_site FROM table_name_79 WHERE week = 15 |
12,034 | <question>: What is the record when the result was w 52–43? <context>: CREATE TABLE table_name_5 (record VARCHAR, result VARCHAR) | SELECT record FROM table_name_5 WHERE result = "w 52–43" |
12,035 | <question>: What is the highest week when the game site was Verizon Wireless Arena, and the result was w 59–42? <context>: CREATE TABLE table_name_69 (week INTEGER, game_site VARCHAR, result VARCHAR) | SELECT MAX(week) FROM table_name_69 WHERE game_site = "verizon wireless arena" AND result = "w 59–42" |
12,036 | <question>: What is the opponent on May 25, 2007? <context>: CREATE TABLE table_name_98 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_98 WHERE date = "may 25, 2007" |
12,037 | <question>: What team was the opponent with a record of 5–0? <context>: CREATE TABLE table_name_94 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_94 WHERE record = "5–0" |
12,038 | <question>: What date was the away team from Adelaide? <context>: CREATE TABLE table_name_37 (date VARCHAR, away_team VARCHAR) | SELECT date FROM table_name_37 WHERE away_team = "adelaide" |
12,039 | <question>: What date was the Colonial Stadium? <context>: CREATE TABLE table_name_62 (date VARCHAR, ground VARCHAR) | SELECT date FROM table_name_62 WHERE ground = "colonial stadium" |
12,040 | <question>: What was the total crowd attendance at Westpac Stadium? <context>: CREATE TABLE table_name_98 (crowd INTEGER, ground VARCHAR) | SELECT SUM(crowd) FROM table_name_98 WHERE ground = "westpac stadium" |
12,041 | <question>: What is the attendance of the match with maidsone united as the away team? <context>: CREATE TABLE table_name_13 (attendance VARCHAR, away_team VARCHAR) | SELECT attendance FROM table_name_13 WHERE away_team = "maidsone united" |
12,042 | <question>: What is the attendance with a 45 tie no.? <context>: CREATE TABLE table_name_73 (attendance VARCHAR, tie_no VARCHAR) | SELECT attendance FROM table_name_73 WHERE tie_no = "45" |
12,043 | <question>: What is February, when Opponent is "Montreal Canadiens"? <context>: CREATE TABLE table_name_74 (february VARCHAR, opponent VARCHAR) | SELECT february FROM table_name_74 WHERE opponent = "montreal canadiens" |
12,044 | <question>: What is February, when Record is "21-29-11"? <context>: CREATE TABLE table_name_46 (february VARCHAR, record VARCHAR) | SELECT february FROM table_name_46 WHERE record = "21-29-11" |
12,045 | <question>: What is the lowest February, when Record is "21-30-11", and when Game is greater than 62? <context>: CREATE TABLE table_name_54 (february INTEGER, record VARCHAR, game VARCHAR) | SELECT MIN(february) FROM table_name_54 WHERE record = "21-30-11" AND game > 62 |
12,046 | <question>: What is Score, when Game is less than 61, when February is less than 11, and when Opponent is "@ Buffalo Sabres"? <context>: CREATE TABLE table_name_25 (score VARCHAR, opponent VARCHAR, game VARCHAR, february VARCHAR) | SELECT score FROM table_name_25 WHERE game < 61 AND february < 11 AND opponent = "@ buffalo sabres" |
12,047 | <question>: What is the highest Game, when Record is "21-30-11"? <context>: CREATE TABLE table_name_92 (game INTEGER, record VARCHAR) | SELECT MAX(game) FROM table_name_92 WHERE record = "21-30-11" |
12,048 | <question>: Who had the most rebounds in the game against Phoenix with a number over 76? <context>: CREATE TABLE table_name_16 (high_rebounds VARCHAR, game VARCHAR, team VARCHAR) | SELECT high_rebounds FROM table_name_16 WHERE game > 76 AND team = "phoenix" |
12,049 | <question>: What is Years, when Jersey Number(s) is 5? <context>: CREATE TABLE table_name_43 (years VARCHAR, jersey_number_s_ VARCHAR) | SELECT years FROM table_name_43 WHERE jersey_number_s_ = "5" |
12,050 | <question>: What is Position when Player is Drew Barry Category:Articles With hCards? <context>: CREATE TABLE table_name_54 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_54 WHERE player = "drew barry category:articles with hcards" |
12,051 | <question>: What is Years, when Jersey Number(s) is 21, and when Position is SG? <context>: CREATE TABLE table_name_97 (years VARCHAR, jersey_number_s_ VARCHAR, position VARCHAR) | SELECT years FROM table_name_97 WHERE jersey_number_s_ = "21" AND position = "sg" |
12,052 | <question>: What is Postition, when Nationality is United States, when Jersey Number(s) is 12, and when Player is Tom Black Category:Articles With hCards? <context>: CREATE TABLE table_name_50 (position VARCHAR, player VARCHAR, nationality VARCHAR, jersey_number_s_ VARCHAR) | SELECT position FROM table_name_50 WHERE nationality = "united states" AND jersey_number_s_ = "12" AND player = "tom black category:articles with hcards" |
12,053 | <question>: Which Club has a Founded smaller than 1882, and a League of fa premier league? <context>: CREATE TABLE table_name_76 (club VARCHAR, founded VARCHAR, league VARCHAR) | SELECT club FROM table_name_76 WHERE founded < 1882 AND league = "fa premier league" |
12,054 | <question>: Which Venue has a Club of west bromwich albion? <context>: CREATE TABLE table_name_99 (venue VARCHAR, club VARCHAR) | SELECT venue FROM table_name_99 WHERE club = "west bromwich albion" |
12,055 | <question>: Which Sport has a Founded larger than 1874 and a Club of birmingham city? <context>: CREATE TABLE table_name_71 (sport VARCHAR, founded VARCHAR, club VARCHAR) | SELECT sport FROM table_name_71 WHERE founded > 1874 AND club = "birmingham city" |
12,056 | <question>: What kind of League has a Venue of billesley common? <context>: CREATE TABLE table_name_48 (league VARCHAR, venue VARCHAR) | SELECT league FROM table_name_48 WHERE venue = "billesley common" |
12,057 | <question>: COunt the Founded which has a Venue of villa park? <context>: CREATE TABLE table_name_5 (founded INTEGER, venue VARCHAR) | SELECT SUM(founded) FROM table_name_5 WHERE venue = "villa park" |
12,058 | <question>: Name the Club which has a Founded larger than 1875, and a Sport of football? <context>: CREATE TABLE table_name_73 (club VARCHAR, founded VARCHAR, sport VARCHAR) | SELECT club FROM table_name_73 WHERE founded > 1875 AND sport = "football" |
12,059 | <question>: What score did Seve Ballesteros have when he was in T3 place? <context>: CREATE TABLE table_name_54 (score VARCHAR, place VARCHAR, player VARCHAR) | SELECT score FROM table_name_54 WHERE place = "t3" AND player = "seve ballesteros" |
12,060 | <question>: What was the money value for Jerry Pate? <context>: CREATE TABLE table_name_43 (money___$__ VARCHAR, player VARCHAR) | SELECT money___$__ FROM table_name_43 WHERE player = "jerry pate" |
12,061 | <question>: What country is Curtis Strange from? <context>: CREATE TABLE table_name_54 (country VARCHAR, player VARCHAR) | SELECT country FROM table_name_54 WHERE player = "curtis strange" |
12,062 | <question>: Who had a score of 77-69-70-71=287? <context>: CREATE TABLE table_name_91 (player VARCHAR, score VARCHAR) | SELECT player FROM table_name_91 WHERE score = 77 - 69 - 70 - 71 = 287 |
12,063 | <question>: What was Tom Kite's to par? <context>: CREATE TABLE table_name_71 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_71 WHERE player = "tom kite" |
12,064 | <question>: What is the date for the game where Platense was the home side? <context>: CREATE TABLE table_name_99 (date VARCHAR, home VARCHAR) | SELECT date FROM table_name_99 WHERE home = "platense" |
12,065 | <question>: On what date was the game with fewer than 6650 in attendance, that finished 0:1? <context>: CREATE TABLE table_name_30 (date VARCHAR, attendance VARCHAR, score VARCHAR) | SELECT date FROM table_name_30 WHERE attendance < 6650 AND score = "0:1" |
12,066 | <question>: Who was the home team in the game with more than 1675, and Olimpia was the away side? <context>: CREATE TABLE table_name_28 (home VARCHAR, attendance VARCHAR, away VARCHAR) | SELECT home FROM table_name_28 WHERE attendance > 1675 AND away = "olimpia" |
12,067 | <question>: What was the total Attendance in weeks previous of 5, playing the Seattle Seahawks? <context>: CREATE TABLE table_name_47 (attendance VARCHAR, week VARCHAR, opponent VARCHAR) | SELECT COUNT(attendance) FROM table_name_47 WHERE week < 5 AND opponent = "seattle seahawks" |
12,068 | <question>: Who is the head coach for the team that has finke as the shirt sponsor? <context>: CREATE TABLE table_name_75 (head_coach VARCHAR, shirt_sponsor VARCHAR) | SELECT head_coach FROM table_name_75 WHERE shirt_sponsor = "finke" |
12,069 | <question>: Who was the team captain of tus koblenz? <context>: CREATE TABLE table_name_11 (team VARCHAR) | SELECT team AS captain FROM table_name_11 WHERE team = "tus koblenz" |
12,070 | <question>: Who is the shirt sponsor for the team with a head coach of andre schubert and a kitmaker of puma? <context>: CREATE TABLE table_name_48 (shirt_sponsor VARCHAR, kitmaker VARCHAR, head_coach VARCHAR) | SELECT shirt_sponsor FROM table_name_48 WHERE kitmaker = "puma" AND head_coach = "andre schubert" |
12,071 | <question>: Who is the team captain for the team with sparkasse (düsseldorf) as the shirt sponsor? <context>: CREATE TABLE table_name_41 (team VARCHAR, shirt_sponsor VARCHAR) | SELECT team AS captain FROM table_name_41 WHERE shirt_sponsor = "sparkasse (düsseldorf)" |
12,072 | <question>: Who is the head coach for the team, arminia bielefeld? <context>: CREATE TABLE table_name_94 (head_coach VARCHAR, team VARCHAR) | SELECT head_coach FROM table_name_94 WHERE team = "arminia bielefeld" |
12,073 | <question>: What is the result of the game with 77,698 in attendance? <context>: CREATE TABLE table_name_61 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_61 WHERE attendance = "77,698" |
12,074 | <question>: What is the Venue when the result was 2-1? <context>: CREATE TABLE table_name_60 (venue VARCHAR, result VARCHAR) | SELECT venue FROM table_name_60 WHERE result = "2-1" |
12,075 | <question>: What is the venue when the Round shows after extra time, chelsea won on 4-1 on penalties? <context>: CREATE TABLE table_name_64 (venue VARCHAR, round VARCHAR) | SELECT venue FROM table_name_64 WHERE round = "after extra time, chelsea won on 4-1 on penalties" |
12,076 | <question>: What was the attendance when the result was 1-1? <context>: CREATE TABLE table_name_12 (attendance VARCHAR, result VARCHAR) | SELECT attendance FROM table_name_12 WHERE result = "1-1" |
12,077 | <question>: What is the Version of the CD release? <context>: CREATE TABLE table_name_99 (version VARCHAR, format VARCHAR) | SELECT version FROM table_name_99 WHERE format = "cd" |
12,078 | <question>: What is the Label of the Original CD release? <context>: CREATE TABLE table_name_40 (label VARCHAR, format VARCHAR, version VARCHAR) | SELECT label FROM table_name_40 WHERE format = "cd" AND version = "original" |
12,079 | <question>: What is the Version of the CD release on June 12, 2008 in Cyprus? <context>: CREATE TABLE table_name_82 (version VARCHAR, region VARCHAR, format VARCHAR, date VARCHAR) | SELECT version FROM table_name_82 WHERE format = "cd" AND date = "june 12, 2008" AND region = "cyprus" |
12,080 | <question>: What is the Region of the release on December 22, 2008? <context>: CREATE TABLE table_name_2 (region VARCHAR, date VARCHAR) | SELECT region FROM table_name_2 WHERE date = "december 22, 2008" |
12,081 | <question>: What is the Label of the release on June 12, 2008 in Cyprus? <context>: CREATE TABLE table_name_62 (label VARCHAR, date VARCHAR, region VARCHAR) | SELECT label FROM table_name_62 WHERE date = "june 12, 2008" AND region = "cyprus" |
12,082 | <question>: What is the Format of the release in Greece? <context>: CREATE TABLE table_name_16 (format VARCHAR, region VARCHAR) | SELECT format FROM table_name_16 WHERE region = "greece" |
12,083 | <question>: What is the total number of Tonnage, when Date is "25 June 1943"? <context>: CREATE TABLE table_name_4 (tonnage VARCHAR, date VARCHAR) | SELECT COUNT(tonnage) FROM table_name_4 WHERE date = "25 june 1943" |
12,084 | <question>: What is Ship, when Nationality is "Syria", and when Date is "26 June 1943", and when Tonnage is "80"? <context>: CREATE TABLE table_name_39 (ship VARCHAR, tonnage VARCHAR, nationality VARCHAR, date VARCHAR) | SELECT ship FROM table_name_39 WHERE nationality = "syria" AND date = "26 june 1943" AND tonnage = 80 |
12,085 | <question>: What is the record of the game that resulted in a loss with more than 56,648 people in attendance? <context>: CREATE TABLE table_name_99 (record VARCHAR, result VARCHAR, attendance VARCHAR) | SELECT record FROM table_name_99 WHERE result = "loss" AND attendance > 56 OFFSET 648 |
12,086 | <question>: What was the university of akron's enrollment? <context>: CREATE TABLE table_name_35 (enrollment VARCHAR, university VARCHAR) | SELECT enrollment FROM table_name_35 WHERE university = "university of akron" |
12,087 | <question>: Which athletics nickname was founded in 1872? <context>: CREATE TABLE table_name_86 (athletics_nickname VARCHAR, founded VARCHAR) | SELECT athletics_nickname FROM table_name_86 WHERE founded = "1872" |
12,088 | <question>: What date did the executive office in Dover take office? <context>: CREATE TABLE table_name_76 (Took VARCHAR, location VARCHAR, type VARCHAR) | SELECT Took AS office FROM table_name_76 WHERE location = "dover" AND type = "executive" |
12,089 | <question>: What left office date happened in Washington? <context>: CREATE TABLE table_name_94 (Left VARCHAR, location VARCHAR) | SELECT Left AS office FROM table_name_94 WHERE location = "washington" |
12,090 | <question>: What is the 2nd Leg, when Team 2 is Marbella? <context>: CREATE TABLE table_name_65 (team_2 VARCHAR) | SELECT 2 AS nd_leg FROM table_name_65 WHERE team_2 = "marbella" |
12,091 | <question>: What was the result F-A for round 5? <context>: CREATE TABLE table_name_22 (result_f___a VARCHAR, round VARCHAR) | SELECT result_f___a FROM table_name_22 WHERE round = "round 5" |
12,092 | <question>: What is the most elevated Played that has a Lost smaller than 12, and a Name of ec amberg (n), and a Position smaller than 4? <context>: CREATE TABLE table_name_59 (played INTEGER, position VARCHAR, lost VARCHAR, name VARCHAR) | SELECT MAX(played) FROM table_name_59 WHERE lost < 12 AND name = "ec amberg (n)" AND position < 4 |
12,093 | <question>: What is the average Lost that has a Name of ec amberg (n), and a Position smaller than 4? <context>: CREATE TABLE table_name_63 (lost INTEGER, name VARCHAR, position VARCHAR) | SELECT AVG(lost) FROM table_name_63 WHERE name = "ec amberg (n)" AND position < 4 |
12,094 | <question>: What is the whole of Points that has a Drawn smaller than 1? <context>: CREATE TABLE table_name_14 (points INTEGER, drawn INTEGER) | SELECT SUM(points) FROM table_name_14 WHERE drawn < 1 |
12,095 | <question>: What is the whole of Drawn that has a Lost of 4? <context>: CREATE TABLE table_name_33 (drawn INTEGER, lost VARCHAR) | SELECT SUM(drawn) FROM table_name_33 WHERE lost = 4 |
12,096 | <question>: What is the whole of Drawn that has a Played larger than 14? <context>: CREATE TABLE table_name_42 (drawn INTEGER, played INTEGER) | SELECT SUM(drawn) FROM table_name_42 WHERE played > 14 |
12,097 | <question>: What was the result of the game on April 28? <context>: CREATE TABLE table_name_75 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_75 WHERE date = "april 28" |
12,098 | <question>: Who was the home team on April 20 against Boston? <context>: CREATE TABLE table_name_36 (home_team VARCHAR, road_team VARCHAR, date VARCHAR) | SELECT home_team FROM table_name_36 WHERE road_team = "boston" AND date = "april 20" |
12,099 | <question>: What was the result of game 3? <context>: CREATE TABLE table_name_42 (result VARCHAR, game VARCHAR) | SELECT result FROM table_name_42 WHERE game = "game 3" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.