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