text
stringlengths 114
1.06k
|
---|
### question: How many points did Joe O'Meara have? ### answer: SELECT COUNT(points) FROM table_name_93 WHERE artist = "joe o'meara" ### context: CREATE TABLE table_name_93 (points VARCHAR, artist VARCHAR)
|
### question: How many points did Linda Martin have? ### answer: SELECT COUNT(points) FROM table_name_89 WHERE artist = "linda martin" ### context: CREATE TABLE table_name_89 (points VARCHAR, artist VARCHAR)
|
### question: WHAT IS THE SCORE WITH A WEEK LARGER THAN 13, AND VISITOR TEAM MONTREAL ALOUETTES? ### answer: SELECT score FROM table_name_39 WHERE week > 13 AND visitor = "montreal alouettes" ### context: CREATE TABLE table_name_39 (score VARCHAR, week VARCHAR, visitor VARCHAR)
|
### question: WHAT IS THE AVERAGE WEEK WITH A DATE OF JULY 25? ### answer: SELECT AVG(week) FROM table_name_5 WHERE date = "july 25" ### context: CREATE TABLE table_name_5 (week INTEGER, date VARCHAR)
|
### question: What was the tie for the Crystal Palace team? ### answer: SELECT tie_no FROM table_name_42 WHERE home_team = "crystal palace" ### context: CREATE TABLE table_name_42 (tie_no VARCHAR, home_team VARCHAR)
|
### question: What is the attendance for No. 15 tie? ### answer: SELECT attendance FROM table_name_72 WHERE tie_no = "15" ### context: CREATE TABLE table_name_72 (attendance VARCHAR, tie_no VARCHAR)
|
### question: WHich Open Cup has a Division larger than 4? ### answer: SELECT open_cup FROM table_name_30 WHERE division > 4 ### context: CREATE TABLE table_name_30 (open_cup VARCHAR, division INTEGER)
|
### question: Name the League which has a Regular Season of 3rd, atlantic? ### answer: SELECT league FROM table_name_86 WHERE regular_season = "3rd, atlantic" ### context: CREATE TABLE table_name_86 (league VARCHAR, regular_season VARCHAR)
|
### question: WHICH Regular Season has a Division of 4? ### answer: SELECT regular_season FROM table_name_19 WHERE division = 4 ### context: CREATE TABLE table_name_19 (regular_season VARCHAR, division VARCHAR)
|
### question: WHICH Regular Season has a League of npsl, and a Year of 2008? ### answer: SELECT regular_season FROM table_name_64 WHERE league = "npsl" AND year = "2008" ### context: CREATE TABLE table_name_64 (regular_season VARCHAR, league VARCHAR, year VARCHAR)
|
### question: NAME THE Playoffs that HAVE a League of npsl, and a Open Cup of did not enter, and a Year of 2013? ### answer: SELECT playoffs FROM table_name_8 WHERE league = "npsl" AND open_cup = "did not enter" AND year = "2013" ### context: CREATE TABLE table_name_8 (playoffs VARCHAR, year VARCHAR, league VARCHAR, open_cup VARCHAR)
|
### question: What is the average February that has 18-26-10 as the record, with a game less than 54? ### answer: SELECT AVG(february) FROM table_name_11 WHERE record = "18-26-10" AND game < 54 ### context: CREATE TABLE table_name_11 (february INTEGER, record VARCHAR, game VARCHAR)
|
### question: How many Februarys have montreal canadiens as the opponent, and 18-25-10 as the record, with a game greater than 53? ### answer: SELECT COUNT(february) FROM table_name_32 WHERE opponent = "montreal canadiens" AND record = "18-25-10" AND game > 53 ### context: CREATE TABLE table_name_32 (february VARCHAR, game VARCHAR, opponent VARCHAR, record VARCHAR)
|
### question: what is the surface when the opponent is selma babic? ### answer: SELECT surface FROM table_name_31 WHERE opponent = "selma babic" ### context: CREATE TABLE table_name_31 (surface VARCHAR, opponent VARCHAR)
|
### question: what is the surface when the round is gii play-offs and the edition is 2009 fed cup europe/africa group ii? ### answer: SELECT surface FROM table_name_65 WHERE round = "gii play-offs" AND edition = "2009 fed cup europe/africa group ii" ### context: CREATE TABLE table_name_65 (surface VARCHAR, round VARCHAR, edition VARCHAR)
|
### question: what is the date when the surface is clay and the result is 6β7 (4β7) , 1β6? ### answer: SELECT date FROM table_name_99 WHERE surface = "clay" AND result = "6β7 (4β7) , 1β6" ### context: CREATE TABLE table_name_99 (date VARCHAR, surface VARCHAR, result VARCHAR)
|
### question: who is the opponent when norway is against? ### answer: SELECT opponent FROM table_name_67 WHERE against = "norway" ### context: CREATE TABLE table_name_67 (opponent VARCHAR, against VARCHAR)
|
### question: What is Postion, when Weight is greater than 220, and when Player is "Travis Knight"? ### answer: SELECT position FROM table_name_28 WHERE weight > 220 AND player = "travis knight" ### context: CREATE TABLE table_name_28 (position VARCHAR, weight VARCHAR, player VARCHAR)
|
### question: What is the lowest Number, when College is "University of Alabama"? ### answer: SELECT MIN(number) FROM table_name_48 WHERE college = "university of alabama" ### context: CREATE TABLE table_name_48 (number INTEGER, college VARCHAR)
|
### question: What is the total number of Weight, when Position is "Forward/Center", when Player is "Othella Harrington", and when Number is less than 32? ### answer: SELECT COUNT(weight) FROM table_name_90 WHERE position = "forward/center" AND player = "othella harrington" AND number < 32 ### context: CREATE TABLE table_name_90 (weight VARCHAR, number VARCHAR, position VARCHAR, player VARCHAR)
|
### question: What is Years Exp, when Height is "7-2"? ### answer: SELECT years_exp FROM table_name_94 WHERE height = "7-2" ### context: CREATE TABLE table_name_94 (years_exp VARCHAR, height VARCHAR)
|
### question: What is Position, when Weight is greater than 200, when Number is less than 44, when Years Exp is 9, and when College is "University of New Mexico"? ### answer: SELECT position FROM table_name_68 WHERE weight > 200 AND number < 44 AND years_exp = "9" AND college = "university of new mexico" ### context: CREATE TABLE table_name_68 (position VARCHAR, college VARCHAR, years_exp VARCHAR, weight VARCHAR, number VARCHAR)
|
### question: What was the release price of the Atom Z510PT processor? ### answer: SELECT release_price___usd__ FROM table_name_53 WHERE model_number = "atom z510pt" ### context: CREATE TABLE table_name_53 (release_price___usd__ VARCHAR, model_number VARCHAR)
|
### question: Which part number was used for the Atom Z500 processor? ### answer: SELECT part_number_s_ FROM table_name_51 WHERE model_number = "atom z500" ### context: CREATE TABLE table_name_51 (part_number_s_ VARCHAR, model_number VARCHAR)
|
### question: What was the multiplier of the processor with sSpec number of SLGPR(C0) and a release price of N/A? ### answer: SELECT mult FROM table_name_35 WHERE release_price___usd__ = "n/a" AND sspec_number = "slgpr(c0)" ### context: CREATE TABLE table_name_35 (mult VARCHAR, release_price___usd__ VARCHAR, sspec_number VARCHAR)
|
### question: Who is the runner-up at the Chicago challenge? ### answer: SELECT runner_s__up FROM table_name_68 WHERE tournament = "chicago challenge" ### context: CREATE TABLE table_name_68 (runner_s__up VARCHAR, tournament VARCHAR)
|
### question: Who is the runner-up of Atlantic city classic? ### answer: SELECT runner_s__up FROM table_name_42 WHERE tournament = "atlantic city classic" ### context: CREATE TABLE table_name_42 (runner_s__up VARCHAR, tournament VARCHAR)
|
### question: What is the date of the U.S. Women's open? ### answer: SELECT date FROM table_name_61 WHERE tournament = "u.s. women's open" ### context: CREATE TABLE table_name_61 (date VARCHAR, tournament VARCHAR)
|
### question: What is the margin of victory of the gna/glendale federal classic? ### answer: SELECT margin_of_victory FROM table_name_8 WHERE tournament = "gna/glendale federal classic" ### context: CREATE TABLE table_name_8 (margin_of_victory VARCHAR, tournament VARCHAR)
|
### question: Which class has *buranaz as Part 4? ### answer: SELECT class FROM table_name_34 WHERE part_4 = "*buranaz" ### context: CREATE TABLE table_name_34 (class VARCHAR, part_4 VARCHAR)
|
### question: What is the verb meaning for *bar as Part 2? ### answer: SELECT verb_meaning FROM table_name_88 WHERE part_2 = "*bar" ### context: CREATE TABLE table_name_88 (verb_meaning VARCHAR, part_2 VARCHAR)
|
### question: Which class has *alanaz as Part 4? ### answer: SELECT class FROM table_name_62 WHERE part_4 = "*alanaz" ### context: CREATE TABLE table_name_62 (class VARCHAR, part_4 VARCHAR)
|
### question: Which class has *fraus as Part 2? ### answer: SELECT class FROM table_name_59 WHERE part_2 = "*fraus" ### context: CREATE TABLE table_name_59 (class VARCHAR, part_2 VARCHAR)
|
### question: what is the transfer fee for evilasio? ### answer: SELECT transfer_fee FROM table_name_60 WHERE name = "evilasio" ### context: CREATE TABLE table_name_60 (transfer_fee VARCHAR, name VARCHAR)
|
### question: What team did James Vanderberg belong to when the Completions had a status of redshirt? ### answer: SELECT team FROM table_name_21 WHERE completions = "redshirt" ### context: CREATE TABLE table_name_21 (team VARCHAR, completions VARCHAR)
|
### question: What were the number of completions for James Vanderberg on Iowa when his yards were 45? ### answer: SELECT completions FROM table_name_72 WHERE team = "iowa" AND yards = "45" ### context: CREATE TABLE table_name_72 (completions VARCHAR, team VARCHAR, yards VARCHAR)
|
### question: What was the team Vanderberg belonged to when there was 42 completions? ### answer: SELECT team FROM table_name_19 WHERE completions = "42" ### context: CREATE TABLE table_name_19 (team VARCHAR, completions VARCHAR)
|
### question: What number of attempts were recorded when the completions were 223? ### answer: SELECT attempts FROM table_name_17 WHERE completions = "223" ### context: CREATE TABLE table_name_17 (attempts VARCHAR, completions VARCHAR)
|
### question: In what year was the number of attempts 888? ### answer: SELECT year FROM table_name_96 WHERE attempts = "888" ### context: CREATE TABLE table_name_96 (year VARCHAR, attempts VARCHAR)
|
### question: What was the number of attempts for Vanderberg on Iowa when the recorded yards were 2,249? ### answer: SELECT attempts FROM table_name_42 WHERE team = "iowa" AND yards = "2,249" ### context: CREATE TABLE table_name_42 (attempts VARCHAR, team VARCHAR, yards VARCHAR)
|
### question: Which Leading Scorer has an Opponent of @ indiana? ### answer: SELECT Leading AS scorer FROM table_name_10 WHERE opponent = "@ indiana" ### context: CREATE TABLE table_name_10 (Leading VARCHAR, opponent VARCHAR)
|
### question: Which Leading Scorer has a Record of 3-3? ### answer: SELECT Leading AS scorer FROM table_name_70 WHERE record = "3-3" ### context: CREATE TABLE table_name_70 (Leading VARCHAR, record VARCHAR)
|
### question: What is the date when tie number is 6? ### answer: SELECT date FROM table_name_98 WHERE tie_no = "6" ### context: CREATE TABLE table_name_98 (date VARCHAR, tie_no VARCHAR)
|
### question: Who is the home team with tie number 9? ### answer: SELECT home_team FROM table_name_93 WHERE tie_no = "9" ### context: CREATE TABLE table_name_93 (home_team VARCHAR, tie_no VARCHAR)
|
### question: Who is the home team when Sheffield United is the away team? ### answer: SELECT home_team FROM table_name_38 WHERE away_team = "sheffield united" ### context: CREATE TABLE table_name_38 (home_team VARCHAR, away_team VARCHAR)
|
### question: What is the date when Aston Villa is the away team? ### answer: SELECT date FROM table_name_98 WHERE away_team = "aston villa" ### context: CREATE TABLE table_name_98 (date VARCHAR, away_team VARCHAR)
|
### question: Who is the home team on 31 January 1951 when away team was Sheffield United? ### answer: SELECT home_team FROM table_name_75 WHERE date = "31 january 1951" AND away_team = "sheffield united" ### context: CREATE TABLE table_name_75 (home_team VARCHAR, date VARCHAR, away_team VARCHAR)
|
### question: What was the attendance during the match that took place after week 11 against the washington redskins? ### answer: SELECT MAX(attendance) FROM table_name_62 WHERE week > 11 AND opponent = "washington redskins" ### context: CREATE TABLE table_name_62 (attendance INTEGER, week VARCHAR, opponent VARCHAR)
|
### question: WHAT IS THE TO PAR FOR GEOFF OGILVY WITH A PLACE OF T3? ### answer: SELECT to_par FROM table_name_94 WHERE place = "t3" AND player = "geoff ogilvy" ### context: CREATE TABLE table_name_94 (to_par VARCHAR, place VARCHAR, player VARCHAR)
|
### question: What year has the ride flight deck and a rating of less than 5? ### answer: SELECT COUNT(year_opened) FROM table_name_47 WHERE ride = "flight deck" AND rating < 5 ### context: CREATE TABLE table_name_47 (year_opened VARCHAR, ride VARCHAR, rating VARCHAR)
|
### question: what is other names when death is may 23, 1821? ### answer: SELECT other_names FROM table_name_36 WHERE death = "may 23, 1821" ### context: CREATE TABLE table_name_36 (other_names VARCHAR, death VARCHAR)
|
### question: what is the name when death is november 10, 1842? ### answer: SELECT name FROM table_name_80 WHERE death = "november 10, 1842" ### context: CREATE TABLE table_name_80 (name VARCHAR, death VARCHAR)
|
### question: What is Internet Plan, when Price is "22 EUR"? ### answer: SELECT internet_plan FROM table_name_48 WHERE price = "22 eur" ### context: CREATE TABLE table_name_48 (internet_plan VARCHAR, price VARCHAR)
|
### question: What is Downstream, when Upstream is "384 kbit"? ### answer: SELECT downstream FROM table_name_88 WHERE upstream = "384 kbit" ### context: CREATE TABLE table_name_88 (downstream VARCHAR, upstream VARCHAR)
|
### question: What is Bandwidth Included, when Price is "50 EUR"? ### answer: SELECT bandwidth_included FROM table_name_45 WHERE price = "50 eur" ### context: CREATE TABLE table_name_45 (bandwidth_included VARCHAR, price VARCHAR)
|
### question: What is Upstream, when Price is "14 EUR"? ### answer: SELECT upstream FROM table_name_25 WHERE price = "14 eur" ### context: CREATE TABLE table_name_25 (upstream VARCHAR, price VARCHAR)
|
### question: What is Bandwidth Included, when Internet Plan is "8mb"? ### answer: SELECT bandwidth_included FROM table_name_85 WHERE internet_plan = "8mb" ### context: CREATE TABLE table_name_85 (bandwidth_included VARCHAR, internet_plan VARCHAR)
|
### question: What is the Price, when Upstream is "256 kbit"? ### answer: SELECT price FROM table_name_64 WHERE upstream = "256 kbit" ### context: CREATE TABLE table_name_64 (price VARCHAR, upstream VARCHAR)
|
### question: Which Semifinalists has a Finalist of andre agassi? ### answer: SELECT semifinalists FROM table_name_23 WHERE finalist = "andre agassi" ### context: CREATE TABLE table_name_23 (semifinalists VARCHAR, finalist VARCHAR)
|
### question: WHich Tournament has a Finalist of gustavo kuerten (4)? ### answer: SELECT tournament FROM table_name_31 WHERE finalist = "gustavo kuerten (4)" ### context: CREATE TABLE table_name_31 (tournament VARCHAR, finalist VARCHAR)
|
### question: Which finalist has Semifinalists of andre agassi (1) lleyton hewitt (14)? ### answer: SELECT finalist FROM table_name_3 WHERE semifinalists = "andre agassi (1) lleyton hewitt (14)" ### context: CREATE TABLE table_name_3 (finalist VARCHAR, semifinalists VARCHAR)
|
### question: Which Finalist has a Tournament of monte carlo? ### answer: SELECT finalist FROM table_name_20 WHERE tournament = "monte carlo" ### context: CREATE TABLE table_name_20 (finalist VARCHAR, tournament VARCHAR)
|
### question: WHo is the Winner of andre agassi Finalist? ### answer: SELECT winner FROM table_name_97 WHERE finalist = "andre agassi" ### context: CREATE TABLE table_name_97 (winner VARCHAR, finalist VARCHAR)
|
### question: WHich Tournament has a Finalist of marat safin (12)? ### answer: SELECT tournament FROM table_name_47 WHERE finalist = "marat safin (12)" ### context: CREATE TABLE table_name_47 (tournament VARCHAR, finalist VARCHAR)
|
### question: What was the date for the Sepang International circuit, round 3? ### answer: SELECT date FROM table_name_40 WHERE circuit = "sepang international circuit" AND round = "3" ### context: CREATE TABLE table_name_40 (date VARCHAR, circuit VARCHAR, round VARCHAR)
|
### question: Which round had a winning driver of Uwe Alzen, at the Sepang International circuit? ### answer: SELECT round FROM table_name_80 WHERE winning_driver = "uwe alzen" AND circuit = "sepang international circuit" ### context: CREATE TABLE table_name_80 (round VARCHAR, winning_driver VARCHAR, circuit VARCHAR)
|
### question: What was the round number for March 22? ### answer: SELECT round FROM table_name_92 WHERE date = "march 22" ### context: CREATE TABLE table_name_92 (round VARCHAR, date VARCHAR)
|
### question: Who had the high points in the game @ Charlotte? ### answer: SELECT high_points FROM table_name_98 WHERE team = "@ charlotte" ### context: CREATE TABLE table_name_98 (high_points VARCHAR, team VARCHAR)
|
### question: What's the record of Game 70? ### answer: SELECT record FROM table_name_77 WHERE game = 70 ### context: CREATE TABLE table_name_77 (record VARCHAR, game VARCHAR)
|
### question: Who had the high points when they played in Philips Arena 14,413? ### answer: SELECT high_points FROM table_name_48 WHERE location_attendance = "philips arena 14,413" ### context: CREATE TABLE table_name_48 (high_points VARCHAR, location_attendance VARCHAR)
|
### question: What is the date of the game that took place at the Resch Center? ### answer: SELECT date FROM table_name_41 WHERE game_site = "resch center" ### context: CREATE TABLE table_name_41 (date VARCHAR, game_site VARCHAR)
|
### question: Which network returns april 3, and a Show of shop 'til you drop? ### answer: SELECT new_returning_same_network FROM table_name_35 WHERE returning = "april 3" AND show = "shop 'til you drop" ### context: CREATE TABLE table_name_35 (new_returning_same_network VARCHAR, returning VARCHAR, show VARCHAR)
|
### question: Which retitled network has a Show of supermarket sweep? ### answer: SELECT retitled_as_same FROM table_name_92 WHERE show = "supermarket sweep" ### context: CREATE TABLE table_name_92 (retitled_as_same VARCHAR, show VARCHAR)
|
### question: Which show returns april 3 with a Previous Network of lifetime? ### answer: SELECT retitled_as_same FROM table_name_44 WHERE returning = "april 3" AND previous_network = "lifetime" ### context: CREATE TABLE table_name_44 (retitled_as_same VARCHAR, returning VARCHAR, previous_network VARCHAR)
|
### question: What is the lowest grid number for Yamaha? ### answer: SELECT MIN(grid) FROM table_name_3 WHERE manufacturer = "yamaha" ### context: CREATE TABLE table_name_3 (grid INTEGER, manufacturer VARCHAR)
|
### question: How many laps had a grid over 16 and a Time of +1:35.890? ### answer: SELECT laps FROM table_name_79 WHERE grid > 16 AND time = "+1:35.890" ### context: CREATE TABLE table_name_79 (laps VARCHAR, grid VARCHAR, time VARCHAR)
|
### question: What was the lowest lab for Gilera with a grid less than 12? ### answer: SELECT MIN(laps) FROM table_name_81 WHERE manufacturer = "gilera" AND grid < 12 ### context: CREATE TABLE table_name_81 (laps INTEGER, manufacturer VARCHAR, grid VARCHAR)
|
### question: What is the highest Grid with a time of +1:19.905, and less than 20 laps? ### answer: SELECT MAX(grid) FROM table_name_22 WHERE time = "+1:19.905" AND laps < 20 ### context: CREATE TABLE table_name_22 (grid INTEGER, time VARCHAR, laps VARCHAR)
|
### question: What Rider has a Grid of 21? ### answer: SELECT rider FROM table_name_91 WHERE grid = 21 ### context: CREATE TABLE table_name_91 (rider VARCHAR, grid VARCHAR)
|
### question: Who is the away captain when the game resulted in [[|]] by 7 wickets? ### answer: SELECT away_captain FROM table_name_68 WHERE result = "[[|]] by 7 wickets" ### context: CREATE TABLE table_name_68 (away_captain VARCHAR, result VARCHAR)
|
### question: Who is the home captain of the match that resulted [[|]] by 151 runs? ### answer: SELECT home_captain FROM table_name_70 WHERE result = "[[|]] by 151 runs" ### context: CREATE TABLE table_name_70 (home_captain VARCHAR, result VARCHAR)
|
### question: How many totals have a To par of β1? ### answer: SELECT SUM(total) FROM table_name_98 WHERE to_par = "β1" ### context: CREATE TABLE table_name_98 (total INTEGER, to_par VARCHAR)
|
### question: Which Year(s) won has a Total smaller than 285, and a Player of tom watson? ### answer: SELECT year_s__won FROM table_name_51 WHERE total < 285 AND player = "tom watson" ### context: CREATE TABLE table_name_51 (year_s__won VARCHAR, total VARCHAR, player VARCHAR)
|
### question: Which Finish has a Total of 288? ### answer: SELECT finish FROM table_name_12 WHERE total = 288 ### context: CREATE TABLE table_name_12 (finish VARCHAR, total VARCHAR)
|
### question: Who won in 1991? ### answer: SELECT player FROM table_name_89 WHERE year_s__won = "1991" ### context: CREATE TABLE table_name_89 (player VARCHAR, year_s__won VARCHAR)
|
### question: Who was picked before 149 in round 9? ### answer: SELECT player FROM table_name_64 WHERE pick < 149 AND round = 9 ### context: CREATE TABLE table_name_64 (player VARCHAR, pick VARCHAR, round VARCHAR)
|
### question: Who was pick 16 and before round 10? ### answer: SELECT player FROM table_name_30 WHERE round < 10 AND pick = 16 ### context: CREATE TABLE table_name_30 (player VARCHAR, round VARCHAR, pick VARCHAR)
|
### question: What is Affiliation, when Nickname is Bulldogs? ### answer: SELECT affiliation FROM table_name_4 WHERE nickname = "bulldogs" ### context: CREATE TABLE table_name_4 (affiliation VARCHAR, nickname VARCHAR)
|
### question: What is the average Founded, when Enrollment is 4,000? ### answer: SELECT AVG(founded) FROM table_name_68 WHERE enrollment = 4 OFFSET 000 ### context: CREATE TABLE table_name_68 (founded INTEGER, enrollment VARCHAR)
|
### question: Which team raced at Amaroo Park? ### answer: SELECT team FROM table_name_65 WHERE circuit = "amaroo park" ### context: CREATE TABLE table_name_65 (team VARCHAR, circuit VARCHAR)
|
### question: On what date did Dick Johnson with at Calder? ### answer: SELECT date FROM table_name_10 WHERE winner = "dick johnson" AND race_title = "calder" ### context: CREATE TABLE table_name_10 (date VARCHAR, winner VARCHAR, race_title VARCHAR)
|
### question: On what date was the race in Melbourne, Victoria? ### answer: SELECT date FROM table_name_42 WHERE city___state = "melbourne, victoria" ### context: CREATE TABLE table_name_42 (date VARCHAR, city___state VARCHAR)
|
### question: Which city or state contains Calder Park Raceway? ### answer: SELECT city___state FROM table_name_80 WHERE circuit = "calder park raceway" ### context: CREATE TABLE table_name_80 (city___state VARCHAR, circuit VARCHAR)
|
### question: What is the most reduced Margin that has a St Kilda Saints of 11.13 (79)? ### answer: SELECT MIN(margin) FROM table_name_79 WHERE st_kilda_saints = "11.13 (79)" ### context: CREATE TABLE table_name_79 (margin INTEGER, st_kilda_saints VARCHAR)
|
### question: What is the average Margin that has a Round of 13. (h)? ### answer: SELECT AVG(margin) FROM table_name_3 WHERE round = "13. (h)" ### context: CREATE TABLE table_name_3 (margin INTEGER, round VARCHAR)
|
### question: What is the location of South Adelaide? ### answer: SELECT location FROM table_name_46 WHERE team = "south adelaide" ### context: CREATE TABLE table_name_46 (location VARCHAR, team VARCHAR)
|
### question: Which team has an unknown coach and location of Athelstone? ### answer: SELECT team FROM table_name_98 WHERE coach = "unknown" AND location = "athelstone" ### context: CREATE TABLE table_name_98 (team VARCHAR, coach VARCHAR, location VARCHAR)
|
### question: When was the team that plays at Athelstone founded? ### answer: SELECT founded FROM table_name_59 WHERE location = "athelstone" ### context: CREATE TABLE table_name_59 (founded VARCHAR, location VARCHAR)
|
### question: Who is the coach of the team from Port Pirie? ### answer: SELECT coach FROM table_name_6 WHERE location = "port pirie" ### context: CREATE TABLE table_name_6 (coach VARCHAR, location VARCHAR)
|
### question: Who is the coach of the team with home ground at Club Cove? ### answer: SELECT coach FROM table_name_25 WHERE home_ground = "club cove" ### context: CREATE TABLE table_name_25 (coach VARCHAR, home_ground VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.