Unnamed: 0 int64 0 60k | input stringlengths 76 562 | answer stringlengths 18 557 |
|---|---|---|
13,000 | <question>: What is the population when the area km2 is 173.4? <context>: CREATE TABLE table_name_93 (population VARCHAR, area_km_2 VARCHAR) | SELECT population FROM table_name_93 WHERE area_km_2 = 173.4 |
13,001 | <question>: what is the census ranking when the area km 2 is 173.4? <context>: CREATE TABLE table_name_32 (census_ranking VARCHAR, area_km_2 VARCHAR) | SELECT census_ranking FROM table_name_32 WHERE area_km_2 = 173.4 |
13,002 | <question>: WHAT IS THE FRANCE WITH PEOPLE UNDER 18 OF SUB-SAHARAN AFRICA? <context>: CREATE TABLE table_name_37 (france VARCHAR, _percentage_people_under_18__2005_ VARCHAR) | SELECT france FROM table_name_37 WHERE _percentage_people_under_18__2005_ = "sub-saharan africa" |
13,003 | <question>: WHAT IS THE PARIS WITH A FRANCE OF 1.4%? <context>: CREATE TABLE table_name_71 (paris VARCHAR, france VARCHAR) | SELECT paris FROM table_name_71 WHERE france = "1.4%" |
13,004 | <question>: WHAT IS THE VAL-DE-MARNE WITH A Seine-Saint-Denis of 2.7%? <context>: CREATE TABLE table_name_18 (val_de_marne VARCHAR, seine_saint_denis VARCHAR) | SELECT val_de_marne FROM table_name_18 WHERE seine_saint_denis = "2.7%" |
13,005 | <question>: WHAT IS A Seine-Saint-Denis WITH A PARIS OF 12.1%? <context>: CREATE TABLE table_name_90 (seine_saint_denis VARCHAR, paris VARCHAR) | SELECT seine_saint_denis FROM table_name_90 WHERE paris = "12.1%" |
13,006 | <question>: WHAT IS Val-de-Marne WITH Seine-Saint-Denis of 4.0%? <context>: CREATE TABLE table_name_52 (val_de_marne VARCHAR, seine_saint_denis VARCHAR) | SELECT val_de_marne FROM table_name_52 WHERE seine_saint_denis = "4.0%" |
13,007 | <question>: What was the score for the match at the tournament in canada f7, toronto? <context>: CREATE TABLE table_name_87 (score VARCHAR, tournament VARCHAR) | SELECT score FROM table_name_87 WHERE tournament = "canada f7, toronto" |
13,008 | <question>: Who were the opponents that played on a hard surface on July 13, 2008? <context>: CREATE TABLE table_name_85 (opponents VARCHAR, surface VARCHAR, date VARCHAR) | SELECT opponents FROM table_name_85 WHERE surface = "hard" AND date = "july 13, 2008" |
13,009 | <question>: What type of surface was played on when the score was 2–6, 6–1, [10–5]? <context>: CREATE TABLE table_name_7 (surface VARCHAR, score VARCHAR) | SELECT surface FROM table_name_7 WHERE score = "2–6, 6–1, [10–5]" |
13,010 | <question>: What type of surface was played on July 27, 2013? <context>: CREATE TABLE table_name_31 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_31 WHERE date = "july 27, 2013" |
13,011 | <question>: What party was the member peter howson part of? <context>: CREATE TABLE table_name_85 (party VARCHAR, member VARCHAR) | SELECT party FROM table_name_85 WHERE member = "peter howson" |
13,012 | <question>: Who was the electorate when the member was rex connor? <context>: CREATE TABLE table_name_61 (electorate VARCHAR, member VARCHAR) | SELECT electorate FROM table_name_61 WHERE member = "rex connor" |
13,013 | <question>: What was the term of office for noel beaton? <context>: CREATE TABLE table_name_1 (term_of_office VARCHAR, member VARCHAR) | SELECT term_of_office FROM table_name_1 WHERE member = "noel beaton" |
13,014 | <question>: What was the term of office for the electorate warringah? <context>: CREATE TABLE table_name_1 (term_of_office VARCHAR, electorate VARCHAR) | SELECT term_of_office FROM table_name_1 WHERE electorate = "warringah" |
13,015 | <question>: What is the total number of people in attendance when the game was at TD Banknorth Garden, in a game higher than 31? <context>: CREATE TABLE table_name_20 (attendance VARCHAR, location VARCHAR, game VARCHAR) | SELECT COUNT(attendance) FROM table_name_20 WHERE location = "td banknorth garden" AND game > 31 |
13,016 | <question>: What state is Wesson in? <context>: CREATE TABLE table_name_13 (state VARCHAR, owner VARCHAR) | SELECT state FROM table_name_13 WHERE owner = "wesson" |
13,017 | <question>: What is the College/Junior/Club Team (League) when the position is rw, and the player is Don Murdoch? <context>: CREATE TABLE table_name_31 (college_junior_club_team__league_ VARCHAR, position VARCHAR, player VARCHAR) | SELECT college_junior_club_team__league_ FROM table_name_31 WHERE position = "rw" AND player = "don murdoch" |
13,018 | <question>: What is the position when the round is less than 2? <context>: CREATE TABLE table_name_68 (position VARCHAR, round INTEGER) | SELECT position FROM table_name_68 WHERE round < 2 |
13,019 | <question>: What is the nationality when Claude Periard is the player? <context>: CREATE TABLE table_name_33 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_name_33 WHERE player = "claude periard" |
13,020 | <question>: What is the lowest round for the player Claude Periard? <context>: CREATE TABLE table_name_68 (round INTEGER, player VARCHAR) | SELECT MIN(round) FROM table_name_68 WHERE player = "claude periard" |
13,021 | <question>: When did the consort who had talal i as a spouse die? <context>: CREATE TABLE table_name_98 (died VARCHAR, spouse_to VARCHAR) | SELECT died FROM table_name_98 WHERE spouse_to = "talal i" |
13,022 | <question>: Who was the spouse of the consort who was born as rania al yassin? <context>: CREATE TABLE table_name_27 (spouse_to VARCHAR, born_as VARCHAR) | SELECT spouse_to FROM table_name_27 WHERE born_as = "rania al yassin" |
13,023 | <question>: When the Overall is under 102, what's the round played? <context>: CREATE TABLE table_name_74 (round VARCHAR, overall INTEGER) | SELECT round FROM table_name_74 WHERE overall < 102 |
13,024 | <question>: What is the highest Week, when Date is "November 8, 1970"? <context>: CREATE TABLE table_name_66 (week INTEGER, date VARCHAR) | SELECT MAX(week) FROM table_name_66 WHERE date = "november 8, 1970" |
13,025 | <question>: What is the lowest Attendance, when Date is "December 20, 1970", and when Week is less than 14? <context>: CREATE TABLE table_name_69 (attendance INTEGER, date VARCHAR, week VARCHAR) | SELECT MIN(attendance) FROM table_name_69 WHERE date = "december 20, 1970" AND week < 14 |
13,026 | <question>: What is Opponent, when Week is "5"? <context>: CREATE TABLE table_name_70 (opponent VARCHAR, week VARCHAR) | SELECT opponent FROM table_name_70 WHERE week = 5 |
13,027 | <question>: What is the place with the 68 score? <context>: CREATE TABLE table_name_30 (place VARCHAR, score VARCHAR) | SELECT place FROM table_name_30 WHERE score = 68 |
13,028 | <question>: what is the voltage when release date is june 2001 and frequency is 1.13ghz? <context>: CREATE TABLE table_name_92 (voltage VARCHAR, release_date VARCHAR, frequency VARCHAR) | SELECT voltage FROM table_name_92 WHERE release_date = "june 2001" AND frequency = "1.13ghz" |
13,029 | <question>: what is the part number(s) when l2 cache is 512 kb, release date is june 2001 and sSpec number is sl5lv, sl5pu, sl6bw, sl6jm? <context>: CREATE TABLE table_name_71 (part_number_s_ VARCHAR, sspec_number VARCHAR, l2_cache VARCHAR, release_date VARCHAR) | SELECT part_number_s_ FROM table_name_71 WHERE l2_cache = "512 kb" AND release_date = "june 2001" AND sspec_number = "sl5lv, sl5pu, sl6bw, sl6jm" |
13,030 | <question>: What is the L2 Cache when the Part Number(s) is rk80530pz014256? <context>: CREATE TABLE table_name_94 (l2_cache VARCHAR, part_number_s_ VARCHAR) | SELECT l2_cache FROM table_name_94 WHERE part_number_s_ = "rk80530pz014256" |
13,031 | <question>: What is the Release Date when sSpec Number is sl5xl, sl657, sl6by, sl6jp? <context>: CREATE TABLE table_name_96 (release_date VARCHAR, sspec_number VARCHAR) | SELECT release_date FROM table_name_96 WHERE sspec_number = "sl5xl, sl657, sl6by, sl6jp" |
13,032 | <question>: What is the Socket when the Part Number(s) is rk80530pz001256? <context>: CREATE TABLE table_name_5 (socket VARCHAR, part_number_s_ VARCHAR) | SELECT socket FROM table_name_5 WHERE part_number_s_ = "rk80530pz001256" |
13,033 | <question>: what is the semifinalists when the surface is hard (i)? <context>: CREATE TABLE table_name_9 (semifinalists VARCHAR, surface VARCHAR) | SELECT semifinalists FROM table_name_9 WHERE surface = "hard (i)" |
13,034 | <question>: what is the surface when the winner and score is gustavo kuerten 6-4, 7-5, 7-6(6)? <context>: CREATE TABLE table_name_76 (surface VARCHAR, winner_and_score VARCHAR) | SELECT surface FROM table_name_76 WHERE winner_and_score = "gustavo kuerten 6-4, 7-5, 7-6(6)" |
13,035 | <question>: who is the winner and score for the week of august 9? <context>: CREATE TABLE table_name_6 (winner_and_score VARCHAR, week VARCHAR) | SELECT winner_and_score FROM table_name_6 WHERE week = "august 9" |
13,036 | <question>: what is the surface for the week of october 25? <context>: CREATE TABLE table_name_51 (surface VARCHAR, week VARCHAR) | SELECT surface FROM table_name_51 WHERE week = "october 25" |
13,037 | <question>: who is the winner and score for finalist sébastien grosjean? <context>: CREATE TABLE table_name_28 (winner_and_score VARCHAR, finalist VARCHAR) | SELECT winner_and_score FROM table_name_28 WHERE finalist = "sébastien grosjean" |
13,038 | <question>: what is the week when the finalist is marcelo ríos? <context>: CREATE TABLE table_name_16 (week VARCHAR, finalist VARCHAR) | SELECT week FROM table_name_16 WHERE finalist = "marcelo ríos" |
13,039 | <question>: What country did Chris Witty represent? <context>: CREATE TABLE table_name_50 (nation VARCHAR, name VARCHAR) | SELECT nation FROM table_name_50 WHERE name = "chris witty" |
13,040 | <question>: On what day was the record set at the 2002 Salt Lake City games with a time of 3:57.70? <context>: CREATE TABLE table_name_49 (date VARCHAR, games VARCHAR, time VARCHAR) | SELECT date FROM table_name_49 WHERE games = "2002 salt lake city" AND time = "3:57.70" |
13,041 | <question>: Who set the record in the 500 metres event? <context>: CREATE TABLE table_name_14 (name VARCHAR, event VARCHAR) | SELECT name FROM table_name_14 WHERE event = "500 metres" |
13,042 | <question>: When was the attendance 3686? <context>: CREATE TABLE table_name_23 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_23 WHERE attendance = 3686 |
13,043 | <question>: What is the away team whose home is Victoria? <context>: CREATE TABLE table_name_42 (away VARCHAR, home VARCHAR) | SELECT away FROM table_name_42 WHERE home = "victoria" |
13,044 | <question>: What was the attendance when the away team was Real Espana? <context>: CREATE TABLE table_name_67 (attendance INTEGER, away VARCHAR) | SELECT MIN(attendance) FROM table_name_67 WHERE away = "real espana" |
13,045 | <question>: Where is nac breda club located? <context>: CREATE TABLE table_name_76 (location VARCHAR, club VARCHAR) | SELECT location FROM table_name_76 WHERE club = "nac breda" |
13,046 | <question>: Ron Jans is a manager of which kit maker? <context>: CREATE TABLE table_name_68 (kit_maker VARCHAR, manager VARCHAR) | SELECT kit_maker FROM table_name_68 WHERE manager = "ron jans" |
13,047 | <question>: Which manager sponsor arke shirt? <context>: CREATE TABLE table_name_90 (manager VARCHAR, shirt_sponsor VARCHAR) | SELECT manager FROM table_name_90 WHERE shirt_sponsor = "arke" |
13,048 | <question>: Which kit maker have Trond Sollied as a manager? <context>: CREATE TABLE table_name_44 (kit_maker VARCHAR, manager VARCHAR) | SELECT kit_maker FROM table_name_44 WHERE manager = "trond sollied" |
13,049 | <question>: Who is the manager of club fc twente? <context>: CREATE TABLE table_name_48 (manager VARCHAR, club VARCHAR) | SELECT manager FROM table_name_48 WHERE club = "fc twente" |
13,050 | <question>: What is the date of the game with 62 points? <context>: CREATE TABLE table_name_51 (date VARCHAR, points VARCHAR) | SELECT date FROM table_name_51 WHERE points = 62 |
13,051 | <question>: Who was the home team on January 4? <context>: CREATE TABLE table_name_85 (home VARCHAR, date VARCHAR) | SELECT home FROM table_name_85 WHERE date = "january 4" |
13,052 | <question>: What is Player, when Years With Spurs is 1988-95? <context>: CREATE TABLE table_name_7 (player VARCHAR, years_with_spurs VARCHAR) | SELECT player FROM table_name_7 WHERE years_with_spurs = "1988-95" |
13,053 | <question>: What is Height in Ft., when Years With Spurs is 1973-74? <context>: CREATE TABLE table_name_87 (height_in_ft VARCHAR, years_with_spurs VARCHAR) | SELECT height_in_ft FROM table_name_87 WHERE years_with_spurs = "1973-74" |
13,054 | <question>: What is Position, when School/Previous Club Team/Country is Kentucky? <context>: CREATE TABLE table_name_67 (position VARCHAR, school_previous_club_team_country VARCHAR) | SELECT position FROM table_name_67 WHERE school_previous_club_team_country = "kentucky" |
13,055 | <question>: What is Position, when Height in Ft. is 6-10? <context>: CREATE TABLE table_name_21 (position VARCHAR, height_in_ft VARCHAR) | SELECT position FROM table_name_21 WHERE height_in_ft = "6-10" |
13,056 | <question>: What was the lowest fumble with an average of less than 5.7 and 236 yards? <context>: CREATE TABLE table_name_35 (fumbles INTEGER, avg VARCHAR, yards VARCHAR) | SELECT MIN(fumbles) FROM table_name_35 WHERE avg < 5.7 AND yards = 236 |
13,057 | <question>: What was Buck Pierce's highest average when there were less than 2 fumbles? <context>: CREATE TABLE table_name_41 (avg INTEGER, player VARCHAR, fumbles VARCHAR) | SELECT MAX(avg) FROM table_name_41 WHERE player = "buck pierce" AND fumbles < 2 |
13,058 | <question>: What is the census ranking for the community with an area smaller than 9.94 km2 and a population smaller than 817? <context>: CREATE TABLE table_name_93 (census_ranking VARCHAR, area_km_2 VARCHAR, population VARCHAR) | SELECT census_ranking FROM table_name_93 WHERE area_km_2 < 9.94 AND population < 817 |
13,059 | <question>: What is the area (in km2) for the community that has a status of village, a census ranking of 2,471 of 5,008, and a population of less than 748? <context>: CREATE TABLE table_name_10 (area_km_2 INTEGER, population VARCHAR, status VARCHAR, census_ranking VARCHAR) | SELECT SUM(area_km_2) FROM table_name_10 WHERE status = "village" AND census_ranking = "2,471 of 5,008" AND population < 748 |
13,060 | <question>: What is the area (in km2) for the village of Paquetville, with a population over 706? <context>: CREATE TABLE table_name_89 (area_km_2 INTEGER, population VARCHAR, status VARCHAR, official_name VARCHAR) | SELECT AVG(area_km_2) FROM table_name_89 WHERE status = "village" AND official_name = "paquetville" AND population > 706 |
13,061 | <question>: Who had the high assists in Game 22? <context>: CREATE TABLE table_name_85 (high_assists VARCHAR, game VARCHAR) | SELECT high_assists FROM table_name_85 WHERE game = 22 |
13,062 | <question>: On December 3, where was the game held and how many were in attendance? <context>: CREATE TABLE table_name_56 (location_attendance VARCHAR, date VARCHAR) | SELECT location_attendance FROM table_name_56 WHERE date = "december 3" |
13,063 | <question>: Which venue is rank 3? <context>: CREATE TABLE table_name_38 (venue VARCHAR, rank VARCHAR) | SELECT venue FROM table_name_38 WHERE rank = "3" |
13,064 | <question>: Which opponent played in 2001/02? <context>: CREATE TABLE table_name_65 (opponent VARCHAR, season VARCHAR) | SELECT opponent FROM table_name_65 WHERE season = "2001/02" |
13,065 | <question>: Which season is rank 4? <context>: CREATE TABLE table_name_31 (season VARCHAR, rank VARCHAR) | SELECT season FROM table_name_31 WHERE rank = "4" |
13,066 | <question>: Which season has rank 2? <context>: CREATE TABLE table_name_35 (season VARCHAR, rank VARCHAR) | SELECT season FROM table_name_35 WHERE rank = "2" |
13,067 | <question>: Which venue is rank 3? <context>: CREATE TABLE table_name_4 (venue VARCHAR, rank VARCHAR) | SELECT venue FROM table_name_4 WHERE rank = "3" |
13,068 | <question>: What conference has 2009 as the season, with super leg final as the format? <context>: CREATE TABLE table_name_8 (conference VARCHAR, season VARCHAR, format VARCHAR) | SELECT conference FROM table_name_8 WHERE season = 2009 AND format = "super leg final" |
13,069 | <question>: What series has a season after 2008, super leg final as the format, and conference v as the conference? <context>: CREATE TABLE table_name_39 (series VARCHAR, conference VARCHAR, season VARCHAR, format VARCHAR) | SELECT series FROM table_name_39 WHERE season > 2008 AND format = "super leg final" AND conference = "conference v" |
13,070 | <question>: Which series has a season prior to 2009? <context>: CREATE TABLE table_name_46 (series VARCHAR, season INTEGER) | SELECT series FROM table_name_46 WHERE season < 2009 |
13,071 | <question>: What format has conference iii as the conference? <context>: CREATE TABLE table_name_42 (format VARCHAR, conference VARCHAR) | SELECT format FROM table_name_42 WHERE conference = "conference iii" |
13,072 | <question>: Round 3 with less than 54 for Round 4? <context>: CREATE TABLE table_name_69 (round_3 VARCHAR, round_4 VARCHAR) | SELECT round_3 FROM table_name_69 WHERE round_4 = "54" |
13,073 | <question>: Round 4 for larger than 19 Round 1 and a 27 Round 2? <context>: CREATE TABLE table_name_45 (round_4 VARCHAR, round_1 VARCHAR, round_2 VARCHAR) | SELECT round_4 FROM table_name_45 WHERE round_1 > 19 AND round_2 = "27" |
13,074 | <question>: Round 3 with a round 4 of 50? <context>: CREATE TABLE table_name_39 (round_3 VARCHAR, round_4 VARCHAR) | SELECT round_3 FROM table_name_39 WHERE round_4 = "50" |
13,075 | <question>: How much did the away team b3 score on August 12, 2014? <context>: CREATE TABLE table_name_17 (score VARCHAR, away_team VARCHAR, date VARCHAR) | SELECT score FROM table_name_17 WHERE away_team = "b3" AND date = "august 12, 2014" |
13,076 | <question>: Which away team played on June 9, 2015 with a home team of f1? <context>: CREATE TABLE table_name_34 (away_team VARCHAR, date VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_34 WHERE date = "june 9, 2015" AND home_team = "f1" |
13,077 | <question>: Which Margin has a Winning score of –7 (71-72-67-71=281)? <context>: CREATE TABLE table_name_26 (margin VARCHAR, winning_score VARCHAR) | SELECT margin FROM table_name_26 WHERE winning_score = –7(71 - 72 - 67 - 71 = 281) |
13,078 | <question>: Which Year has a Runner(s)-up of tammie green? <context>: CREATE TABLE table_name_71 (year INTEGER, runner_s__up VARCHAR) | SELECT MIN(year) FROM table_name_71 WHERE runner_s__up = "tammie green" |
13,079 | <question>: Which Year has a Winning score of –4 (69-72-70-69=280)? <context>: CREATE TABLE table_name_42 (year INTEGER, winning_score VARCHAR) | SELECT MIN(year) FROM table_name_42 WHERE winning_score = –4(69 - 72 - 70 - 69 = 280) |
13,080 | <question>: What work was nominated at Rockferendum 2007 and got 1st place and got the award for best album? <context>: CREATE TABLE table_name_55 (nominated_work VARCHAR, award VARCHAR, type VARCHAR, position VARCHAR) | SELECT nominated_work FROM table_name_55 WHERE type = "rockferendum 2007" AND position = "1st place" AND award = "best album" |
13,081 | <question>: What was the position that the nominated work La Quinta Esencia, which also won an award for best CD coverbox, won? <context>: CREATE TABLE table_name_18 (position VARCHAR, nominated_work VARCHAR, award VARCHAR) | SELECT position FROM table_name_18 WHERE nominated_work = "la quinta esencia" AND award = "best cd coverbox" |
13,082 | <question>: What was the type that had an award for song of the year and the position of 3rd place? <context>: CREATE TABLE table_name_1 (type VARCHAR, award VARCHAR, position VARCHAR) | SELECT type FROM table_name_1 WHERE award = "song of the year" AND position = "3rd place" |
13,083 | <question>: In what place is Phil Mickelson? <context>: CREATE TABLE table_name_65 (place VARCHAR, player VARCHAR) | SELECT place FROM table_name_65 WHERE player = "phil mickelson" |
13,084 | <question>: The score of 73-71-70=214 belongs to what country? <context>: CREATE TABLE table_name_77 (country VARCHAR, score VARCHAR) | SELECT country FROM table_name_77 WHERE score = 73 - 71 - 70 = 214 |
13,085 | <question>: Which country has a score of 73-74-69=216? <context>: CREATE TABLE table_name_95 (country VARCHAR, score VARCHAR) | SELECT country FROM table_name_95 WHERE score = 73 - 74 - 69 = 216 |
13,086 | <question>: Which team had Christoph John as an outgoing manager? <context>: CREATE TABLE table_name_45 (team VARCHAR, outgoing_manager VARCHAR) | SELECT team FROM table_name_45 WHERE outgoing_manager = "christoph john" |
13,087 | <question>: In what venue was the Batting team India who featured partners Sachin Tendulkar and Rahul Dravid? <context>: CREATE TABLE table_name_15 (venue VARCHAR, batting_team VARCHAR, batting_partners VARCHAR) | SELECT venue FROM table_name_15 WHERE batting_team = "india" AND batting_partners = "sachin tendulkar and rahul dravid" |
13,088 | <question>: In what venue did the fielding team Sri Lanka play? <context>: CREATE TABLE table_name_86 (venue VARCHAR, fielding_team VARCHAR) | SELECT venue FROM table_name_86 WHERE fielding_team = "sri lanka" |
13,089 | <question>: What was the wicket ranking for the match featuring partners Mohammad Azharuddin and Ajay Jadeja and also a fielding team of Sri Lanka? <context>: CREATE TABLE table_name_93 (wicket VARCHAR, batting_partners VARCHAR, fielding_team VARCHAR) | SELECT wicket FROM table_name_93 WHERE batting_partners = "mohammad azharuddin and ajay jadeja" AND fielding_team = "sri lanka" |
13,090 | <question>: What was the wicket ranking for the match that had a fielding team of Sri Lanka? <context>: CREATE TABLE table_name_73 (wicket VARCHAR, fielding_team VARCHAR) | SELECT wicket FROM table_name_73 WHERE fielding_team = "sri lanka" |
13,091 | <question>: What date was the game against inverurie loco works when more than 342 attend? <context>: CREATE TABLE table_name_3 (date VARCHAR, attendance VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_3 WHERE attendance > 342 AND opponent = "inverurie loco works" |
13,092 | <question>: Which Score has a Date of july 20? <context>: CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_2 WHERE date = "july 20" |
13,093 | <question>: Which Score has a Date of may 20? <context>: CREATE TABLE table_name_76 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_76 WHERE date = "may 20" |
13,094 | <question>: Which Result has a Score of 69-81? <context>: CREATE TABLE table_name_25 (result VARCHAR, score VARCHAR) | SELECT result FROM table_name_25 WHERE score = "69-81" |
13,095 | <question>: Which Record has a Date of june 26? <context>: CREATE TABLE table_name_81 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_81 WHERE date = "june 26" |
13,096 | <question>: Which Date has a Record of 6-6? <context>: CREATE TABLE table_name_82 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_82 WHERE record = "6-6" |
13,097 | <question>: Which Score has a Record of 5-4? <context>: CREATE TABLE table_name_36 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_36 WHERE record = "5-4" |
13,098 | <question>: Who had the highest rebounds on December 30? <context>: CREATE TABLE table_name_4 (high_rebounds VARCHAR, date VARCHAR) | SELECT high_rebounds FROM table_name_4 WHERE date = "december 30" |
13,099 | <question>: Who had the highest assists on the l.a. lakers? <context>: CREATE TABLE table_name_21 (high_assists VARCHAR, team VARCHAR) | SELECT high_assists FROM table_name_21 WHERE team = "l.a. lakers" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.