Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
45,900 | <question>: What is the low bronze total for the team with 4 total and under 1 gold? <context>: CREATE TABLE table_name_66 (bronze INTEGER, total VARCHAR, gold VARCHAR) | SELECT MIN(bronze) FROM table_name_66 WHERE total = 4 AND gold < 1 |
45,901 | <question>: What is the average total for teams with over 3 bronzes and over 8 golds? <context>: CREATE TABLE table_name_33 (total INTEGER, bronze VARCHAR, gold VARCHAR) | SELECT AVG(total) FROM table_name_33 WHERE bronze > 3 AND gold > 8 |
45,902 | <question>: What is the low silver total associated with under 1 total? <context>: CREATE TABLE table_name_99 (silver INTEGER, total INTEGER) | SELECT MIN(silver) FROM table_name_99 WHERE total < 1 |
45,903 | <question>: What is the number of points associated with the highest position under 9 and a current position of 22? <context>: CREATE TABLE table_name_92 (points VARCHAR, highest_position VARCHAR, position VARCHAR) | SELECT points FROM table_name_92 WHERE highest_position < 9 AND position = 22 |
45,904 | <question>: Performer 3 of paul merton, and a Performer 4 of sandi toksvig is which performer 1? <context>: CREATE TABLE table_name_93 (performer_1 VARCHAR, performer_3 VARCHAR, performer_4 VARCHAR) | SELECT performer_1 FROM table_name_93 WHERE performer_3 = "paul merton" AND performer_4 = "sandi toksvig" |
45,905 | <question>: Episode of 16 involves which performer 1? <context>: CREATE TABLE table_name_64 (performer_1 VARCHAR, episode VARCHAR) | SELECT performer_1 FROM table_name_64 WHERE episode = 16 |
45,906 | <question>: Performer 2 of compilation 1 had what performer 1? <context>: CREATE TABLE table_name_55 (performer_1 VARCHAR, performer_2 VARCHAR) | SELECT performer_1 FROM table_name_55 WHERE performer_2 = "compilation 1" |
45,907 | <question>: Which Schwaben has an Oberbayern of fc ingolstadt 04 and a Mittelfranken of sv seligenporten <context>: CREATE TABLE table_name_98 (schwaben VARCHAR, oberbayern VARCHAR, mittelfranken VARCHAR) | SELECT schwaben FROM table_name_98 WHERE oberbayern = "fc ingolstadt 04" AND mittelfranken = "sv seligenporten" |
45,908 | <question>: Which Schwaben has a Oberbayern of fc bayern munich ii and a Mittelfranken of 1. fc nuremberg ii? <context>: CREATE TABLE table_name_15 (schwaben VARCHAR, oberbayern VARCHAR, mittelfranken VARCHAR) | SELECT schwaben FROM table_name_15 WHERE oberbayern = "fc bayern munich ii" AND mittelfranken = "1. fc nuremberg ii" |
45,909 | <question>: Who was the incumbent for south carolina 3 district? <context>: CREATE TABLE table_name_64 (incumbent VARCHAR, district VARCHAR) | SELECT incumbent FROM table_name_64 WHERE district = "south carolina 3" |
45,910 | <question>: When was the incumbent from the south carolina 1 district first elected? <context>: CREATE TABLE table_name_56 (first_elected VARCHAR, district VARCHAR) | SELECT first_elected FROM table_name_56 WHERE district = "south carolina 1" |
45,911 | <question>: Who was the incumbent that was first elected in 1892 and retired to run for the senate democratic hold? <context>: CREATE TABLE table_name_96 (incumbent VARCHAR, first_elected VARCHAR, result VARCHAR) | SELECT incumbent FROM table_name_96 WHERE first_elected = "1892" AND result = "retired to run for the senate democratic hold" |
45,912 | <question>: Who was the incumbent that retired to run for the senate democratic hold? <context>: CREATE TABLE table_name_82 (incumbent VARCHAR, result VARCHAR) | SELECT incumbent FROM table_name_82 WHERE result = "retired to run for the senate democratic hold" |
45,913 | <question>: What was the result of W. Jasper Talbert who was first elected in 1892? <context>: CREATE TABLE table_name_83 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR) | SELECT result FROM table_name_83 WHERE first_elected = "1892" AND incumbent = "w. jasper talbert" |
45,914 | <question>: Which Nationality has a 2.24 of xo, and a 2.20 of xo? <context>: CREATE TABLE table_name_35 (nationality VARCHAR) | SELECT nationality FROM table_name_35 WHERE 224 = "xo" AND 220 = "xo" |
45,915 | <question>: Which Athlete has a 2.24 of xo, and a 2.20 of o, and a 2.15 of o? <context>: CREATE TABLE table_name_8 (athlete VARCHAR) | SELECT athlete FROM table_name_8 WHERE 224 = "xo" AND 220 = "o" AND 215 = "o" |
45,916 | <question>: What is the earliest election with more than 7 candidates nominated, a percentage of the popular vote of 2.75%, and 0 seats won? <context>: CREATE TABLE table_name_69 (election INTEGER, _number_of_seats_won VARCHAR, _number_of_candidates_nominated VARCHAR, _percentage_of_popular_vote VARCHAR) | SELECT MIN(election) FROM table_name_69 WHERE _number_of_candidates_nominated > 7 AND _percentage_of_popular_vote = "2.75%" AND _number_of_seats_won < 0 |
45,917 | <question>: How much Played has a Lost larger than 14, and Drawn of 8, and a Team of ipatinga? <context>: CREATE TABLE table_name_22 (played INTEGER, team VARCHAR, lost VARCHAR, drawn VARCHAR) | SELECT SUM(played) FROM table_name_22 WHERE lost > 14 AND drawn = 8 AND team = "ipatinga" |
45,918 | <question>: How many Drawn have a Difference of 3, and Points smaller than 52? <context>: CREATE TABLE table_name_55 (drawn VARCHAR, difference VARCHAR, points VARCHAR) | SELECT COUNT(drawn) FROM table_name_55 WHERE difference = "3" AND points < 52 |
45,919 | <question>: Which Points is the highest one that has a Position smaller than 4, and a Team of sΓ£o paulo, and Drawn larger than 12? <context>: CREATE TABLE table_name_80 (points INTEGER, drawn VARCHAR, position VARCHAR, team VARCHAR) | SELECT MAX(points) FROM table_name_80 WHERE position < 4 AND team = "sΓ£o paulo" AND drawn > 12 |
45,920 | <question>: How many Lost have Points larger than 40, and a Position of 11, and a Played smaller than 38? <context>: CREATE TABLE table_name_18 (lost INTEGER, played VARCHAR, points VARCHAR, position VARCHAR) | SELECT SUM(lost) FROM table_name_18 WHERE points > 40 AND position = 11 AND played < 38 |
45,921 | <question>: What is the lowest number of games loss with a Points difference of 40 - 17, and over 6 games? <context>: CREATE TABLE table_name_3 (lost INTEGER, points_difference VARCHAR, games VARCHAR) | SELECT MIN(lost) FROM table_name_3 WHERE points_difference = "40 - 17" AND games > 6 |
45,922 | <question>: How many games lost for teams with over 6 games? <context>: CREATE TABLE table_name_46 (lost INTEGER, games INTEGER) | SELECT MIN(lost) FROM table_name_46 WHERE games > 6 |
45,923 | <question>: What are the highest number of games drawn for games numbered under 6? <context>: CREATE TABLE table_name_80 (drawn INTEGER, games INTEGER) | SELECT MAX(drawn) FROM table_name_80 WHERE games < 6 |
45,924 | <question>: How many games drawn with a Points difference of 31 - 33, and under 4 games lost? <context>: CREATE TABLE table_name_41 (drawn INTEGER, points_difference VARCHAR, lost VARCHAR) | SELECT SUM(drawn) FROM table_name_41 WHERE points_difference = "31 - 33" AND lost < 4 |
45,925 | <question>: Which Outcome has a Surface of hard (i), and a Date of 28 january 2003? <context>: CREATE TABLE table_name_78 (outcome VARCHAR, surface VARCHAR, date VARCHAR) | SELECT outcome FROM table_name_78 WHERE surface = "hard (i)" AND date = "28 january 2003" |
45,926 | <question>: Which Tournament has an Outcome of winner, and a Surface of hard (i)? <context>: CREATE TABLE table_name_4 (tournament VARCHAR, outcome VARCHAR, surface VARCHAR) | SELECT tournament FROM table_name_4 WHERE outcome = "winner" AND surface = "hard (i)" |
45,927 | <question>: Which Date has a Score of 6β1, 6β2? <context>: CREATE TABLE table_name_76 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_76 WHERE score = "6β1, 6β2" |
45,928 | <question>: Which Surface has an Opponent of oleksandra kravets? <context>: CREATE TABLE table_name_99 (surface VARCHAR, opponent VARCHAR) | SELECT surface FROM table_name_99 WHERE opponent = "oleksandra kravets" |
45,929 | <question>: Which Surface has a Date of 3 october 2003? <context>: CREATE TABLE table_name_60 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_60 WHERE date = "3 october 2003" |
45,930 | <question>: Which Surface has a Score of 6β4, 6β2? <context>: CREATE TABLE table_name_65 (surface VARCHAR, score VARCHAR) | SELECT surface FROM table_name_65 WHERE score = "6β4, 6β2" |
45,931 | <question>: How many ranks have a Code (IATA/ICAO) of ord/kord? <context>: CREATE TABLE table_name_29 (rank VARCHAR, code__iata_icao_ VARCHAR) | SELECT COUNT(rank) FROM table_name_29 WHERE code__iata_icao_ = "ord/kord" |
45,932 | <question>: Which Total Cargo (Metric Tonnes) is the highest one that has a Rank smaller than 4, and an Airport of shanghai pudong international airport? <context>: CREATE TABLE table_name_66 (total_cargo__metric_tonnes_ INTEGER, rank VARCHAR, airport VARCHAR) | SELECT MAX(total_cargo__metric_tonnes_) FROM table_name_66 WHERE rank < 4 AND airport = "shanghai pudong international airport" |
45,933 | <question>: What is the Per capita income where Median family income is $72,288? <context>: CREATE TABLE table_name_7 (per_capita_income VARCHAR, median_family_income VARCHAR) | SELECT per_capita_income FROM table_name_7 WHERE median_family_income = "$72,288" |
45,934 | <question>: What is the average grid for the +2.2 secs time/retired? <context>: CREATE TABLE table_name_44 (grid INTEGER, time_retired VARCHAR) | SELECT AVG(grid) FROM table_name_44 WHERE time_retired = "+2.2 secs" |
45,935 | <question>: Which Facility ID has a City of license of springfield, ma, and a ERP / Power W smaller than 230? <context>: CREATE TABLE table_name_15 (facility_id INTEGER, city_of_license VARCHAR, erp___power_w VARCHAR) | SELECT MAX(facility_id) FROM table_name_15 WHERE city_of_license = "springfield, ma" AND erp___power_w < 230 |
45,936 | <question>: Which Frequency has a Facility ID of 13598? <context>: CREATE TABLE table_name_33 (frequency VARCHAR, facility_id VARCHAR) | SELECT frequency FROM table_name_33 WHERE facility_id = 13598 |
45,937 | <question>: WHich Facility ID has a Call sign of wnpr? <context>: CREATE TABLE table_name_64 (facility_id INTEGER, call_sign VARCHAR) | SELECT AVG(facility_id) FROM table_name_64 WHERE call_sign = "wnpr" |
45,938 | <question>: Which Frequency has a Facility ID of 13598? <context>: CREATE TABLE table_name_71 (frequency VARCHAR, facility_id VARCHAR) | SELECT frequency FROM table_name_71 WHERE facility_id = 13598 |
45,939 | <question>: What is the total number of 1sts that Martin Schmitt had where he less than 235.7 points? <context>: CREATE TABLE table_name_81 (name VARCHAR, points VARCHAR) | SELECT COUNT(1 AS st__m_) FROM table_name_81 WHERE name = "martin schmitt" AND points < 235.7 |
45,940 | <question>: What is the total number of attendance for games where buffalo was the home team? <context>: CREATE TABLE table_name_83 (attendance VARCHAR, home VARCHAR) | SELECT COUNT(attendance) FROM table_name_83 WHERE home = "buffalo" |
45,941 | <question>: What was the score of the game on April 28 where Buffalo were the visiting team? <context>: CREATE TABLE table_name_64 (score VARCHAR, visitor VARCHAR, date VARCHAR) | SELECT score FROM table_name_64 WHERE visitor = "buffalo" AND date = "april 28" |
45,942 | <question>: What date was the game where the visiting team was philadelphia? <context>: CREATE TABLE table_name_10 (date VARCHAR, visitor VARCHAR) | SELECT date FROM table_name_10 WHERE visitor = "philadelphia" |
45,943 | <question>: Who got the gold in seoul before 2002? <context>: CREATE TABLE table_name_53 (gold VARCHAR, year VARCHAR, location VARCHAR) | SELECT gold FROM table_name_53 WHERE year < 2002 AND location = "seoul" |
45,944 | <question>: Where did sohn bong-gak win silver? <context>: CREATE TABLE table_name_14 (location VARCHAR, silver VARCHAR) | SELECT location FROM table_name_14 WHERE silver = "sohn bong-gak" |
45,945 | <question>: Who won the bronze when jin kanno won the gold? <context>: CREATE TABLE table_name_99 (bronze VARCHAR, gold VARCHAR) | SELECT bronze FROM table_name_99 WHERE gold = "jin kanno" |
45,946 | <question>: Which Score has an Outcome of runner-up, and a Tournament of johannesburg? <context>: CREATE TABLE table_name_69 (score VARCHAR, outcome VARCHAR, tournament VARCHAR) | SELECT score FROM table_name_69 WHERE outcome = "runner-up" AND tournament = "johannesburg" |
45,947 | <question>: Which Surface has an Opponent of kerry melville reid, and a Score of 6β3, 2β6, 3β6? <context>: CREATE TABLE table_name_53 (surface VARCHAR, opponent VARCHAR, score VARCHAR) | SELECT surface FROM table_name_53 WHERE opponent = "kerry melville reid" AND score = "6β3, 2β6, 3β6" |
45,948 | <question>: Which Outcome has an Opponent of wendy turnbull, and a Surface of grass? <context>: CREATE TABLE table_name_54 (outcome VARCHAR, opponent VARCHAR, surface VARCHAR) | SELECT outcome FROM table_name_54 WHERE opponent = "wendy turnbull" AND surface = "grass" |
45,949 | <question>: Which Tournament has a Date of 22 january 1979? <context>: CREATE TABLE table_name_6 (tournament VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_6 WHERE date = "22 january 1979" |
45,950 | <question>: Which Outcome has a Score of 6β4, 2β6, 6β3? <context>: CREATE TABLE table_name_86 (outcome VARCHAR, score VARCHAR) | SELECT outcome FROM table_name_86 WHERE score = "6β4, 2β6, 6β3" |
45,951 | <question>: Which nation has total medals under 63, less than 2 silver, more than 2 bronze, and a rank of 8? <context>: CREATE TABLE table_name_69 (nation VARCHAR, rank VARCHAR, bronze VARCHAR, total VARCHAR, silver VARCHAR) | SELECT nation FROM table_name_69 WHERE total < 63 AND silver < 2 AND bronze > 2 AND rank = "8" |
45,952 | <question>: How many golds have bronze values of 4 and silver values over 2? <context>: CREATE TABLE table_name_65 (gold VARCHAR, bronze VARCHAR, silver VARCHAR) | SELECT COUNT(gold) FROM table_name_65 WHERE bronze = 4 AND silver > 2 |
45,953 | <question>: What is the sum of silver values that have bronze values under 4, golds over 2, and a rank of 3? <context>: CREATE TABLE table_name_52 (silver INTEGER, gold VARCHAR, bronze VARCHAR, rank VARCHAR) | SELECT SUM(silver) FROM table_name_52 WHERE bronze < 4 AND rank = "3" AND gold > 2 |
45,954 | <question>: What is the sum of gold values that have bronze values over 0 and totals under 2? <context>: CREATE TABLE table_name_34 (gold INTEGER, bronze VARCHAR, total VARCHAR) | SELECT SUM(gold) FROM table_name_34 WHERE bronze > 0 AND total < 2 |
45,955 | <question>: What is the smallest gold value that has a total over 15 and bronze values under 31? <context>: CREATE TABLE table_name_51 (gold INTEGER, total VARCHAR, bronze VARCHAR) | SELECT MIN(gold) FROM table_name_51 WHERE total > 15 AND bronze < 31 |
45,956 | <question>: What is the Equatorial diameter of the Body: Mars? <context>: CREATE TABLE table_name_24 (equatorial_diameter VARCHAR, body VARCHAR) | SELECT equatorial_diameter FROM table_name_24 WHERE body = "mars" |
45,957 | <question>: What is the Equatorial diameter of the Body: ceres? <context>: CREATE TABLE table_name_33 (equatorial_diameter VARCHAR, body VARCHAR) | SELECT equatorial_diameter FROM table_name_33 WHERE body = "ceres" |
45,958 | <question>: What is the Flattening ratio associated with the Equatorial diameter of 49,528km? <context>: CREATE TABLE table_name_79 (flattening_ratio VARCHAR, equatorial_diameter VARCHAR) | SELECT flattening_ratio FROM table_name_79 WHERE equatorial_diameter = "49,528km" |
45,959 | <question>: What is the Equatorial bulge of the Body: Earth? <context>: CREATE TABLE table_name_74 (equatorial_bulge VARCHAR, body VARCHAR) | SELECT equatorial_bulge FROM table_name_74 WHERE body = "earth" |
45,960 | <question>: What is the Flattening ratio associated with the Equatorial diameter of 120,536km? <context>: CREATE TABLE table_name_75 (flattening_ratio VARCHAR, equatorial_diameter VARCHAR) | SELECT flattening_ratio FROM table_name_75 WHERE equatorial_diameter = "120,536km" |
45,961 | <question>: What is the Flattening ratio associated with the Equatorial diameter of 12,756.28km? <context>: CREATE TABLE table_name_27 (flattening_ratio VARCHAR, equatorial_diameter VARCHAR) | SELECT flattening_ratio FROM table_name_27 WHERE equatorial_diameter = "12,756.28km" |
45,962 | <question>: What is the average Yards with an average of less than 4 and the long is 12 with less than 29 attempts? <context>: CREATE TABLE table_name_53 (yards INTEGER, attempts VARCHAR, average VARCHAR, long VARCHAR) | SELECT AVG(yards) FROM table_name_53 WHERE average < 4 AND long = 12 AND attempts < 29 |
45,963 | <question>: What is the least amount of yards when the average is less than 2.6? <context>: CREATE TABLE table_name_65 (yards INTEGER, average INTEGER) | SELECT MIN(yards) FROM table_name_65 WHERE average < 2.6 |
45,964 | <question>: What is the lease amount of touchdowns with 1318 yards? <context>: CREATE TABLE table_name_41 (touchdowns INTEGER, yards VARCHAR) | SELECT MIN(touchdowns) FROM table_name_41 WHERE yards = 1318 |
45,965 | <question>: What is the number of touchdowns with the average is less than 2.6? <context>: CREATE TABLE table_name_80 (touchdowns VARCHAR, average INTEGER) | SELECT COUNT(touchdowns) FROM table_name_80 WHERE average < 2.6 |
45,966 | <question>: What is the total number for long when there are 19 attempts? <context>: CREATE TABLE table_name_52 (long VARCHAR, attempts VARCHAR) | SELECT COUNT(long) FROM table_name_52 WHERE attempts = 19 |
45,967 | <question>: What was the margin of victory for Olazabal in the German Masters? <context>: CREATE TABLE table_name_78 (margin_of_victory VARCHAR, tournament VARCHAR) | SELECT margin_of_victory FROM table_name_78 WHERE tournament = "german masters" |
45,968 | <question>: What was Olazabal's winning score in the event in which Phillip Price finished 2nd? <context>: CREATE TABLE table_name_90 (winning_score VARCHAR, runner_s__up VARCHAR) | SELECT winning_score FROM table_name_90 WHERE runner_s__up = "phillip price" |
45,969 | <question>: What was Olazabal's winning score in the German Masters? <context>: CREATE TABLE table_name_62 (winning_score VARCHAR, tournament VARCHAR) | SELECT winning_score FROM table_name_62 WHERE tournament = "german masters" |
45,970 | <question>: What was Olazabal's margin of victory int he Ebel European Masters Swiss Open? <context>: CREATE TABLE table_name_6 (margin_of_victory VARCHAR, tournament VARCHAR) | SELECT margin_of_victory FROM table_name_6 WHERE tournament = "ebel european masters swiss open" |
45,971 | <question>: Which Series Ep has a Netflix of s08e18? <context>: CREATE TABLE table_name_83 (series_ep VARCHAR, netflix VARCHAR) | SELECT series_ep FROM table_name_83 WHERE netflix = "s08e18" |
45,972 | <question>: Which Segment B has a Segment D of stone wool insulation? <context>: CREATE TABLE table_name_92 (segment_b VARCHAR, segment_d VARCHAR) | SELECT segment_b FROM table_name_92 WHERE segment_d = "stone wool insulation" |
45,973 | <question>: Which Segment A has a Segment C of poster restoration? <context>: CREATE TABLE table_name_70 (segment_a VARCHAR, segment_c VARCHAR) | SELECT segment_a FROM table_name_70 WHERE segment_c = "poster restoration" |
45,974 | <question>: Which Segment C has a Segment B of fish food? <context>: CREATE TABLE table_name_54 (segment_c VARCHAR, segment_b VARCHAR) | SELECT segment_c FROM table_name_54 WHERE segment_b = "fish food" |
45,975 | <question>: Which Segment C has a Netflix of s08e16? <context>: CREATE TABLE table_name_43 (segment_c VARCHAR, netflix VARCHAR) | SELECT segment_c FROM table_name_43 WHERE netflix = "s08e16" |
45,976 | <question>: What was the name of the competition that had Peterborough Phantoms as an opponent and a date of 2? <context>: CREATE TABLE table_name_26 (competition VARCHAR, opponent VARCHAR, date VARCHAR) | SELECT competition FROM table_name_26 WHERE opponent = "peterborough phantoms" AND date = 2 |
45,977 | <question>: What is the Tally in Kerry County? <context>: CREATE TABLE table_name_36 (tally VARCHAR, county VARCHAR) | SELECT tally FROM table_name_36 WHERE county = "kerry" |
45,978 | <question>: With a Total of less than 29, what is Ian Ryan's most Matches? <context>: CREATE TABLE table_name_31 (matches INTEGER, player VARCHAR, total VARCHAR) | SELECT MAX(matches) FROM table_name_31 WHERE player = "ian ryan" AND total < 29 |
45,979 | <question>: Which LEMA/SUBLEMA that has Votes smaller than 218656, and a Ch of Deputies of 0? <context>: CREATE TABLE table_name_22 (lema_sublema VARCHAR, votes VARCHAR, ch_of_deputies VARCHAR) | SELECT lema_sublema FROM table_name_22 WHERE votes < 218656 AND ch_of_deputies = "0" |
45,980 | <question>: Which LEMA/SUBLEMA has a Ch of Senators of 2? <context>: CREATE TABLE table_name_4 (lema_sublema VARCHAR, ch_of_senators VARCHAR) | SELECT lema_sublema FROM table_name_4 WHERE ch_of_senators = "2" |
45,981 | <question>: what tornament had the scores 6β7, 6β2, 6β4? <context>: CREATE TABLE table_name_22 (tournament VARCHAR, score_in_the_final VARCHAR) | SELECT tournament FROM table_name_22 WHERE score_in_the_final = "6β7, 6β2, 6β4" |
45,982 | <question>: what partner made the scores 6β4, 6β1? <context>: CREATE TABLE table_name_19 (partner VARCHAR, score_in_the_final VARCHAR) | SELECT partner FROM table_name_19 WHERE score_in_the_final = "6β4, 6β1" |
45,983 | <question>: What year had 6.62 m in the notes? <context>: CREATE TABLE table_name_60 (year VARCHAR, notes VARCHAR) | SELECT year FROM table_name_60 WHERE notes = "6.62 m" |
45,984 | <question>: Which competition in Budapest, Hungary gave a result of 8th? <context>: CREATE TABLE table_name_1 (competition VARCHAR, position VARCHAR, venue VARCHAR) | SELECT competition FROM table_name_1 WHERE position = "8th" AND venue = "budapest, hungary" |
45,985 | <question>: Which year did the World indoor championships gave a position of 3rd? <context>: CREATE TABLE table_name_12 (year INTEGER, competition VARCHAR, position VARCHAR) | SELECT SUM(year) FROM table_name_12 WHERE competition = "world indoor championships" AND position = "3rd" |
45,986 | <question>: What were the notes in Toronto, Canada? <context>: CREATE TABLE table_name_32 (notes VARCHAR, venue VARCHAR) | SELECT notes FROM table_name_32 WHERE venue = "toronto, canada" |
45,987 | <question>: Name the most points for class of 125cc and team of mv agusta with year more than 1957 <context>: CREATE TABLE table_name_65 (points INTEGER, year VARCHAR, class VARCHAR, team VARCHAR) | SELECT MAX(points) FROM table_name_65 WHERE class = "125cc" AND team = "mv agusta" AND year > 1957 |
45,988 | <question>: Which ZX Spectrum has a Year larger than 1984, and a Genre of arcade/strategy? <context>: CREATE TABLE table_name_92 (zx_spectrum VARCHAR, year VARCHAR, genre VARCHAR) | SELECT zx_spectrum FROM table_name_92 WHERE year > 1984 AND genre = "arcade/strategy" |
45,989 | <question>: How many years have a Title of kriegspiel? <context>: CREATE TABLE table_name_16 (year VARCHAR, title VARCHAR) | SELECT COUNT(year) FROM table_name_16 WHERE title = "kriegspiel" |
45,990 | <question>: Which ZX Spectrum has a C=64 of c64, and a Title of ankh? <context>: CREATE TABLE table_name_7 (zx_spectrum VARCHAR, c64 VARCHAR, title VARCHAR, c VARCHAR) | SELECT zx_spectrum FROM table_name_7 WHERE c = 64 = c64 AND title = "ankh" |
45,991 | <question>: Which Title has Others of amstrad cpc, and a Genre of arcade? <context>: CREATE TABLE table_name_22 (title VARCHAR, others VARCHAR, genre VARCHAR) | SELECT title FROM table_name_22 WHERE others = "amstrad cpc" AND genre = "arcade" |
45,992 | <question>: What was the result when the attendance was 12,000? <context>: CREATE TABLE table_name_77 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_77 WHERE attendance = "12,000" |
45,993 | <question>: What was the attendance for weeks prior to 5 when there was no game scheduled? <context>: CREATE TABLE table_name_21 (attendance VARCHAR, week VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_21 WHERE week < 5 AND date = "no game scheduled" |
45,994 | <question>: What was the attendance number for the venue of Lakeside Park? <context>: CREATE TABLE table_name_37 (attendance VARCHAR, venue VARCHAR) | SELECT attendance FROM table_name_37 WHERE venue = "lakeside park" |
45,995 | <question>: What is the largest week number for the venue of League Park for the date of November 25, 1920? <context>: CREATE TABLE table_name_63 (week INTEGER, venue VARCHAR, date VARCHAR) | SELECT MAX(week) FROM table_name_63 WHERE venue = "league park" AND date = "november 25, 1920" |
45,996 | <question>: What is Michael's surname? <context>: CREATE TABLE table_name_16 (surname VARCHAR, first VARCHAR) | SELECT surname FROM table_name_16 WHERE first = "michael" |
45,997 | <question>: Which First has Bats of r, and Throws of l, and a DOB of 12 october 1977? <context>: CREATE TABLE table_name_86 (first VARCHAR, dob VARCHAR, bats VARCHAR, throws VARCHAR) | SELECT first FROM table_name_86 WHERE bats = "r" AND throws = "l" AND dob = "12 october 1977" |
45,998 | <question>: When was Maat born? <context>: CREATE TABLE table_name_44 (dob VARCHAR, surname VARCHAR) | SELECT dob FROM table_name_44 WHERE surname = "maat" |
45,999 | <question>: How many bats does Todd have? <context>: CREATE TABLE table_name_88 (bats VARCHAR, first VARCHAR) | SELECT bats FROM table_name_88 WHERE first = "todd" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.