training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_73 (street_address VARCHAR, name VARCHAR)
###human: The Palazzo's street address is listed as what?
###assistant: SELECT street_address FROM table_name_73 WHERE name = "the palazzo" |
###context:CREATE TABLE table_name_83 (song_title VARCHAR, artist VARCHAR)
###human: What's the title of the song by Winger?
###assistant: SELECT song_title FROM table_name_83 WHERE artist = "winger" |
###context:CREATE TABLE table_name_36 (runner_up VARCHAR)
###human: What shows for 3rd place when Runner-up shows as runner-up?
###assistant: SELECT 3 AS rd_place FROM table_name_36 WHERE runner_up = "runner-up" |
###context:CREATE TABLE table_name_6 (year VARCHAR, runner_up VARCHAR)
###human: What year shows as Runner-up of england (24 pts)?
###assistant: SELECT year FROM table_name_6 WHERE runner_up = "england (24 pts)" |
###context:CREATE TABLE table_name_81 (venue VARCHAR)
###human: What shows for 3rd place when the venue was Pardubice?
###assistant: SELECT 3 AS rd_place FROM table_name_81 WHERE venue = "pardubice" |
###context:CREATE TABLE table_name_60 (year VARCHAR)
###human: what shows for 3rd place in 1990?
###assistant: SELECT 3 AS rd_place FROM table_name_60 WHERE year = "1990" |
###context:CREATE TABLE table_name_51 (year VARCHAR, venue VARCHAR)
###human: What year was the venue Landshut?
###assistant: SELECT year FROM table_name_51 WHERE venue = "landshut" |
###context:CREATE TABLE table_name_93 (record VARCHAR, visitor VARCHAR)
###human: What is the record when Tampa Bay is the visitor?
###assistant: SELECT record FROM table_name_93 WHERE visitor = "tampa bay" |
###context:CREATE TABLE table_name_40 (date VARCHAR, decision VARCHAR, home VARCHAR)
###human: What is the date when Joseph is the decision and San Jose is the home team?
###assistant: SELECT date FROM table_name_40 WHERE decision = "joseph" AND home = "san jose" |
###context:CREATE TABLE table_name_21 (date VARCHAR, home VARCHAR, visitor VARCHAR)
###human: What is the date of the match when Detroit is the home team and Colorado is the visiting team?
###assistant: SELECT date FROM table_name_21 WHERE home = "detroit" AND visitor = "colorado" |
###context:CREATE TABLE table_name_76 (attendance VARCHAR, week VARCHAR, date VARCHAR)
###human: How many people were in attendance in a week over 4 on December 6, 1981?
###assistant: SELECT COUNT(attendance) FROM table_name_76 WHERE week > 4 AND date = "december 6, 1981" |
###context:CREATE TABLE table_name_5 (game INTEGER, location VARCHAR, date VARCHAR)
###human: Name the least game for october 10 at shibe park
###assistant: SELECT MIN(game) FROM table_name_5 WHERE location = "shibe park" AND date = "october 10" |
###context:CREATE TABLE table_name_83 (bronze INTEGER, rank VARCHAR, total VARCHAR)
###human: What is the lowest bronze total that has a rank of 1 and more than 34 total medals?
###assistant: SELECT MIN(bronze) FROM table_name_83 WHERE rank = "1" AND total > 34 |
###context:CREATE TABLE table_name_72 (bronze INTEGER, silver VARCHAR)
###human: What is the lowest bronze total that has a silver total of 13 medals?
###assistant: SELECT MIN(bronze) FROM table_name_72 WHERE silver = "13" |
###context:CREATE TABLE table_name_45 (wins INTEGER, team VARCHAR, appearances VARCHAR)
###human: With Appearances larger than 1, what is the Wins for the Reno Aces Team?
###assistant: SELECT MIN(wins) FROM table_name_45 WHERE team = "reno aces" AND appearances > 1 |
###context:CREATE TABLE table_name_54 (losses INTEGER, team VARCHAR, appearances VARCHAR, winning_percentage VARCHAR)
###human: For the Reno Aces, what are the Losses when they had 1 Appearances and a Winning Percentage of 1?
###assistant: SELECT SUM(losses) FROM table_name_54 WHERE appearances = 1 AND winning_percentage = 1 AND team = "reno aces" |
###context:CREATE TABLE table_name_30 (appearances INTEGER, season_s_ VARCHAR, winning_percentage VARCHAR)
###human: In 2009, what Appearances had a Winning Percentage of less than 0?
###assistant: SELECT AVG(appearances) FROM table_name_30 WHERE season_s_ = "2009" AND winning_percentage < 0 |
###context:CREATE TABLE table_name_85 (chassis VARCHAR, year VARCHAR)
###human: What is the chassis for the year of 1969?
###assistant: SELECT chassis FROM table_name_85 WHERE year = 1969 |
###context:CREATE TABLE table_name_71 (occupation VARCHAR, residence VARCHAR, rank VARCHAR, gender VARCHAR)
###human: Which Occupation has a Rank of 5th, a Gender of M, with a Residence of orono?
###assistant: SELECT occupation FROM table_name_71 WHERE rank = "5th" AND gender = "m" AND residence = "orono" |
###context:CREATE TABLE table_name_28 (gender VARCHAR, residence VARCHAR)
###human: Which Gender has a Residence of Haliburton?
###assistant: SELECT gender FROM table_name_28 WHERE residence = "haliburton" |
###context:CREATE TABLE table_name_97 (votes INTEGER, riding VARCHAR, rank VARCHAR, occupation VARCHAR)
###human: What's the lowest in Votes with a Rank of 5th, has an Occupation of retired, along with a Riding of Brant?
###assistant: SELECT MIN(votes) FROM table_name_97 WHERE rank = "5th" AND occupation = "retired" AND riding = "brant" |
###context:CREATE TABLE table_name_83 (attendance INTEGER, loss VARCHAR)
###human: What is the sum of the people in attendance when there was a Loss of clement (5–7)?
###assistant: SELECT SUM(attendance) FROM table_name_83 WHERE loss = "clement (5–7)" |
###context:CREATE TABLE table_name_57 (place VARCHAR, player VARCHAR)
###human: What place was Corey Pavin in?
###assistant: SELECT place FROM table_name_57 WHERE player = "corey pavin" |
###context:CREATE TABLE table_name_45 (score VARCHAR, player VARCHAR)
###human: What was the two-round score for Bob Tway?
###assistant: SELECT score FROM table_name_45 WHERE player = "bob tway" |
###context:CREATE TABLE table_name_54 (attendance INTEGER, game VARCHAR, time VARCHAR)
###human: How many people went to the game that lasted 2:37 after game 2?
###assistant: SELECT SUM(attendance) FROM table_name_54 WHERE game > 2 AND time = "2:37" |
###context:CREATE TABLE table_name_64 (fcc_info VARCHAR, frequency_mhz VARCHAR, call_sign VARCHAR)
###human: What is the FCC info of the w214ba call sign with a frequency below 96.3?
###assistant: SELECT fcc_info FROM table_name_64 WHERE frequency_mhz < 96.3 AND call_sign = "w214ba" |
###context:CREATE TABLE table_name_81 (erp_w VARCHAR, call_sign VARCHAR)
###human: What is the total number of the ERP W with a call sign of w242ak?
###assistant: SELECT COUNT(erp_w) FROM table_name_81 WHERE call_sign = "w242ak" |
###context:CREATE TABLE table_name_48 (fcc_info VARCHAR, city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR)
###human: What is the FCC info of the station with a frequency above 95.3 and an ERP W smaller than 27 in Ocala, Florida?
###assistant: SELECT fcc_info FROM table_name_48 WHERE frequency_mhz > 95.3 AND erp_w < 27 AND city_of_license = "ocala, florida" |
###context:CREATE TABLE table_name_42 (date VARCHAR, opponents VARCHAR, outcome VARCHAR, score VARCHAR)
###human: What date has an outcome of runner-up, and a Score of 6–4, 6–2, and a Opponents of gisela dulko flavia pennetta?
###assistant: SELECT date FROM table_name_42 WHERE outcome = "runner-up" AND score = "6–4, 6–2" AND opponents = "gisela dulko flavia pennetta" |
###context:CREATE TABLE table_name_45 (overall INTEGER, round VARCHAR, name VARCHAR)
###human: In Round 10, what was the Overall for Ed Tomlin?
###assistant: SELECT AVG(overall) FROM table_name_45 WHERE round = 10 AND name = "ed tomlin" |
###context:CREATE TABLE table_name_53 (position VARCHAR, overall VARCHAR, round VARCHAR, pick__number VARCHAR)
###human: What was the Position of Pick #23 in a Round less than 5 with 23 Overall?
###assistant: SELECT position FROM table_name_53 WHERE round < 5 AND pick__number = 23 AND overall = 23 |
###context:CREATE TABLE table_name_8 (pick__number INTEGER, overall VARCHAR)
###human: What Average Pick # has an Overall of 296?
###assistant: SELECT AVG(pick__number) FROM table_name_8 WHERE overall = 296 |
###context:CREATE TABLE table_name_53 (pick__number VARCHAR, round VARCHAR, overall VARCHAR, position VARCHAR)
###human: In Round 13, what was the Pick # of the Guard Position with an Overall greater than 23?
###assistant: SELECT pick__number FROM table_name_53 WHERE overall > 23 AND position = "guard" AND round = 13 |
###context:CREATE TABLE table_name_19 (round INTEGER, name VARCHAR, overall VARCHAR)
###human: With an Overall larger than 107, in what Round was Jim Duncan picked?
###assistant: SELECT SUM(round) FROM table_name_19 WHERE name = "jim duncan" AND overall > 107 |
###context:CREATE TABLE table_name_97 (pick__number INTEGER, college VARCHAR)
###human: What is the highest Pick # for the College of Maryland-Eastern Shore?
###assistant: SELECT MAX(pick__number) FROM table_name_97 WHERE college = "maryland-eastern shore" |
###context:CREATE TABLE table_name_72 (points INTEGER, entrant VARCHAR, year VARCHAR, engine VARCHAR)
###human: What is Brown Motors best point total using the Offenhauser L4 engine since 1950?
###assistant: SELECT MAX(points) FROM table_name_72 WHERE year > 1950 AND engine = "offenhauser l4" AND entrant = "brown motors" |
###context:CREATE TABLE table_name_41 (length VARCHAR, stage VARCHAR)
###human: Name the length for stage of ss6
###assistant: SELECT length FROM table_name_41 WHERE stage = "ss6" |
###context:CREATE TABLE table_name_51 (stage VARCHAR, time__eest_ VARCHAR, rally_leader VARCHAR, winner VARCHAR)
###human: Name the stage for m. grönholm and winner of s.loeb with time of 17:57
###assistant: SELECT stage FROM table_name_51 WHERE rally_leader = "m. grönholm" AND winner = "s.loeb" AND time__eest_ = "17:57" |
###context:CREATE TABLE table_name_82 (winner VARCHAR, name VARCHAR)
###human: Name the winner for schimatari 1
###assistant: SELECT winner FROM table_name_82 WHERE name = "schimatari 1" |
###context:CREATE TABLE table_name_85 (stage VARCHAR, time__eest_ VARCHAR)
###human: Name the stage for 08:46
###assistant: SELECT stage FROM table_name_85 WHERE time__eest_ = "08:46" |
###context:CREATE TABLE table_name_51 (winner VARCHAR, rally_leader VARCHAR, name VARCHAR)
###human: Name the winner with rally leader of c. atkinson and name of agia sotira 1
###assistant: SELECT winner FROM table_name_51 WHERE rally_leader = "c. atkinson" AND name = "agia sotira 1" |
###context:CREATE TABLE table_name_82 (winner VARCHAR, stage VARCHAR)
###human: Name the winner for ss14
###assistant: SELECT winner FROM table_name_82 WHERE stage = "ss14" |
###context:CREATE TABLE table_name_37 (loss VARCHAR, opponent VARCHAR, date VARCHAR)
###human: Who lost when the mariners played on September 12?
###assistant: SELECT loss FROM table_name_37 WHERE opponent = "mariners" AND date = "september 12" |
###context:CREATE TABLE table_name_63 (record VARCHAR, date VARCHAR)
###human: On September 7 what was the record?
###assistant: SELECT record FROM table_name_63 WHERE date = "september 7" |
###context:CREATE TABLE table_name_48 (opponent VARCHAR, date VARCHAR)
###human: Who plays on the date september 29?
###assistant: SELECT opponent FROM table_name_48 WHERE date = "september 29" |
###context:CREATE TABLE table_name_34 (city_of_license VARCHAR, call_sign VARCHAR)
###human: Which city of license has a wriq Call sign?
###assistant: SELECT city_of_license FROM table_name_34 WHERE call_sign = "wriq" |
###context:CREATE TABLE table_name_99 (frequency_mhz INTEGER, class VARCHAR)
###human: What is the total of Frequency MHz with a Class of b1?
###assistant: SELECT SUM(frequency_mhz) FROM table_name_99 WHERE class = "b1" |
###context:CREATE TABLE table_name_50 (erp_w VARCHAR, class VARCHAR, call_sign VARCHAR)
###human: Which ERP W has a Class of A, and a Call sign of wffc?
###assistant: SELECT erp_w FROM table_name_50 WHERE class = "a" AND call_sign = "wffc" |
###context:CREATE TABLE table_name_83 (class VARCHAR, city_of_license VARCHAR)
###human: Which class City of license of ferrum, virginia?
###assistant: SELECT class FROM table_name_83 WHERE city_of_license = "ferrum, virginia" |
###context:CREATE TABLE table_name_1 (call_sign VARCHAR, class VARCHAR, frequency_mhz VARCHAR)
###human: Which call sign has a Class of A, and a Frequency MHz of 88.7?
###assistant: SELECT call_sign FROM table_name_1 WHERE class = "a" AND frequency_mhz = 88.7 |
###context:CREATE TABLE table_name_49 (heat VARCHAR, time VARCHAR)
###human: what heat number had a time of 58.44?
###assistant: SELECT COUNT(heat) FROM table_name_49 WHERE time = "58.44" |
###context:CREATE TABLE table_name_86 (lane VARCHAR, nationality VARCHAR)
###human: what lane was new zealand in?
###assistant: SELECT lane FROM table_name_86 WHERE nationality = "new zealand" |
###context:CREATE TABLE table_name_89 (stage VARCHAR, course VARCHAR)
###human: What stage of the race was held on the course Reggio Calabria to Catanzaro?
###assistant: SELECT stage FROM table_name_89 WHERE course = "reggio calabria to catanzaro" |
###context:CREATE TABLE table_name_97 (winner VARCHAR, course VARCHAR)
###human: Who was the winner for the Rome to Teramo course?
###assistant: SELECT winner FROM table_name_97 WHERE course = "rome to teramo" |
###context:CREATE TABLE table_name_25 (winner VARCHAR, stage VARCHAR)
###human: Who was the winner of stage 11?
###assistant: SELECT winner FROM table_name_25 WHERE stage = "11" |
###context:CREATE TABLE table_name_64 (apps INTEGER, country VARCHAR, goals VARCHAR)
###human: What is the average Apps of indonesia with Goals smaller than 1000?
###assistant: SELECT AVG(apps) FROM table_name_64 WHERE country = "indonesia" AND goals < 1000 |
###context:CREATE TABLE table_name_83 (division VARCHAR, team VARCHAR, season VARCHAR)
###human: What division is Traktor Tashkent in 2005?
###assistant: SELECT division FROM table_name_83 WHERE team = "traktor tashkent" AND season = "2005" |
###context:CREATE TABLE table_name_41 (apps VARCHAR, country VARCHAR, season VARCHAR)
###human: How many apps does Uzbekistan have in 2003?
###assistant: SELECT apps FROM table_name_41 WHERE country = "uzbekistan" AND season = "2003" |
###context:CREATE TABLE table_name_5 (attendance VARCHAR, record VARCHAR)
###human: What was the attendance at the game when the record was 74-77?
###assistant: SELECT attendance FROM table_name_5 WHERE record = "74-77" |
###context:CREATE TABLE table_name_23 (score VARCHAR, record VARCHAR)
###human: What was score of the game when the record was 72-74?
###assistant: SELECT score FROM table_name_23 WHERE record = "72-74" |
###context:CREATE TABLE table_name_34 (airdate VARCHAR, episode_no VARCHAR, bbc_one_weekly_ranking VARCHAR)
###human: What were the air-dates of the episodes before episode 4 that had a BBC One weekly ranking of 6?
###assistant: SELECT airdate FROM table_name_34 WHERE episode_no < 4 AND bbc_one_weekly_ranking = 6 |
###context:CREATE TABLE table_name_30 (total_viewers VARCHAR, bbc_one_weekly_ranking VARCHAR, episode_no VARCHAR)
###human: What was the total viewership for BBC One weekly rankings larger than 7, before episode 4?
###assistant: SELECT total_viewers FROM table_name_30 WHERE bbc_one_weekly_ranking > 7 AND episode_no < 4 |
###context:CREATE TABLE table_name_54 (rank INTEGER, gold VARCHAR, bronze VARCHAR, silver VARCHAR)
###human: Name the most rank with bronze of 0 and silver more than 1 and gold more than 0
###assistant: SELECT MAX(rank) FROM table_name_54 WHERE bronze = 0 AND silver > 1 AND gold > 0 |
###context:CREATE TABLE table_name_5 (silver INTEGER, total INTEGER)
###human: Name the average silver with total less than 1
###assistant: SELECT AVG(silver) FROM table_name_5 WHERE total < 1 |
###context:CREATE TABLE table_name_47 (year INTEGER, result VARCHAR)
###human: Name the average year for result of nominated
###assistant: SELECT AVG(year) FROM table_name_47 WHERE result = "nominated" |
###context:CREATE TABLE table_name_7 (nominated_work VARCHAR, year VARCHAR, festival VARCHAR)
###human: Name the nominated work for 1996 and festival of black maria film and video festival
###assistant: SELECT nominated_work FROM table_name_7 WHERE year = 1996 AND festival = "black maria film and video festival" |
###context:CREATE TABLE table_name_6 (date VARCHAR, team VARCHAR, venue VARCHAR, win_draw_lose VARCHAR)
###human: What was the date of the away game that they lost to Accrington?
###assistant: SELECT date FROM table_name_6 WHERE venue = "away" AND win_draw_lose = "lost" AND team = "accrington" |
###context:CREATE TABLE table_name_65 (date VARCHAR, team VARCHAR, venue VARCHAR)
###human: What was the date of the home game against Accrington?
###assistant: SELECT date FROM table_name_65 WHERE team = "accrington" AND venue = "home" |
###context:CREATE TABLE table_name_71 (win_draw_lose VARCHAR, venue VARCHAR, team VARCHAR)
###human: What was the result of the home game against Derby County?
###assistant: SELECT win_draw_lose FROM table_name_71 WHERE venue = "home" AND team = "derby county" |
###context:CREATE TABLE table_name_27 (standard_cost__usd_ VARCHAR, creator VARCHAR)
###human: What is the Standard cost (USD) by hans Oischinger Creator ?
###assistant: SELECT standard_cost__usd_ FROM table_name_27 WHERE creator = "hans oischinger" |
###context:CREATE TABLE table_name_95 (standard_cost__usd_ VARCHAR, creator VARCHAR)
###human: What is the Standard cost (USD) of Kwin team creator?
###assistant: SELECT standard_cost__usd_ FROM table_name_95 WHERE creator = "kwin team" |
###context:CREATE TABLE table_name_45 (creator VARCHAR, latest_stable_version VARCHAR)
###human: Who is the Creator that has a version of 0.5.2 (part of compiz fusion release)?
###assistant: SELECT creator FROM table_name_45 WHERE latest_stable_version = "0.5.2 (part of compiz fusion release)" |
###context:CREATE TABLE table_name_47 (name VARCHAR, creator VARCHAR)
###human: Who is a Creator of hyriand?
###assistant: SELECT name FROM table_name_47 WHERE creator = "hyriand" |
###context:CREATE TABLE table_name_68 (attendance VARCHAR, game INTEGER)
###human: What is the number of people who attended the game later than game 6?
###assistant: SELECT COUNT(attendance) FROM table_name_68 WHERE game > 6 |
###context:CREATE TABLE table_name_29 (title VARCHAR, year VARCHAR, format_s_ VARCHAR)
###human: Which title has a year later than 1986 with an album as the format?
###assistant: SELECT title FROM table_name_29 WHERE year > 1986 AND format_s_ = "album" |
###context:CREATE TABLE table_name_70 (year INTEGER, date VARCHAR)
###human: Which is the average year with the date of February 24?
###assistant: SELECT AVG(year) FROM table_name_70 WHERE date = "february 24" |
###context:CREATE TABLE table_name_84 (award_description_s_ VARCHAR, year VARCHAR, date VARCHAR)
###human: Which award description has a year later than 1994 with a date of December 6?
###assistant: SELECT award_description_s_ FROM table_name_84 WHERE year > 1994 AND date = "december 6" |
###context:CREATE TABLE table_name_91 (goal VARCHAR, date VARCHAR, score VARCHAR)
###human: How many goals have a Date of december 4, 2010, and a Score of 1-0?
###assistant: SELECT COUNT(goal) FROM table_name_91 WHERE date = "december 4, 2010" AND score = "1-0" |
###context:CREATE TABLE table_name_91 (venue VARCHAR, competition VARCHAR)
###human: Which venue has a Competition of 2008 myanmar grand royal challenge cup?
###assistant: SELECT venue FROM table_name_91 WHERE competition = "2008 myanmar grand royal challenge cup" |
###context:CREATE TABLE table_name_62 (venue VARCHAR, goal VARCHAR)
###human: Which venue has a Goal of 4?
###assistant: SELECT venue FROM table_name_62 WHERE goal = 4 |
###context:CREATE TABLE table_name_14 (goal INTEGER, score VARCHAR)
###human: What is the largest goal with a Score of 3-0?
###assistant: SELECT MAX(goal) FROM table_name_14 WHERE score = "3-0" |
###context:CREATE TABLE table_name_37 (opponents_in_the_final VARCHAR, date VARCHAR, partnering VARCHAR, surface VARCHAR)
###human: Who did Bruno Soares and a partner face in the finals on a clay surface on August 1, 2010?
###assistant: SELECT opponents_in_the_final FROM table_name_37 WHERE partnering = "bruno soares" AND surface = "clay" AND date = "august 1, 2010" |
###context:CREATE TABLE table_name_67 (surface VARCHAR, score VARCHAR)
###human: What surface was played on that resulted in a score of 4–6, 6–2, [10–7]?
###assistant: SELECT surface FROM table_name_67 WHERE score = "4–6, 6–2, [10–7]" |
###context:CREATE TABLE table_name_55 (outcome VARCHAR, date VARCHAR)
###human: What was the outcome on May 25, 2009?
###assistant: SELECT outcome FROM table_name_55 WHERE date = "may 25, 2009" |
###context:CREATE TABLE table_name_55 (outcome VARCHAR, date VARCHAR)
###human: What was the outcome on May 18, 2008?
###assistant: SELECT outcome FROM table_name_55 WHERE date = "may 18, 2008" |
###context:CREATE TABLE table_name_53 (place VARCHAR, player VARCHAR)
###human: what is the place for Heath Slocum?
###assistant: SELECT place FROM table_name_53 WHERE player = "heath slocum" |
###context:CREATE TABLE table_name_9 (attendance VARCHAR, date VARCHAR)
###human: What is the attendance for august 29?
###assistant: SELECT attendance FROM table_name_9 WHERE date = "august 29" |
###context:CREATE TABLE table_name_47 (loss VARCHAR, opponent VARCHAR, date VARCHAR)
###human: Which loss has an Opponent of @ angels, and a Date of august 1?
###assistant: SELECT loss FROM table_name_47 WHERE opponent = "@ angels" AND date = "august 1" |
###context:CREATE TABLE table_name_99 (score VARCHAR, attendance VARCHAR)
###human: Which score has an Attendance of 31,178?
###assistant: SELECT score FROM table_name_99 WHERE attendance = "31,178" |
###context:CREATE TABLE table_name_8 (record VARCHAR, date VARCHAR)
###human: Which record has a Date of august 28?
###assistant: SELECT record FROM table_name_8 WHERE date = "august 28" |
###context:CREATE TABLE table_name_55 (loss VARCHAR, attendance VARCHAR)
###human: Which loss has an Attendance of 23,952?
###assistant: SELECT loss FROM table_name_55 WHERE attendance = "23,952" |
###context:CREATE TABLE table_name_28 (opponent VARCHAR, loss VARCHAR)
###human: Which opponent has a Loss of corcoran (4-4)?
###assistant: SELECT opponent FROM table_name_28 WHERE loss = "corcoran (4-4)" |
###context:CREATE TABLE table_name_30 (location VARCHAR, competition VARCHAR)
###human: What is the location of the gold medal match?
###assistant: SELECT location FROM table_name_30 WHERE competition = "gold medal match" |
###context:CREATE TABLE table_name_29 (lineup VARCHAR, result VARCHAR)
###human: What was the lineup that resulted in 1-0 AET W?
###assistant: SELECT lineup FROM table_name_29 WHERE result = "1-0 aet w" |
###context:CREATE TABLE table_name_97 (result VARCHAR, match VARCHAR)
###human: What was the result of match 25?
###assistant: SELECT result FROM table_name_97 WHERE match = "25" |
###context:CREATE TABLE table_name_13 (result VARCHAR, location VARCHAR)
###human: What is the result of the London 2012 Women's Olympic Football Tournament?
###assistant: SELECT result FROM table_name_13 WHERE location = "london 2012 women's olympic football tournament" |
###context:CREATE TABLE table_name_7 (score VARCHAR, loss VARCHAR)
###human: What was the score of the game that had a loss of Wegman (2-6)?
###assistant: SELECT score FROM table_name_7 WHERE loss = "wegman (2-6)" |
###context:CREATE TABLE table_name_55 (record VARCHAR, loss VARCHAR)
###human: What was the record at the game that had a loss of Blyleven (4-5)?
###assistant: SELECT record FROM table_name_55 WHERE loss = "blyleven (4-5)" |
###context:CREATE TABLE table_name_74 (city VARCHAR, jul VARCHAR)
###human: Name the city with july of 88 °f / 31.1 °c
###assistant: SELECT city FROM table_name_74 WHERE jul = "88 °f / 31.1 °c" |
###context:CREATE TABLE table_name_63 (city VARCHAR, feb VARCHAR)
###human: Name the city with Feb of 66 °f / 18.9 °c
###assistant: SELECT city FROM table_name_63 WHERE feb = "66 °f / 18.9 °c" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.