text stringlengths 114 1.06k |
|---|
### question: What's the rounds for jenson button with a bmw e41 engine? ### answer: SELECT rounds FROM table_name_2 WHERE engine_† = "bmw e41" AND driver = "jenson button" ### context: CREATE TABLE table_name_2 (rounds VARCHAR, engine_† VARCHAR, driver VARCHAR) |
### question: What is the result for pfc: put up or shut up? ### answer: SELECT res FROM table_name_97 WHERE event = "pfc: put up or shut up" ### context: CREATE TABLE table_name_97 (res VARCHAR, event VARCHAR) |
### question: What is the production code of the episode written by Gary Sturgis that is bigger than season number 23 and smaller than series number 126? ### answer: SELECT production_code FROM table_name_75 WHERE season__number > 23 AND series__number < 126 AND written_by = "gary sturgis" ### context: CREATE TABLE tab... |
### question: Which rounds had the B195 chassis? ### answer: SELECT rounds FROM table_name_89 WHERE chassis = "b195" ### context: CREATE TABLE table_name_89 (rounds VARCHAR, chassis VARCHAR) |
### question: Who was the driver of the Ford EDB 3.0 v8 engine? ### answer: SELECT driver FROM table_name_82 WHERE engine = "ford edb 3.0 v8" ### context: CREATE TABLE table_name_82 (driver VARCHAR, engine VARCHAR) |
### question: I want the highest grid for Laps of 38 ### answer: SELECT MAX(grid) FROM table_name_94 WHERE laps = 38 ### context: CREATE TABLE table_name_94 (grid INTEGER, laps VARCHAR) |
### question: Tell me the constructor for Grid more than 4 and drivers being heinz-harald frentzen ### answer: SELECT constructor FROM table_name_57 WHERE grid > 4 AND driver = "heinz-harald frentzen" ### context: CREATE TABLE table_name_57 (constructor VARCHAR, grid VARCHAR, driver VARCHAR) |
### question: What is Ivaiporã, pr's biggest population? ### answer: SELECT MAX(population) FROM table_name_13 WHERE town_city = "ivaiporã, pr" ### context: CREATE TABLE table_name_13 (population INTEGER, town_city VARCHAR) |
### question: Which is the smallest First year when the population is 32,645? ### answer: SELECT MIN(first_year) FROM table_name_33 WHERE population = 32 OFFSET 645 ### context: CREATE TABLE table_name_33 (first_year INTEGER, population VARCHAR) |
### question: Which Jushin Liger has a Super Shocker of liger (13:59)? ### answer: SELECT jushin_liger FROM table_name_44 WHERE super_shocker = "liger (13:59)" ### context: CREATE TABLE table_name_44 (jushin_liger VARCHAR, super_shocker VARCHAR) |
### question: Which Masaaki Mochizuki has a Gran Hamada of hamada (10:47)? ### answer: SELECT masaaki_mochizuki FROM table_name_56 WHERE gran_hamada = "hamada (10:47)" ### context: CREATE TABLE table_name_56 (masaaki_mochizuki VARCHAR, gran_hamada VARCHAR) |
### question: Which Tatsuhito Takaiwa has a Koji Kanemoto of liger (20:29)? ### answer: SELECT tatsuhito_takaiwa FROM table_name_38 WHERE koji_kanemoto = "liger (20:29)" ### context: CREATE TABLE table_name_38 (tatsuhito_takaiwa VARCHAR, koji_kanemoto VARCHAR) |
### question: Which Gran Hamada has a Block A of tatsuhito takaiwa? ### answer: SELECT gran_hamada FROM table_name_67 WHERE block_a = "tatsuhito takaiwa" ### context: CREATE TABLE table_name_67 (gran_hamada VARCHAR, block_a VARCHAR) |
### question: Which Jushin Liger has a Gran Hamada of kendo kashin? ### answer: SELECT jushin_liger FROM table_name_60 WHERE gran_hamada = "kendo kashin" ### context: CREATE TABLE table_name_60 (jushin_liger VARCHAR, gran_hamada VARCHAR) |
### question: Which Jushin Liger has a Masaaki Mochizuki of kashin (10:00)? ### answer: SELECT jushin_liger FROM table_name_20 WHERE masaaki_mochizuki = "kashin (10:00)" ### context: CREATE TABLE table_name_20 (jushin_liger VARCHAR, masaaki_mochizuki VARCHAR) |
### question: What is the code for Saint-Damien in Matawinie with a type p? ### answer: SELECT AVG(code) FROM table_name_35 WHERE regional_county_municipality = "matawinie" AND type = "p" AND name = "saint-damien" ### context: CREATE TABLE table_name_35 (code INTEGER, name VARCHAR, regional_county_municipality VARCHAR,... |
### question: What is the name for the regional county municipality of d'autray and a code less than 52017? ### answer: SELECT name FROM table_name_9 WHERE regional_county_municipality = "d'autray" AND code < 52017 ### context: CREATE TABLE table_name_9 (name VARCHAR, regional_county_municipality VARCHAR, code VARCHAR) |
### question: Which Delivery has a Name of quince? ### answer: SELECT delivery FROM table_name_80 WHERE name = "quince" ### context: CREATE TABLE table_name_80 (delivery VARCHAR, name VARCHAR) |
### question: Which Elevation + Height has a Delivery of barge and a Location of bikini, yurochi aka irioj (dog)? ### answer: SELECT elevation_ + _height FROM table_name_96 WHERE delivery = "barge" AND location = "bikini, yurochi aka irioj (dog)" ### context: CREATE TABLE table_name_96 (elevation_ VARCHAR, _height VARC... |
### question: Which Purpose has a Location of enewetak, runit (yvonne) and the Name of cactus? ### answer: SELECT purpose FROM table_name_96 WHERE location = "enewetak, runit (yvonne)" AND name = "cactus" ### context: CREATE TABLE table_name_96 (purpose VARCHAR, location VARCHAR, name VARCHAR) |
### question: Which Purpose has a Name of oak? ### answer: SELECT purpose FROM table_name_49 WHERE name = "oak" ### context: CREATE TABLE table_name_49 (purpose VARCHAR, name VARCHAR) |
### question: What Location has a Delivery of barge and the Name of scaevola? ### answer: SELECT location FROM table_name_77 WHERE delivery = "barge" AND name = "scaevola" ### context: CREATE TABLE table_name_77 (location VARCHAR, delivery VARCHAR, name VARCHAR) |
### question: Which Purpose has an Elevation + Height of 0 + metres (ft), a Location of bikini, namu (charlie), and a Yield of 220 kt? ### answer: SELECT purpose FROM table_name_37 WHERE elevation_ + _height = "0 + metres (ft)" AND location = "bikini, namu (charlie)" AND yield = "220 kt" ### context: CREATE TABLE table... |
### question: Who was the colour commmentator that broadcasted along with the Play-by-play of bob cole? ### answer: SELECT colour_commentator_s_ FROM table_name_1 WHERE play_by_play = "bob cole" ### context: CREATE TABLE table_name_1 (colour_commentator_s_ VARCHAR, play_by_play VARCHAR) |
### question: Which network had the host of john wells? ### answer: SELECT network FROM table_name_57 WHERE studio_host = "john wells" ### context: CREATE TABLE table_name_57 (network VARCHAR, studio_host VARCHAR) |
### question: Who manufactured the vehicle withdrawn after 1932? ### answer: SELECT manufacturer FROM table_name_24 WHERE year_withdrawn > 1932 ### context: CREATE TABLE table_name_24 (manufacturer VARCHAR, year_withdrawn INTEGER) |
### question: Who manufactured the vehicle that was withdrawn in 1927? ### answer: SELECT manufacturer FROM table_name_52 WHERE year_withdrawn = 1927 ### context: CREATE TABLE table_name_52 (manufacturer VARCHAR, year_withdrawn VARCHAR) |
### question: What is the total number of losses for the Team of Montreal with Goals For larger than 29? ### answer: SELECT COUNT(losses) FROM table_name_50 WHERE goals_for > 29 AND team = "montreal" ### context: CREATE TABLE table_name_50 (losses VARCHAR, goals_for VARCHAR, team VARCHAR) |
### question: What is the average Goals For for a team that has more Wins than 8? ### answer: SELECT AVG(goals_for) FROM table_name_94 WHERE wins > 8 ### context: CREATE TABLE table_name_94 (goals_for INTEGER, wins INTEGER) |
### question: What is the largest number of Games Played with Losses of 3, and more Wins than 5? ### answer: SELECT MAX(games_played) FROM table_name_40 WHERE losses = 3 AND wins > 5 ### context: CREATE TABLE table_name_40 (games_played INTEGER, losses VARCHAR, wins VARCHAR) |
### question: What are the number of Ties for games with Goals Against smaller than 33? ### answer: SELECT ties FROM table_name_23 WHERE goals_against < 33 ### context: CREATE TABLE table_name_23 (ties VARCHAR, goals_against INTEGER) |
### question: What is the number of Goals For for Games Played more than 8? ### answer: SELECT SUM(goals_for) FROM table_name_44 WHERE games_played > 8 ### context: CREATE TABLE table_name_44 (goals_for INTEGER, games_played INTEGER) |
### question: What party is class 1 in wisconsin? ### answer: SELECT party FROM table_name_99 WHERE class = 1 AND state = "wisconsin" ### context: CREATE TABLE table_name_99 (party VARCHAR, class VARCHAR, state VARCHAR) |
### question: What state was maria cantwell born in after 1955? ### answer: SELECT state FROM table_name_50 WHERE born > 1955 AND name = "maria cantwell" ### context: CREATE TABLE table_name_50 (state VARCHAR, born VARCHAR, name VARCHAR) |
### question: Name the sum of Laps for lance reventlow with grid more than 16 ### answer: SELECT SUM(laps) FROM table_name_56 WHERE driver = "lance reventlow" AND grid > 16 ### context: CREATE TABLE table_name_56 (laps INTEGER, driver VARCHAR, grid VARCHAR) |
### question: Tell me the constructor that has 35 Laps with a grid more than 5 ### answer: SELECT constructor FROM table_name_61 WHERE laps = 35 AND grid > 5 ### context: CREATE TABLE table_name_61 (constructor VARCHAR, laps VARCHAR, grid VARCHAR) |
### question: What is the total number of Grids for Chuck Daigh? ### answer: SELECT COUNT(grid) FROM table_name_29 WHERE driver = "chuck daigh" ### context: CREATE TABLE table_name_29 (grid VARCHAR, driver VARCHAR) |
### question: What party is Marie-Dominique Simonet part of? ### answer: SELECT party FROM table_name_97 WHERE name = "marie-dominique simonet" ### context: CREATE TABLE table_name_97 (party VARCHAR, name VARCHAR) |
### question: Which vehicle has a Diagram of 516 or smaller, and a driving motor brake second (dmbs) type. ### answer: SELECT seating FROM table_name_53 WHERE diagram_no > 516 AND type = "driving motor brake second (dmbs)" ### context: CREATE TABLE table_name_53 (seating VARCHAR, diagram_no VARCHAR, type VARCHAR) |
### question: What's the lowest total when the floor exercise is less than 36.724 and the rank is lower than 8? ### answer: SELECT MIN(total) FROM table_name_13 WHERE floor_exercise < 36.724 AND rank < 8 ### context: CREATE TABLE table_name_13 (total INTEGER, floor_exercise VARCHAR, rank VARCHAR) |
### question: What is the average number scored in a friendly at kryoia soveto, moscow? ### answer: SELECT AVG(scored) FROM table_name_24 WHERE competition = "friendly" AND venue = "kryoia soveto, moscow" ### context: CREATE TABLE table_name_24 (scored INTEGER, competition VARCHAR, venue VARCHAR) |
### question: What is the home teams score when north melbourne is the away team? ### answer: SELECT home_team AS score FROM table_name_87 WHERE away_team = "north melbourne" ### context: CREATE TABLE table_name_87 (home_team VARCHAR, away_team VARCHAR) |
### question: What is the highest crowd when fitzroy is the home team? ### answer: SELECT MAX(crowd) FROM table_name_24 WHERE home_team = "fitzroy" ### context: CREATE TABLE table_name_24 (crowd INTEGER, home_team VARCHAR) |
### question: What is the lowest crowd when essendon is the away team? ### answer: SELECT MIN(crowd) FROM table_name_78 WHERE away_team = "essendon" ### context: CREATE TABLE table_name_78 (crowd INTEGER, away_team VARCHAR) |
### question: On what date was essendon the away team? ### answer: SELECT date FROM table_name_57 WHERE away_team = "essendon" ### context: CREATE TABLE table_name_57 (date VARCHAR, away_team VARCHAR) |
### question: What is the year when chief justice Mark Cady was appointed/elected? ### answer: SELECT appointed_elected FROM table_name_91 WHERE name = "chief justice mark cady" ### context: CREATE TABLE table_name_91 (appointed_elected VARCHAR, name VARCHAR) |
### question: What is the expiring term for Daryl Hecht when the appointing governor is Tom Vilsack? ### answer: SELECT term_expires FROM table_name_27 WHERE appointing_governor = "tom vilsack" AND name = "daryl hecht" ### context: CREATE TABLE table_name_27 (term_expires VARCHAR, appointing_governor VARCHAR, name VARC... |
### question: Which person has an expiring term of December 31, 2020, and has Terry Branstad as the appointing governor? ### answer: SELECT name FROM table_name_8 WHERE term_expires = "december 31, 2020" AND appointing_governor = "terry branstad" ### context: CREATE TABLE table_name_8 (name VARCHAR, term_expires VARCHA... |
### question: Who has a term that expires on December 31, 2020 and Terry Branstad for an appointing governor? ### answer: SELECT name FROM table_name_33 WHERE term_expires = "december 31, 2020" AND appointing_governor = "terry branstad" ### context: CREATE TABLE table_name_33 (name VARCHAR, term_expires VARCHAR, appoin... |
### question: What team picked 80? ### answer: SELECT team FROM table_name_94 WHERE pick = 80 ### context: CREATE TABLE table_name_94 (team VARCHAR, pick VARCHAR) |
### question: What is the away team that plays at Punt Road Oval? ### answer: SELECT away_team AS score FROM table_name_43 WHERE venue = "punt road oval" ### context: CREATE TABLE table_name_43 (away_team VARCHAR, venue VARCHAR) |
### question: What date did Footscray play and Away game? ### answer: SELECT date FROM table_name_24 WHERE away_team = "footscray" ### context: CREATE TABLE table_name_24 (date VARCHAR, away_team VARCHAR) |
### question: Name the average total for tournament less than 0 ### answer: SELECT AVG(total) FROM table_name_82 WHERE tournament < 0 ### context: CREATE TABLE table_name_82 (total INTEGER, tournament INTEGER) |
### question: Name the highest total for the tournament more than 0 and regular season after 8 ### answer: SELECT MAX(total) FROM table_name_15 WHERE tournament > 0 AND regular_season > 8 ### context: CREATE TABLE table_name_15 (total INTEGER, tournament VARCHAR, regular_season VARCHAR) |
### question: What was the number in attendance for the Detroit Lions game? ### answer: SELECT attendance FROM table_name_21 WHERE opponent = "detroit lions" ### context: CREATE TABLE table_name_21 (attendance VARCHAR, opponent VARCHAR) |
### question: Which date had 67,472 in attendance? ### answer: SELECT date FROM table_name_73 WHERE attendance = "67,472" ### context: CREATE TABLE table_name_73 (date VARCHAR, attendance VARCHAR) |
### question: Who was the opponent team on September 30, 1990? ### answer: SELECT opponent FROM table_name_23 WHERE date = "september 30, 1990" ### context: CREATE TABLE table_name_23 (opponent VARCHAR, date VARCHAR) |
### question: What was the team record by Week 8? ### answer: SELECT record FROM table_name_60 WHERE week = "8" ### context: CREATE TABLE table_name_60 (record VARCHAR, week VARCHAR) |
### question: Which week has Game site of Candlestick Park? ### answer: SELECT week FROM table_name_32 WHERE game_site = "candlestick park" ### context: CREATE TABLE table_name_32 (week VARCHAR, game_site VARCHAR) |
### question: What is the attandance figure on October 7, 1990? ### answer: SELECT attendance FROM table_name_23 WHERE date = "october 7, 1990" ### context: CREATE TABLE table_name_23 (attendance VARCHAR, date VARCHAR) |
### question: What driver was the winner when constructor was Maserati at the Monaco grand prix? ### answer: SELECT winning_driver FROM table_name_36 WHERE constructor = "maserati" AND race = "monaco grand prix" ### context: CREATE TABLE table_name_36 (winning_driver VARCHAR, constructor VARCHAR, race VARCHAR) |
### question: What circuit did Juan Manuel Fangio have the fastest lap at the german grand prix? ### answer: SELECT circuit FROM table_name_16 WHERE fastest_lap = "juan manuel fangio" AND race = "german grand prix" ### context: CREATE TABLE table_name_16 (circuit VARCHAR, fastest_lap VARCHAR, race VARCHAR) |
### question: What circuit was for the german grand prix? ### answer: SELECT circuit FROM table_name_5 WHERE race = "german grand prix" ### context: CREATE TABLE table_name_5 (circuit VARCHAR, race VARCHAR) |
### question: What is the total attendance for Detroit on hasek? ### answer: SELECT COUNT(attendance) FROM table_name_50 WHERE home = "detroit" AND decision = "hasek" ### context: CREATE TABLE table_name_50 (attendance VARCHAR, home VARCHAR, decision VARCHAR) |
### question: What was the method used when the opponent was Tyson Griffin? ### answer: SELECT method FROM table_name_75 WHERE opponent = "tyson griffin" ### context: CREATE TABLE table_name_75 (method VARCHAR, opponent VARCHAR) |
### question: Who wins the clive churchill medal when the losing team is the sydney roosters in 2010? ### answer: SELECT clive_churchill_medal FROM table_name_27 WHERE losingteam = "sydney roosters" AND season = 2010 ### context: CREATE TABLE table_name_27 (clive_churchill_medal VARCHAR, losingteam VARCHAR, season VARC... |
### question: What is the grand final date for the game with a score or 30-24? ### answer: SELECT grand_finaldate FROM table_name_44 WHERE score = "30-24" ### context: CREATE TABLE table_name_44 (grand_finaldate VARCHAR, score VARCHAR) |
### question: What competition in 2003 has a score of 2–1? ### answer: SELECT competition FROM table_name_81 WHERE year = 2003 AND score = "2–1" ### context: CREATE TABLE table_name_81 (competition VARCHAR, year VARCHAR, score VARCHAR) |
### question: What is the score of a year less than 2008 with loss as the result, in Antalya and a Competition of europe/africa zone, group i, round robin? ### answer: SELECT score FROM table_name_49 WHERE year < 2008 AND result = "loss" AND location = "antalya" AND competition = "europe/africa zone, group i, round rob... |
### question: What date was the Competition of europe/africa zone, group i, round robin, with a result of loss, in Antalya, and a Score of 1–2? ### answer: SELECT date FROM table_name_19 WHERE competition = "europe/africa zone, group i, round robin" AND result = "loss" AND location = "antalya" AND score = "1–2" ### con... |
### question: Where did Essendon play as the away team? ### answer: SELECT venue FROM table_name_69 WHERE away_team = "essendon" ### context: CREATE TABLE table_name_69 (venue VARCHAR, away_team VARCHAR) |
### question: Which team has a Losses value larger than 1 and a Wins value smaller than 0? ### answer: SELECT SUM(goal_diff) FROM table_name_94 WHERE losses > 1 AND wins < 0 ### context: CREATE TABLE table_name_94 (goal_diff INTEGER, losses VARCHAR, wins VARCHAR) |
### question: In guangzhou, who won the game with a score of 1-0? ### answer: SELECT result FROM table_name_23 WHERE location = "guangzhou" AND score = "1-0" ### context: CREATE TABLE table_name_23 (result VARCHAR, location VARCHAR, score VARCHAR) |
### question: On 2006-03-13 in the algarve cup, who won? ### answer: SELECT result FROM table_name_60 WHERE competition = "algarve cup" AND date = "2006-03-13" ### context: CREATE TABLE table_name_60 (result VARCHAR, competition VARCHAR, date VARCHAR) |
### question: Who won on 2007-04-14 ### answer: SELECT result FROM table_name_66 WHERE date = "2007-04-14" ### context: CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR) |
### question: Name the record when the visitor is mavericks ### answer: SELECT record FROM table_name_96 WHERE visitor = "mavericks" ### context: CREATE TABLE table_name_96 (record VARCHAR, visitor VARCHAR) |
### question: Name the date when the visitor is nets ### answer: SELECT date FROM table_name_29 WHERE visitor = "nets" ### context: CREATE TABLE table_name_29 (date VARCHAR, visitor VARCHAR) |
### question: What college did john sullivan attend? ### answer: SELECT college FROM table_name_28 WHERE player = "john sullivan" ### context: CREATE TABLE table_name_28 (college VARCHAR, player VARCHAR) |
### question: What is the average for the RB with an 8 yard long? ### answer: SELECT COUNT(avg) FROM table_name_7 WHERE long = 8 ### context: CREATE TABLE table_name_7 (avg VARCHAR, long VARCHAR) |
### question: What is the average evening gown score of the contestant from New York with a swimsuit score less than 8.703 and preliminaries larger than 8.292? ### answer: SELECT AVG(evening_gown) FROM table_name_47 WHERE swimsuit < 8.703 AND state = "new york" AND preliminaries > 8.292 ### context: CREATE TABLE table_... |
### question: What is the preliminaries of the contestant from Massachusetts with an evening gown higher than 8.631, an average less than 8.791, and an interview higher than 8.608? ### answer: SELECT COUNT(preliminaries) FROM table_name_97 WHERE evening_gown > 8.631 AND average < 8.791 AND state = "massachusetts" AND i... |
### question: What is the preliminaries of the contestant with a swimsuit less than 8.948 and an interview of 8.997? ### answer: SELECT preliminaries FROM table_name_99 WHERE swimsuit < 8.948 AND interview = 8.997 ### context: CREATE TABLE table_name_99 (preliminaries VARCHAR, swimsuit VARCHAR, interview VARCHAR) |
### question: What is the lowest interview of the contestant with an evening gown bigger than 9.343? ### answer: SELECT MIN(interview) FROM table_name_4 WHERE evening_gown > 9.343 ### context: CREATE TABLE table_name_4 (interview INTEGER, evening_gown INTEGER) |
### question: What is the evening gown score of the contestant from the District of Columbia with preliminaries smaller than 8.647? ### answer: SELECT COUNT(evening_gown) FROM table_name_79 WHERE preliminaries < 8.647 AND state = "district of columbia" ### context: CREATE TABLE table_name_79 (evening_gown VARCHAR, prel... |
### question: who is the driver that has laps more than 35 and the constructor is ferrari? ### answer: SELECT driver FROM table_name_51 WHERE laps > 35 AND constructor = "ferrari" ### context: CREATE TABLE table_name_51 (driver VARCHAR, laps VARCHAR, constructor VARCHAR) |
### question: What is the Team with a Date with december 11? ### answer: SELECT team FROM table_name_69 WHERE date = "december 11" ### context: CREATE TABLE table_name_69 (team VARCHAR, date VARCHAR) |
### question: What is the Score with a Team with @ houston? ### answer: SELECT score FROM table_name_35 WHERE team = "@ houston" ### context: CREATE TABLE table_name_35 (score VARCHAR, team VARCHAR) |
### question: What is the High points with a Team with boston? ### answer: SELECT high_points FROM table_name_95 WHERE team = "boston" ### context: CREATE TABLE table_name_95 (high_points VARCHAR, team VARCHAR) |
### question: What is the Record with a Date with december 9? ### answer: SELECT record FROM table_name_97 WHERE date = "december 9" ### context: CREATE TABLE table_name_97 (record VARCHAR, date VARCHAR) |
### question: Whose reign ended in Egypt? ### answer: SELECT reign_ended FROM table_name_72 WHERE country = "egypt" ### context: CREATE TABLE table_name_72 (reign_ended VARCHAR, country VARCHAR) |
### question: Whose reign ended in Afghanistan after 3 days? ### answer: SELECT reign_ended FROM table_name_2 WHERE length = "3 days" AND country = "afghanistan" ### context: CREATE TABLE table_name_2 (reign_ended VARCHAR, length VARCHAR, country VARCHAR) |
### question: Whose reign began in Vietnam and ended in October 1005? ### answer: SELECT reign_began FROM table_name_79 WHERE country = "vietnam" AND reign_ended = "october 1005" ### context: CREATE TABLE table_name_79 (reign_began VARCHAR, country VARCHAR, reign_ended VARCHAR) |
### question: When did Pharaoh Seth's reign end? ### answer: SELECT reign_ended FROM table_name_17 WHERE name = "pharaoh seth" ### context: CREATE TABLE table_name_17 (reign_ended VARCHAR, name VARCHAR) |
### question: What did the home team score at MCG? ### answer: SELECT home_team AS score FROM table_name_39 WHERE venue = "mcg" ### context: CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR) |
### question: What did the away team score in the game with a crowd size larger than 22,000? ### answer: SELECT away_team AS score FROM table_name_1 WHERE crowd > 22 OFFSET 000 ### context: CREATE TABLE table_name_1 (away_team VARCHAR, crowd INTEGER) |
### question: What was the largest crowd size at a South Melbourne home game? ### answer: SELECT MAX(crowd) FROM table_name_5 WHERE home_team = "south melbourne" ### context: CREATE TABLE table_name_5 (crowd INTEGER, home_team VARCHAR) |
### question: What is the record on august 18? ### answer: SELECT record FROM table_name_23 WHERE date = "august 18" ### context: CREATE TABLE table_name_23 (record VARCHAR, date VARCHAR) |
### question: Name the score on august 1 ### answer: SELECT score FROM table_name_26 WHERE date = "august 1" ### context: CREATE TABLE table_name_26 (score VARCHAR, date VARCHAR) |
### question: how many times was the points 18? ### answer: SELECT COUNT(place) FROM table_name_69 WHERE points = 18 ### context: CREATE TABLE table_name_69 (place VARCHAR, points VARCHAR) |
### question: what is the number of points when the place is less than 7, the draw is more than 2 and the artist is piece of cake? ### answer: SELECT COUNT(points) FROM table_name_76 WHERE place < 7 AND draw > 2 AND artist = "piece of cake" ### context: CREATE TABLE table_name_76 (points VARCHAR, artist VARCHAR, place ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.