Unnamed: 0
int64 0
60k
| text
stringlengths 109
1.06k
|
---|---|
54,600 | <question>: What car number had 24 points? <context>: CREATE TABLE table_name_13 (car_no VARCHAR, points VARCHAR) <answer>: SELECT car_no FROM table_name_13 WHERE points = "24" |
54,601 | <question>: How many points when the Grid was 1? <context>: CREATE TABLE table_name_75 (points VARCHAR, grid VARCHAR) <answer>: SELECT points FROM table_name_75 WHERE grid = "1" |
54,602 | <question>: What is the average game number that was on october 19? <context>: CREATE TABLE table_name_4 (game INTEGER, october VARCHAR) <answer>: SELECT AVG(game) FROM table_name_4 WHERE october = 19 |
54,603 | <question>: What is the sum of October, when Opponent is "Pittsburgh Penguins"? <context>: CREATE TABLE table_name_19 (october INTEGER, opponent VARCHAR) <answer>: SELECT SUM(october) FROM table_name_19 WHERE opponent = "pittsburgh penguins" |
54,604 | <question>: What is the sum of Game, when Record is "2-1-1", and when October is less than 21? <context>: CREATE TABLE table_name_58 (game INTEGER, record VARCHAR, october VARCHAR) <answer>: SELECT SUM(game) FROM table_name_58 WHERE record = "2-1-1" AND october < 21 |
54,605 | <question>: What is Opponent, when October is less than 31, and when Game is greater than 7? <context>: CREATE TABLE table_name_12 (opponent VARCHAR, october VARCHAR, game VARCHAR) <answer>: SELECT opponent FROM table_name_12 WHERE october < 31 AND game > 7 |
54,606 | <question>: What is the tie number for the home team Orient? <context>: CREATE TABLE table_name_35 (tie_no VARCHAR, home_team VARCHAR) <answer>: SELECT tie_no FROM table_name_35 WHERE home_team = "orient" |
54,607 | <question>: What is the score for the away team Chelsea? <context>: CREATE TABLE table_name_35 (score VARCHAR, away_team VARCHAR) <answer>: SELECT score FROM table_name_35 WHERE away_team = "chelsea" |
54,608 | <question>: What is the away team for the tie no. 29? <context>: CREATE TABLE table_name_81 (away_team VARCHAR, tie_no VARCHAR) <answer>: SELECT away_team FROM table_name_81 WHERE tie_no = "29" |
54,609 | <question>: What is the coronie with a 0.7% nickerie? <context>: CREATE TABLE table_name_92 (coronie VARCHAR, nickerie VARCHAR) <answer>: SELECT coronie FROM table_name_92 WHERE nickerie = "0.7%" |
54,610 | <question>: What is the marowijne with an 18.8% saramacca? <context>: CREATE TABLE table_name_2 (marowijne VARCHAR, saramacca VARCHAR) <answer>: SELECT marowijne FROM table_name_2 WHERE saramacca = "18.8%" |
54,611 | <question>: What is the para with a 0.1% sipaliwini? <context>: CREATE TABLE table_name_70 (para VARCHAR, sipaliwini VARCHAR) <answer>: SELECT para FROM table_name_70 WHERE sipaliwini = "0.1%" |
54,612 | <question>: What religion has a para of 56.5%? <context>: CREATE TABLE table_name_65 (religion VARCHAR, para VARCHAR) <answer>: SELECT religion FROM table_name_65 WHERE para = "56.5%" |
54,613 | <question>: What is the suriname with a 16.8% brokopondo? <context>: CREATE TABLE table_name_62 (suriname VARCHAR, brokopondo VARCHAR) <answer>: SELECT suriname FROM table_name_62 WHERE brokopondo = "16.8%" |
54,614 | <question>: What's the rank average when the gold medals are less than 0? <context>: CREATE TABLE table_name_41 (rank INTEGER, gold INTEGER) <answer>: SELECT AVG(rank) FROM table_name_41 WHERE gold < 0 |
54,615 | <question>: What is the total rank of Hungary (HUN) when the bronze medals were less than 0? <context>: CREATE TABLE table_name_84 (rank INTEGER, nation VARCHAR, bronze VARCHAR) <answer>: SELECT SUM(rank) FROM table_name_84 WHERE nation = "hungary (hun)" AND bronze < 0 |
54,616 | <question>: What is the sum of the total number of medals when silver is less than 0? <context>: CREATE TABLE table_name_54 (total VARCHAR, silver INTEGER) <answer>: SELECT COUNT(total) FROM table_name_54 WHERE silver < 0 |
54,617 | <question>: What is Born-Died, when Term Start is 4 December 1941? <context>: CREATE TABLE table_name_25 (born_died VARCHAR, term_start VARCHAR) <answer>: SELECT born_died FROM table_name_25 WHERE term_start = "4 december 1941" |
54,618 | <question>: What is Term Start, when Name is Prime Ministers 1939 - 1943? <context>: CREATE TABLE table_name_38 (term_start VARCHAR, name VARCHAR) <answer>: SELECT term_start FROM table_name_38 WHERE name = "prime ministers 1939 - 1943" |
54,619 | <question>: What is Born-Died, when Name is Maliq Bushati? <context>: CREATE TABLE table_name_27 (born_died VARCHAR, name VARCHAR) <answer>: SELECT born_died FROM table_name_27 WHERE name = "maliq bushati" |
54,620 | <question>: What is Term End, when Political Party is Albanian Fascist Party, and when Term Start is 12 April 1939? <context>: CREATE TABLE table_name_78 (term_end VARCHAR, political_party VARCHAR, term_start VARCHAR) <answer>: SELECT term_end FROM table_name_78 WHERE political_party = "albanian fascist party" AND term_start = "12 april 1939" |
54,621 | <question>: What is Term Start, when Born-Died is Prime Ministers 1939 - 1943? <context>: CREATE TABLE table_name_53 (term_start VARCHAR, born_died VARCHAR) <answer>: SELECT term_start FROM table_name_53 WHERE born_died = "prime ministers 1939 - 1943" |
54,622 | <question>: What is Born-Died, when Term End is 19 January 1943? <context>: CREATE TABLE table_name_60 (born_died VARCHAR, term_end VARCHAR) <answer>: SELECT born_died FROM table_name_60 WHERE term_end = "19 january 1943" |
54,623 | <question>: What is the Score of the game with a Record of 5β4β3? <context>: CREATE TABLE table_name_2 (score VARCHAR, record VARCHAR) <answer>: SELECT score FROM table_name_2 WHERE record = "5β4β3" |
54,624 | <question>: What is the Score on January 23? <context>: CREATE TABLE table_name_8 (score VARCHAR, date VARCHAR) <answer>: SELECT score FROM table_name_8 WHERE date = "january 23" |
54,625 | <question>: What is the Visitor of the Montreal Canadiens Home game with a Record of 6β4β4? <context>: CREATE TABLE table_name_78 (visitor VARCHAR, home VARCHAR, record VARCHAR) <answer>: SELECT visitor FROM table_name_78 WHERE home = "montreal canadiens" AND record = "6β4β4" |
54,626 | <question>: What is the Date of the game with a Record of 12β7β6? <context>: CREATE TABLE table_name_20 (date VARCHAR, record VARCHAR) <answer>: SELECT date FROM table_name_20 WHERE record = "12β7β6" |
54,627 | <question>: What is the Record of the Montreal Canadiens Home game on March 23? <context>: CREATE TABLE table_name_38 (record VARCHAR, home VARCHAR, date VARCHAR) <answer>: SELECT record FROM table_name_38 WHERE home = "montreal canadiens" AND date = "march 23" |
54,628 | <question>: What tournament location has 1 stroke as the margin of victory, with 1,200,000 as the purse ($)? <context>: CREATE TABLE table_name_81 (tournament_location VARCHAR, margin_of_victory VARCHAR, purse___$__ VARCHAR) <answer>: SELECT tournament_location FROM table_name_81 WHERE margin_of_victory = "1 stroke" AND purse___$__ = "1,200,000" |
54,629 | <question>: What tournament location has south korea as the country? <context>: CREATE TABLE table_name_43 (tournament_location VARCHAR, country VARCHAR) <answer>: SELECT tournament_location FROM table_name_43 WHERE country = "south korea" |
54,630 | <question>: What is the land area of Switzerland with a population density fewer than 188 kmΒ²? <context>: CREATE TABLE table_name_98 (land_area__kmΒ²_ INTEGER, country VARCHAR, population_density__pop_per_kmΒ²_ VARCHAR) <answer>: SELECT AVG(land_area__kmΒ²_) FROM table_name_98 WHERE country = "switzerland" AND population_density__pop_per_kmΒ²_ < 188 |
54,631 | <question>: What lost has 86 points? <context>: CREATE TABLE table_name_67 (lost VARCHAR, points VARCHAR) <answer>: SELECT lost FROM table_name_67 WHERE points = "86" |
54,632 | <question>: With 37 tries against, what is the try bonus? <context>: CREATE TABLE table_name_82 (try_bonus VARCHAR, tries_against VARCHAR) <answer>: SELECT try_bonus FROM table_name_82 WHERE tries_against = "37" |
54,633 | <question>: How many points against when 41 is the tries for? <context>: CREATE TABLE table_name_59 (points_against VARCHAR, tries_for VARCHAR) <answer>: SELECT points_against FROM table_name_59 WHERE tries_for = "41" |
54,634 | <question>: With a lost of lost what was the losing bonus? <context>: CREATE TABLE table_name_52 (losing_bonus VARCHAR) <answer>: SELECT losing_bonus FROM table_name_52 WHERE "lost" = "lost" |
54,635 | <question>: What points has points for as points for? <context>: CREATE TABLE table_name_25 (points VARCHAR, points_for VARCHAR) <answer>: SELECT points FROM table_name_25 WHERE points_for = "points for" |
54,636 | <question>: What is the points when the club is Barry RFC with a 5 as the try bonus? <context>: CREATE TABLE table_name_27 (points VARCHAR, try_bonus VARCHAR, club VARCHAR) <answer>: SELECT points FROM table_name_27 WHERE try_bonus = "5" AND club = "barry rfc" |
54,637 | <question>: What is the sum of Gold, when Silver is greater than 6, when Rank is 1, and when Bronze is less than 61? <context>: CREATE TABLE table_name_57 (gold INTEGER, bronze VARCHAR, silver VARCHAR, rank VARCHAR) <answer>: SELECT SUM(gold) FROM table_name_57 WHERE silver > 6 AND rank = "1" AND bronze < 61 |
54,638 | <question>: What is the lowest Silver, when Bronze is 1, and when Total is less than 3? <context>: CREATE TABLE table_name_23 (silver INTEGER, bronze VARCHAR, total VARCHAR) <answer>: SELECT MIN(silver) FROM table_name_23 WHERE bronze = 1 AND total < 3 |
54,639 | <question>: What is the average Gold, when Silver is less than 107, when Bronze is greater than 42, and when Rank is 3? <context>: CREATE TABLE table_name_95 (gold INTEGER, rank VARCHAR, silver VARCHAR, bronze VARCHAR) <answer>: SELECT AVG(gold) FROM table_name_95 WHERE silver < 107 AND bronze > 42 AND rank = "3" |
54,640 | <question>: Which manufacturer has more than 28 laps and less than 9 grids with jeremy mcwilliams? <context>: CREATE TABLE table_name_53 (manufacturer VARCHAR, rider VARCHAR, laps VARCHAR, grid VARCHAR) <answer>: SELECT manufacturer FROM table_name_53 WHERE laps < 28 AND grid < 9 AND rider = "jeremy mcwilliams" |
54,641 | <question>: What is the grid average with a +1 lap time and more than 27 laps? <context>: CREATE TABLE table_name_52 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) <answer>: SELECT AVG(grid) FROM table_name_52 WHERE time_retired = "+1 lap" AND laps > 27 |
54,642 | <question>: Which lap has more than 17 grids with tetsuya harada? <context>: CREATE TABLE table_name_77 (laps VARCHAR, grid VARCHAR, rider VARCHAR) <answer>: SELECT laps FROM table_name_77 WHERE grid > 17 AND rider = "tetsuya harada" |
54,643 | <question>: Prior to 1978, what is the Danish of the Film directed by Bent Christensen? <context>: CREATE TABLE table_name_16 (danish_title VARCHAR, year VARCHAR, director VARCHAR) <answer>: SELECT danish_title FROM table_name_16 WHERE year < 1978 AND director = "bent christensen" |
54,644 | <question>: Who is the Director of the Olsen Gang Sees Red? <context>: CREATE TABLE table_name_11 (director VARCHAR, english_title VARCHAR) <answer>: SELECT director FROM table_name_11 WHERE english_title = "the olsen gang sees red" |
54,645 | <question>: What is the submission Year of the Film The Dark Side of the Moon directed by Erik Clausen? <context>: CREATE TABLE table_name_40 (year INTEGER, director VARCHAR, english_title VARCHAR) <answer>: SELECT SUM(year) FROM table_name_40 WHERE director = "erik clausen" AND english_title = "the dark side of the moon" |
54,646 | <question>: What is the Year of submission of the Film The Art of Crying? <context>: CREATE TABLE table_name_70 (year INTEGER, english_title VARCHAR) <answer>: SELECT MIN(year) FROM table_name_70 WHERE english_title = "the art of crying" |
54,647 | <question>: Which Home Town had the weight of 201? <context>: CREATE TABLE table_name_67 (home_town VARCHAR, weight VARCHAR) <answer>: SELECT home_town FROM table_name_67 WHERE weight = 201 |
54,648 | <question>: What Position did the sophomore Darnell Jackson play? <context>: CREATE TABLE table_name_48 (position VARCHAR, year VARCHAR, name VARCHAR) <answer>: SELECT position FROM table_name_48 WHERE year = "sophomore" AND name = "darnell jackson" |
54,649 | <question>: what kind of 2007 has a 1999 of β, and a Model of seat mii? <context>: CREATE TABLE table_name_16 (model VARCHAR) <answer>: SELECT 2007 FROM table_name_16 WHERE 1999 = "β" AND model = "seat mii" |
54,650 | <question>: Which 2005 has a 2006 of 126,511? <context>: CREATE TABLE table_name_39 (Id VARCHAR) <answer>: SELECT 2005 FROM table_name_39 WHERE 2006 = "126,511" |
54,651 | <question>: Name the 2004 which has a 2003 of 36,026? <context>: CREATE TABLE table_name_19 (Id VARCHAR) <answer>: SELECT 2004 FROM table_name_19 WHERE 2003 = "36,026" |
54,652 | <question>: Name the 2007 which has a 2011 of 191,183? Question 4 <context>: CREATE TABLE table_name_14 (Id VARCHAR) <answer>: SELECT 2007 FROM table_name_14 WHERE 2011 = "191,183" |
54,653 | <question>: Name the 2011 which has a 2002 of β, and a Model of seat marbella? <context>: CREATE TABLE table_name_93 (model VARCHAR) <answer>: SELECT 2011 FROM table_name_93 WHERE 2002 = "β" AND model = "seat marbella" |
54,654 | <question>: Name the 2003 which has a 2000 of β, and a 2007 of β, and a 2010 of β? <context>: CREATE TABLE table_name_33 (Id VARCHAR) <answer>: SELECT 2003 FROM table_name_33 WHERE 2000 = "β" AND 2007 = "β" AND 2010 = "β" |
54,655 | <question>: Who is affiliated with the Dukes? <context>: CREATE TABLE table_name_63 (affiliation VARCHAR, nickname VARCHAR) <answer>: SELECT affiliation FROM table_name_63 WHERE nickname = "dukes" |
54,656 | <question>: What school is in Radford, Va? <context>: CREATE TABLE table_name_74 (school VARCHAR, location VARCHAR) <answer>: SELECT school FROM table_name_74 WHERE location = "radford, va" |
54,657 | <question>: What school has a public nickname, founded after 1838 in Harrisonburg, Va? <context>: CREATE TABLE table_name_38 (nickname VARCHAR, location VARCHAR, affiliation VARCHAR, founded VARCHAR) <answer>: SELECT nickname FROM table_name_38 WHERE affiliation = "public" AND founded > 1838 AND location = "harrisonburg, va" |
54,658 | <question>: Lowest pick for mike flater? <context>: CREATE TABLE table_name_21 (pick INTEGER, name VARCHAR) <answer>: SELECT MIN(pick) FROM table_name_21 WHERE name = "mike flater" |
54,659 | <question>: Who was the home team on January 2 with 23 points? <context>: CREATE TABLE table_name_57 (home VARCHAR, points VARCHAR, date VARCHAR) <answer>: SELECT home FROM table_name_57 WHERE points = 23 AND date = "january 2" |
54,660 | <question>: What is the record when St. Louis is the visitor? <context>: CREATE TABLE table_name_56 (record VARCHAR, visitor VARCHAR) <answer>: SELECT record FROM table_name_56 WHERE visitor = "st. louis" |
54,661 | <question>: What was the score for the game on November 1? <context>: CREATE TABLE table_name_25 (score VARCHAR, date VARCHAR) <answer>: SELECT score FROM table_name_25 WHERE date = "november 1" |
54,662 | <question>: What were the location and attendance for the game against New Jersey? <context>: CREATE TABLE table_name_33 (location_attendance VARCHAR, team VARCHAR) <answer>: SELECT location_attendance FROM table_name_33 WHERE team = "new jersey" |
54,663 | <question>: Where were the 2009 and 2011 Grand Slam Tournaments? <context>: CREATE TABLE table_name_86 (Id VARCHAR) <answer>: SELECT 2011 FROM table_name_86 WHERE 2009 = "grand slam tournaments" |
54,664 | <question>: What is Second Vice President, when Third Vice President is "Gen. Juan Alonso", and when Inaugurated is "15 March 1940"? <context>: CREATE TABLE table_name_74 (second_vice_president VARCHAR, third_vice_president VARCHAR, inaugurated VARCHAR) <answer>: SELECT second_vice_president FROM table_name_74 WHERE third_vice_president = "gen. juan alonso" AND inaugurated = "15 march 1940" |
54,665 | <question>: What is Left Office, when Inaugurate is "15 March 1930"? <context>: CREATE TABLE table_name_1 (left_office VARCHAR, inaugurated VARCHAR) <answer>: SELECT left_office FROM table_name_1 WHERE inaugurated = "15 march 1930" |
54,666 | <question>: What is Second Vice President, when Inaugurated is "26 March 1928"? <context>: CREATE TABLE table_name_85 (second_vice_president VARCHAR, inaugurated VARCHAR) <answer>: SELECT second_vice_president FROM table_name_85 WHERE inaugurated = "26 march 1928" |
54,667 | <question>: What is Second Vice President, when Inaugurated is "15 March 1935"? <context>: CREATE TABLE table_name_49 (second_vice_president VARCHAR, inaugurated VARCHAR) <answer>: SELECT second_vice_president FROM table_name_49 WHERE inaugurated = "15 march 1935" |
54,668 | <question>: What is Third Vice President, when Inaugurated is "15 March 1934"? <context>: CREATE TABLE table_name_38 (third_vice_president VARCHAR, inaugurated VARCHAR) <answer>: SELECT third_vice_president FROM table_name_38 WHERE inaugurated = "15 march 1934" |
54,669 | <question>: What is Third Vice President, when Second Vice President is "Baudelio Palma"? <context>: CREATE TABLE table_name_16 (third_vice_president VARCHAR, second_vice_president VARCHAR) <answer>: SELECT third_vice_president FROM table_name_16 WHERE second_vice_president = "baudelio palma" |
54,670 | <question>: What was the score of the game from July 18? <context>: CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR) <answer>: SELECT score FROM table_name_30 WHERE date = "july 18" |
54,671 | <question>: What was the Attendance on Week 9? <context>: CREATE TABLE table_name_25 (attendance INTEGER, week VARCHAR) <answer>: SELECT MAX(attendance) FROM table_name_25 WHERE week = 9 |
54,672 | <question>: What is the Opponent of the game with a Result of w 13β0? <context>: CREATE TABLE table_name_49 (opponent VARCHAR, result VARCHAR) <answer>: SELECT opponent FROM table_name_49 WHERE result = "w 13β0" |
54,673 | <question>: What was the score in January that was less than 4? <context>: CREATE TABLE table_name_92 (score VARCHAR, january INTEGER) <answer>: SELECT score FROM table_name_92 WHERE january < 4 |
54,674 | <question>: Which date was the event that Yani won in a playoff over Yueh-Chyn Huang? <context>: CREATE TABLE table_name_55 (date VARCHAR, margin_of_victory VARCHAR, runner_s__up VARCHAR) <answer>: SELECT date FROM table_name_55 WHERE margin_of_victory = "playoff" AND runner_s__up = "yueh-chyn huang" |
54,675 | <question>: What is the latitude of the point with a longitude of 147.1w? <context>: CREATE TABLE table_name_7 (latitude VARCHAR, longitude VARCHAR) <answer>: SELECT latitude FROM table_name_7 WHERE longitude = "147.1w" |
54,676 | <question>: What is ISBN UK, when Author is "Dave Martin", and when ISBN US is "N/A"? <context>: CREATE TABLE table_name_38 (isbn_uk VARCHAR, author VARCHAR, isbn_us VARCHAR) <answer>: SELECT isbn_uk FROM table_name_38 WHERE author = "dave martin" AND isbn_us = "n/a" |
54,677 | <question>: What is ISBN US, when Title is "Crisis In Space"? <context>: CREATE TABLE table_name_72 (isbn_us VARCHAR, title VARCHAR) <answer>: SELECT isbn_us FROM table_name_72 WHERE title = "crisis in space" |
54,678 | <question>: What is Author, when TV Companions Featured is "Peri Brown", and when Title is "Race Against Time"? <context>: CREATE TABLE table_name_1 (author VARCHAR, tv_companions_featured VARCHAR, title VARCHAR) <answer>: SELECT author FROM table_name_1 WHERE tv_companions_featured = "peri brown" AND title = "race against time" |
54,679 | <question>: What is Title, when TV Companions Featured is "K-9"? <context>: CREATE TABLE table_name_35 (title VARCHAR, tv_companions_featured VARCHAR) <answer>: SELECT title FROM table_name_35 WHERE tv_companions_featured = "k-9" |
54,680 | <question>: What is ISBN US, when Title is "Mission To Venus"? <context>: CREATE TABLE table_name_55 (isbn_us VARCHAR, title VARCHAR) <answer>: SELECT isbn_us FROM table_name_55 WHERE title = "mission to venus" |
54,681 | <question>: What is TV Companions Featured, when Author is "William Emms"? <context>: CREATE TABLE table_name_95 (tv_companions_featured VARCHAR, author VARCHAR) <answer>: SELECT tv_companions_featured FROM table_name_95 WHERE author = "william emms" |
54,682 | <question>: Which Date has a Result of 2β2, and a Venue of H? <context>: CREATE TABLE table_name_3 (date VARCHAR, result VARCHAR, venue VARCHAR) <answer>: SELECT date FROM table_name_3 WHERE result = "2β2" AND venue = "h" |
54,683 | <question>: Which player had a to par score larger than 7 and a total score of 298? <context>: CREATE TABLE table_name_5 (player VARCHAR, to_par VARCHAR, total VARCHAR) <answer>: SELECT player FROM table_name_5 WHERE to_par > 7 AND total = 298 |
54,684 | <question>: In which location did he win the Superbrawl 16 event? <context>: CREATE TABLE table_name_57 (location VARCHAR, res VARCHAR, event VARCHAR) <answer>: SELECT location FROM table_name_57 WHERE res = "win" AND event = "superbrawl 16" |
54,685 | <question>: What was his record when the method was technical submission (forearm choke)? <context>: CREATE TABLE table_name_57 (record VARCHAR, method VARCHAR) <answer>: SELECT record FROM table_name_57 WHERE method = "technical submission (forearm choke)" |
54,686 | <question>: Who was the opponent in round 2 of the UFC 49 event? <context>: CREATE TABLE table_name_1 (opponent VARCHAR, round VARCHAR, event VARCHAR) <answer>: SELECT opponent FROM table_name_1 WHERE round = "2" AND event = "ufc 49" |
54,687 | <question>: What was the round when he fought Joe Stevenson? <context>: CREATE TABLE table_name_26 (round VARCHAR, opponent VARCHAR) <answer>: SELECT round FROM table_name_26 WHERE opponent = "joe stevenson" |
54,688 | <question>: On which date was the score 94-74 w? <context>: CREATE TABLE table_name_70 (date VARCHAR, score VARCHAR) <answer>: SELECT date FROM table_name_70 WHERE score = "94-74 w" |
54,689 | <question>: When they played at Chicago Bulls, what was the Location/Attendance? <context>: CREATE TABLE table_name_47 (location_attendance VARCHAR, opponent VARCHAR) <answer>: SELECT location_attendance FROM table_name_47 WHERE opponent = "at chicago bulls" |
54,690 | <question>: Who was the opponent in Game 44? <context>: CREATE TABLE table_name_98 (opponent VARCHAR, game VARCHAR) <answer>: SELECT opponent FROM table_name_98 WHERE game = "44" |
54,691 | <question>: Who was the opponent when they played at Delta Center with a record of 27-13? <context>: CREATE TABLE table_name_7 (opponent VARCHAR, location_attendance VARCHAR, record VARCHAR) <answer>: SELECT opponent FROM table_name_7 WHERE location_attendance = "delta center" AND record = "27-13" |
54,692 | <question>: What was the date for Game 41? <context>: CREATE TABLE table_name_33 (date VARCHAR, game VARCHAR) <answer>: SELECT date FROM table_name_33 WHERE game = "41" |
54,693 | <question>: Which Opposing Team has an Against of 3, and a Date of 11 february 1950? <context>: CREATE TABLE table_name_97 (opposing_team VARCHAR, against VARCHAR, date VARCHAR) <answer>: SELECT opposing_team FROM table_name_97 WHERE against = 3 AND date = "11 february 1950" |
54,694 | <question>: Which Venue has an Opposing Team of manchester united, and a Round of 5th round replay? <context>: CREATE TABLE table_name_79 (venue VARCHAR, opposing_team VARCHAR, round VARCHAR) <answer>: SELECT venue FROM table_name_79 WHERE opposing_team = "manchester united" AND round = "5th round replay" |
54,695 | <question>: Which Against has a Date of 28 january 1950? <context>: CREATE TABLE table_name_49 (against INTEGER, date VARCHAR) <answer>: SELECT AVG(against) FROM table_name_49 WHERE date = "28 january 1950" |
54,696 | <question>: What is the total number of years wehre anna thompson had a 3rd place result at edinburgh, scotland? <context>: CREATE TABLE table_name_28 (year VARCHAR, result VARCHAR, venue VARCHAR) <answer>: SELECT COUNT(year) FROM table_name_28 WHERE result = "3rd" AND venue = "edinburgh, scotland" |
54,697 | <question>: What year did anna thompson have a 7th place result? <context>: CREATE TABLE table_name_85 (year VARCHAR, result VARCHAR) <answer>: SELECT year FROM table_name_85 WHERE result = "7th" |
54,698 | <question>: What is the average year that anna thompson had an 8th place result in team competition at the world cross country championships in st etienne, france with <context>: CREATE TABLE table_name_22 (year INTEGER, result VARCHAR, extra VARCHAR, tournament VARCHAR, venue VARCHAR) <answer>: SELECT AVG(year) FROM table_name_22 WHERE tournament = "world cross country championships" AND venue = "st etienne, france" AND extra = "team competition" AND result = "8th" |
54,699 | <question>: What is the total matches in 2002 where points won is larger than 1.5 and the points % is smaller than 50? <context>: CREATE TABLE table_name_4 (total_matches INTEGER, points__percentage VARCHAR, points_won VARCHAR, year VARCHAR) <answer>: SELECT MAX(total_matches) FROM table_name_4 WHERE points_won > 1.5 AND year = "2002" AND points__percentage < 50 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.