Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
11,300 | <question>: What is the League Cup for 1947–1958? <context>: CREATE TABLE table_name_40 (league_cup VARCHAR, years VARCHAR) | SELECT league_cup FROM table_name_40 WHERE years = "1947–1958" |
11,301 | <question>: What is the Total for 1926–1938? <context>: CREATE TABLE table_name_89 (total VARCHAR, years VARCHAR) | SELECT total FROM table_name_89 WHERE years = "1926–1938" |
11,302 | <question>: What is the Total for 1953–1964? <context>: CREATE TABLE table_name_26 (total VARCHAR, years VARCHAR) | SELECT total FROM table_name_26 WHERE years = "1953–1964" |
11,303 | <question>: Which final score had a surface of hard (i) on October 22, 2000? <context>: CREATE TABLE table_name_47 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) | SELECT score_in_the_final FROM table_name_47 WHERE surface = "hard (i)" AND date = "october 22, 2000" |
11,304 | <question>: Which tournament had an outcome of winner, a hard surface, and happened on August 26, 2006? <context>: CREATE TABLE table_name_76 (tournament VARCHAR, date VARCHAR, outcome VARCHAR, surface VARCHAR) | SELECT tournament FROM table_name_76 WHERE outcome = "winner" AND surface = "hard" AND date = "august 26, 2006" |
11,305 | <question>: Which date had the final opponent of Iva Majoli? <context>: CREATE TABLE table_name_39 (date VARCHAR, opponent_in_the_final VARCHAR) | SELECT date FROM table_name_39 WHERE opponent_in_the_final = "iva majoli" |
11,306 | <question>: On September 30, 1979, in a week before week 8, what was the result? <context>: CREATE TABLE table_name_71 (result VARCHAR, week VARCHAR, date VARCHAR) | SELECT result FROM table_name_71 WHERE week < 8 AND date = "september 30, 1979" |
11,307 | <question>: What was the average attendance in week 2? <context>: CREATE TABLE table_name_61 (attendance INTEGER, week VARCHAR) | SELECT AVG(attendance) FROM table_name_61 WHERE week = 2 |
11,308 | <question>: What is the sum of tonnage with a time at 00:10 and less than 42 casualties? <context>: CREATE TABLE table_name_30 (tonnage__grt_ INTEGER, time VARCHAR, casualties VARCHAR) | SELECT SUM(tonnage__grt_) FROM table_name_30 WHERE time = "00:10" AND casualties < 42 |
11,309 | <question>: Which Opponent had a Win as Res and a Time of 1:10? <context>: CREATE TABLE table_name_44 (opponent VARCHAR, res VARCHAR, time VARCHAR) | SELECT opponent FROM table_name_44 WHERE res = "win" AND time = "1:10" |
11,310 | <question>: How many games that ended in a draw were played by a team with more than 15 total games? <context>: CREATE TABLE table_name_78 (drawn VARCHAR, played INTEGER) | SELECT COUNT(drawn) FROM table_name_78 WHERE played > 15 |
11,311 | <question>: How many pages does the edition with a volume # smaller than 8 and an ISBM of 1-40122-892-5 have? <context>: CREATE TABLE table_name_30 (pages INTEGER, vol__number VARCHAR, isbn VARCHAR) | SELECT SUM(pages) FROM table_name_30 WHERE vol__number < 8 AND isbn = "1-40122-892-5" |
11,312 | <question>: What is the title of the edition with more than 128 pages and a volume # of 5? <context>: CREATE TABLE table_name_5 (title VARCHAR, pages VARCHAR, vol__number VARCHAR) | SELECT title FROM table_name_5 WHERE pages > 128 AND vol__number = 5 |
11,313 | <question>: How many pages does the ISBN 1-40122-328-1 have? <context>: CREATE TABLE table_name_47 (pages INTEGER, isbn VARCHAR) | SELECT SUM(pages) FROM table_name_47 WHERE isbn = "1-40122-328-1" |
11,314 | <question>: What position has a height (cm) greater than 180, and brian lawton as the name? <context>: CREATE TABLE table_name_68 (position VARCHAR, height__cm_ VARCHAR, name VARCHAR) | SELECT position FROM table_name_68 WHERE height__cm_ > 180 AND name = "brian lawton" |
11,315 | <question>: What is the lowest jersey # that has evergreen park, illinois as the birthplace, with a weight (km) greater than 86? <context>: CREATE TABLE table_name_62 (jersey__number INTEGER, birthplace VARCHAR, weight__kg_ VARCHAR) | SELECT MIN(jersey__number) FROM table_name_62 WHERE birthplace = "evergreen park, illinois" AND weight__kg_ > 86 |
11,316 | <question>: How many lost stats have a played number of less than 8? <context>: CREATE TABLE table_name_1 (lost VARCHAR, played INTEGER) | SELECT COUNT(lost) FROM table_name_1 WHERE played < 8 |
11,317 | <question>: What is the largest lost stat when the difference is - 19? <context>: CREATE TABLE table_name_36 (lost INTEGER, difference VARCHAR) | SELECT MAX(lost) FROM table_name_36 WHERE difference = "- 19" |
11,318 | <question>: How many positions have an against of less than 27, and a played number of less than 8? <context>: CREATE TABLE table_name_59 (position VARCHAR, against VARCHAR, played VARCHAR) | SELECT COUNT(position) FROM table_name_59 WHERE against < 27 AND played < 8 |
11,319 | <question>: What is Muzzle energy, when Cartridge is .375 remington ultra magnum? <context>: CREATE TABLE table_name_24 (muzzle_energy VARCHAR, cartridge VARCHAR) | SELECT muzzle_energy FROM table_name_24 WHERE cartridge = ".375 remington ultra magnum" |
11,320 | <question>: What is Source, when Cartridge is .375 remington ultra magnum? <context>: CREATE TABLE table_name_62 (source VARCHAR, cartridge VARCHAR) | SELECT source FROM table_name_62 WHERE cartridge = ".375 remington ultra magnum" |
11,321 | <question>: What is Source, when Cartridge is .375 remington ultra magnum? <context>: CREATE TABLE table_name_67 (source VARCHAR, cartridge VARCHAR) | SELECT source FROM table_name_67 WHERE cartridge = ".375 remington ultra magnum" |
11,322 | <question>: What is Muzzle energy, when Source is hornady? <context>: CREATE TABLE table_name_16 (muzzle_energy VARCHAR, source VARCHAR) | SELECT muzzle_energy FROM table_name_16 WHERE source = "hornady" |
11,323 | <question>: What is Bullet weight, when Source is hornady? <context>: CREATE TABLE table_name_99 (bullet_weight VARCHAR, source VARCHAR) | SELECT bullet_weight FROM table_name_99 WHERE source = "hornady" |
11,324 | <question>: Which Format has a Catalog of vcrdx 106? <context>: CREATE TABLE table_name_72 (format VARCHAR, catalog VARCHAR) | SELECT format FROM table_name_72 WHERE catalog = "vcrdx 106" |
11,325 | <question>: Which Region has a Catalog of magik muzik 806-5? <context>: CREATE TABLE table_name_19 (region VARCHAR, catalog VARCHAR) | SELECT region FROM table_name_19 WHERE catalog = "magik muzik 806-5" |
11,326 | <question>: Which Date has a Catalog of vcrt 106? <context>: CREATE TABLE table_name_6 (date VARCHAR, catalog VARCHAR) | SELECT date FROM table_name_6 WHERE catalog = "vcrt 106" |
11,327 | <question>: What pick was play Jason Webb? <context>: CREATE TABLE table_name_31 (pick INTEGER, player VARCHAR) | SELECT MAX(pick) FROM table_name_31 WHERE player = "jason webb" |
11,328 | <question>: Which colleges have a pick above 7? <context>: CREATE TABLE table_name_27 (college VARCHAR, pick INTEGER) | SELECT college FROM table_name_27 WHERE pick > 7 |
11,329 | <question>: How many teams picked Jason Webb? <context>: CREATE TABLE table_name_62 (pick VARCHAR, player VARCHAR) | SELECT COUNT(pick) FROM table_name_62 WHERE player = "jason webb" |
11,330 | <question>: What is the Total Tax Revenue that has an n.a. Stamp Duty Reserve Tax in the years 1995-96? <context>: CREATE TABLE table_name_75 (over_total_tax_revenue__in__percentage_ VARCHAR, stamp_duty_reserve_tax VARCHAR, year VARCHAR) | SELECT over_total_tax_revenue__in__percentage_ FROM table_name_75 WHERE stamp_duty_reserve_tax = "n.a." AND year = "1995-96" |
11,331 | <question>: What was the lowest Attendance on 8 October 1986? <context>: CREATE TABLE table_name_1 (attendance INTEGER, date VARCHAR) | SELECT MIN(attendance) FROM table_name_1 WHERE date = "8 october 1986" |
11,332 | <question>: What was the result when Dundee were the Opponent at Venue A on 6 September 1986? <context>: CREATE TABLE table_name_9 (result VARCHAR, date VARCHAR, opponent VARCHAR, venue VARCHAR) | SELECT result FROM table_name_9 WHERE opponent = "dundee" AND venue = "a" AND date = "6 september 1986" |
11,333 | <question>: What position did the player play who weighed less thna 91 kg and was born on March 5, 1977? <context>: CREATE TABLE table_name_6 (position VARCHAR, weight__kg_ VARCHAR, birthdate VARCHAR) | SELECT position FROM table_name_6 WHERE weight__kg_ < 91 AND birthdate = "march 5, 1977" |
11,334 | <question>: What is the total number of FA trophies of player Neil Grayson, who has more than 2 FA cups and a league greater than 17? <context>: CREATE TABLE table_name_17 (fa_trophy VARCHAR, league VARCHAR, fa_cup VARCHAR, player VARCHAR) | SELECT COUNT(fa_trophy) FROM table_name_17 WHERE fa_cup > 2 AND player = "neil grayson" AND league > 17 |
11,335 | <question>: What is the sum of FA cups of club Stalybridge Celtic, which has more than 0 FA trophies and a total less than 20? <context>: CREATE TABLE table_name_50 (fa_cup INTEGER, total VARCHAR, fa_trophy VARCHAR, club VARCHAR) | SELECT SUM(fa_cup) FROM table_name_50 WHERE fa_trophy > 0 AND club = "stalybridge celtic" AND total < 20 |
11,336 | <question>: What is the average total of halifax town club, which has a league less than 30 and more than 3 FA cups? <context>: CREATE TABLE table_name_18 (total INTEGER, fa_cup VARCHAR, club VARCHAR, league VARCHAR) | SELECT AVG(total) FROM table_name_18 WHERE club = "halifax town" AND league < 30 AND fa_cup > 3 |
11,337 | <question>: What was the score of the match against roger federer on April 3, 2006? <context>: CREATE TABLE table_name_44 (score VARCHAR, opponent VARCHAR, date VARCHAR) | SELECT score FROM table_name_44 WHERE opponent = "roger federer" AND date = "april 3, 2006" |
11,338 | <question>: What was the outcome of the match against andy roddick? <context>: CREATE TABLE table_name_78 (outcome VARCHAR, opponent VARCHAR) | SELECT outcome FROM table_name_78 WHERE opponent = "andy roddick" |
11,339 | <question>: What average week has october 8, 1950 as the date? <context>: CREATE TABLE table_name_8 (week INTEGER, date VARCHAR) | SELECT AVG(week) FROM table_name_8 WHERE date = "october 8, 1950" |
11,340 | <question>: How many weeks have pittsburgh steelers as the opponent? <context>: CREATE TABLE table_name_89 (week VARCHAR, opponent VARCHAR) | SELECT COUNT(week) FROM table_name_89 WHERE opponent = "pittsburgh steelers" |
11,341 | <question>: How many weeks have l 3-17 as the result? <context>: CREATE TABLE table_name_9 (week INTEGER, result VARCHAR) | SELECT SUM(week) FROM table_name_9 WHERE result = "l 3-17" |
11,342 | <question>: What attendance has Washington redskins as the opponent? <context>: CREATE TABLE table_name_89 (attendance VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_89 WHERE opponent = "washington redskins" |
11,343 | <question>: Which Model number has a Frequency of 2000mhz and a Voltage of 0.75-1.2? <context>: CREATE TABLE table_name_57 (model_number VARCHAR, frequency VARCHAR, voltage VARCHAR) | SELECT model_number FROM table_name_57 WHERE frequency = "2000mhz" AND voltage = "0.75-1.2" |
11,344 | <question>: Which Multi 1 has a Frequency of 2300mhz, and a Release date of q3 2008 and a Model number of turion x2 ultra zm-84? <context>: CREATE TABLE table_name_7 (multi_1 VARCHAR, model_number VARCHAR, frequency VARCHAR, release_date VARCHAR) | SELECT multi_1 FROM table_name_7 WHERE frequency = "2300mhz" AND release_date = "q3 2008" AND model_number = "turion x2 ultra zm-84" |
11,345 | <question>: What kind of Voltage has a Frequency of 2000mhz, and a Release date in q3 2008? <context>: CREATE TABLE table_name_64 (voltage VARCHAR, frequency VARCHAR, release_date VARCHAR) | SELECT voltage FROM table_name_64 WHERE frequency = "2000mhz" AND release_date = "q3 2008" |
11,346 | <question>: WHat kind of L2 cache has a Model number of turion x2 ultra zm-85? <context>: CREATE TABLE table_name_31 (l2_cache VARCHAR, model_number VARCHAR) | SELECT l2_cache FROM table_name_31 WHERE model_number = "turion x2 ultra zm-85" |
11,347 | <question>: Which Socket has a Frequency of 2200mhz, and a Release date on june 4, 2008? <context>: CREATE TABLE table_name_30 (socket VARCHAR, frequency VARCHAR, release_date VARCHAR) | SELECT socket FROM table_name_30 WHERE frequency = "2200mhz" AND release_date = "june 4, 2008" |
11,348 | <question>: What kind of Socket has a Order part number of tmrm72dam22gg? <context>: CREATE TABLE table_name_44 (socket VARCHAR, order_part_number VARCHAR) | SELECT socket FROM table_name_44 WHERE order_part_number = "tmrm72dam22gg" |
11,349 | <question>: What is the Birthdate of raymond bonney? <context>: CREATE TABLE table_name_20 (birthdate VARCHAR, name VARCHAR) | SELECT birthdate FROM table_name_20 WHERE name = "raymond bonney" |
11,350 | <question>: What is the Team for the player born in northfield, minnesota? <context>: CREATE TABLE table_name_30 (team VARCHAR, birthplace VARCHAR) | SELECT team FROM table_name_30 WHERE birthplace = "northfield, minnesota" |
11,351 | <question>: What is the Position of the person with a birthplace of phoenix, new york? <context>: CREATE TABLE table_name_81 (position VARCHAR, birthplace VARCHAR) | SELECT position FROM table_name_81 WHERE birthplace = "phoenix, new york" |
11,352 | <question>: What is the Name when the team is the st. paul a.c., with a Birthdate of 3 august 1890? <context>: CREATE TABLE table_name_45 (name VARCHAR, team VARCHAR, birthdate VARCHAR) | SELECT name FROM table_name_45 WHERE team = "st. paul a.c." AND birthdate = "3 august 1890" |
11,353 | <question>: What is the Position of moose goheen? <context>: CREATE TABLE table_name_61 (position VARCHAR, name VARCHAR) | SELECT position FROM table_name_61 WHERE name = "moose goheen" |
11,354 | <question>: What is the Birthdate of leon tuck? <context>: CREATE TABLE table_name_29 (birthdate VARCHAR, name VARCHAR) | SELECT birthdate FROM table_name_29 WHERE name = "leon tuck" |
11,355 | <question>: During the Tournament in which Jiří Novák was absent(A) in 1995, absent(A) in 1997, and made it to the 3rd round (3R) in 2003, how did he do in 2006? <context>: CREATE TABLE table_name_31 (Id VARCHAR) | SELECT 2006 FROM table_name_31 WHERE 1995 = "a" AND 1997 = "a" AND 2003 = "3r" |
11,356 | <question>: In the Tennis Masters Cup, how did Jiří Novák do in 1997? <context>: CREATE TABLE table_name_75 (tournament VARCHAR) | SELECT 1997 FROM table_name_75 WHERE tournament = "tennis masters cup" |
11,357 | <question>: In the Hamburg Masters Tournament, during which Jiří Novák was absent(A) in 1996, how did he do in 2003? <context>: CREATE TABLE table_name_71 (tournament VARCHAR) | SELECT 2003 FROM table_name_71 WHERE 1996 = "a" AND tournament = "hamburg masters" |
11,358 | <question>: In the Tournament during which Jiří Novák was absent(A) in 2004, how did he do in 2003? <context>: CREATE TABLE table_name_49 (Id VARCHAR) | SELECT 2003 FROM table_name_49 WHERE 2004 = "a" |
11,359 | <question>: In the Tournament during which Jiří Novák made it to the 1st round(1R) in 1995, how did he do in 2001? <context>: CREATE TABLE table_name_32 (Id VARCHAR) | SELECT 2001 FROM table_name_32 WHERE 1995 = "1r" |
11,360 | <question>: During the Hamburg Masters Tournament, during which Jiří Novák was absent(A) in 1998, how did he do in 1997? <context>: CREATE TABLE table_name_93 (tournament VARCHAR) | SELECT 1997 FROM table_name_93 WHERE 1998 = "a" AND tournament = "hamburg masters" |
11,361 | <question>: What is the sum of all from the Cultural and Educational Panel with less than 7 from the Labour Panel and less than 1 from the Agricultural Panel? <context>: CREATE TABLE table_name_23 (cultural_and_educational_panel INTEGER, labour_panel VARCHAR, agricultural_panel VARCHAR) | SELECT SUM(cultural_and_educational_panel) FROM table_name_23 WHERE labour_panel < 7 AND agricultural_panel < 1 |
11,362 | <question>: What is the Away team when the FootyTAB winner was st. george? <context>: CREATE TABLE table_name_13 (away_team VARCHAR, footytab_winner VARCHAR) | SELECT away_team FROM table_name_13 WHERE footytab_winner = "st. george" |
11,363 | <question>: What is the Home team when the away team was Manly? <context>: CREATE TABLE table_name_71 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_71 WHERE away_team = "manly" |
11,364 | <question>: What is the Match score when the FootyTAB winner was norths? <context>: CREATE TABLE table_name_81 (match_score VARCHAR, footytab_winner VARCHAR) | SELECT match_score FROM table_name_81 WHERE footytab_winner = "norths" |
11,365 | <question>: What is the Away team when the match score was norths 19 manly 4? <context>: CREATE TABLE table_name_54 (away_team VARCHAR, match_score VARCHAR) | SELECT away_team FROM table_name_54 WHERE match_score = "norths 19 manly 4" |
11,366 | <question>: What is the "Pick The Winners" score when the Match score was illawarra 19 souths 0? <context>: CREATE TABLE table_name_70 (match_score VARCHAR) | SELECT "pick_the_winners" AS _score FROM table_name_70 WHERE match_score = "illawarra 19 souths 0" |
11,367 | <question>: Which player has a FG Pct less than 45.9, a def reb less than 43, and a total reb of 9? <context>: CREATE TABLE table_name_21 (player VARCHAR, total_reb VARCHAR, fg_pct VARCHAR, def_reb VARCHAR) | SELECT player FROM table_name_21 WHERE fg_pct < 45.9 AND def_reb < 43 AND total_reb = 9 |
11,368 | <question>: How many Games has a Name of stéphane dumas and a Rank larger than 5? <context>: CREATE TABLE table_name_3 (games INTEGER, name VARCHAR, rank VARCHAR) | SELECT AVG(games) FROM table_name_3 WHERE name = "stéphane dumas" AND rank > 5 |
11,369 | <question>: How many Games has a Team of cai zaragoza and a Rank smaller than 1? <context>: CREATE TABLE table_name_24 (games INTEGER, team VARCHAR, rank VARCHAR) | SELECT SUM(games) FROM table_name_24 WHERE team = "cai zaragoza" AND rank < 1 |
11,370 | <question>: What was the most total medals awarded to Poland? <context>: CREATE TABLE table_name_37 (total INTEGER, nation VARCHAR) | SELECT MAX(total) FROM table_name_37 WHERE nation = "poland" |
11,371 | <question>: How many people attended the game on December 20, 1964? <context>: CREATE TABLE table_name_64 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_64 WHERE date = "december 20, 1964" |
11,372 | <question>: On what date did the Lions play against the Tampa Bay Buccaneers? <context>: CREATE TABLE table_name_66 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_66 WHERE opponent = "tampa bay buccaneers" |
11,373 | <question>: What was the date of the game against the New York Jets? <context>: CREATE TABLE table_name_7 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_7 WHERE opponent = "new york jets" |
11,374 | <question>: What is the Attendance with a Date that is october 31, 1965? <context>: CREATE TABLE table_name_15 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_15 WHERE date = "october 31, 1965" |
11,375 | <question>: What is the Attendance with a Date that is november 25, 1965? <context>: CREATE TABLE table_name_96 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_96 WHERE date = "november 25, 1965" |
11,376 | <question>: What is the lowest geohash length when the lat bits are less than 7, and the km error of ±2500? <context>: CREATE TABLE table_name_94 (geohash_length INTEGER, lat_bits VARCHAR, km_error VARCHAR) | SELECT MIN(geohash_length) FROM table_name_94 WHERE lat_bits < 7 AND km_error = "±2500" |
11,377 | <question>: What is the highest geohash length when the lat error is ±0.00068, and the lat bits larger than 17? <context>: CREATE TABLE table_name_99 (geohash_length INTEGER, lat_error VARCHAR, lat_bits VARCHAR) | SELECT MAX(geohash_length) FROM table_name_99 WHERE lat_error = "±0.00068" AND lat_bits > 17 |
11,378 | <question>: What is the highest geohash length when there is a ng error of ±0.00017, and a lng bits smaller than 20? <context>: CREATE TABLE table_name_31 (geohash_length INTEGER, lng_error VARCHAR, lng_bits VARCHAR) | SELECT MAX(geohash_length) FROM table_name_31 WHERE lng_error = "±0.00017" AND lng_bits < 20 |
11,379 | <question>: Which Against has a Drawn smaller than 5, a Lost of 3, and a Position of 3? <context>: CREATE TABLE table_name_93 (against INTEGER, position VARCHAR, drawn VARCHAR, lost VARCHAR) | SELECT MIN(against) FROM table_name_93 WHERE drawn < 5 AND lost = 3 AND position = 3 |
11,380 | <question>: Which Against has a Position larger than 8, and Points larger than 9? <context>: CREATE TABLE table_name_67 (against VARCHAR, position VARCHAR, points VARCHAR) | SELECT against FROM table_name_67 WHERE position > 8 AND points > 9 |
11,381 | <question>: Which Lost has Points smaller than 12, and a Drawn larger than 1? <context>: CREATE TABLE table_name_39 (lost VARCHAR, points VARCHAR, drawn VARCHAR) | SELECT COUNT(lost) FROM table_name_39 WHERE points < 12 AND drawn > 1 |
11,382 | <question>: Which Position has a Difference of 5, and a Drawn smaller than 3? <context>: CREATE TABLE table_name_84 (position INTEGER, difference VARCHAR, drawn VARCHAR) | SELECT MIN(position) FROM table_name_84 WHERE difference = "5" AND drawn < 3 |
11,383 | <question>: Which Against has a Position larger than 11? <context>: CREATE TABLE table_name_32 (against VARCHAR, position INTEGER) | SELECT COUNT(against) FROM table_name_32 WHERE position > 11 |
11,384 | <question>: Which Player has a Nationality of united states, a Position of forward, and a School/Club Team of notre dame? <context>: CREATE TABLE table_name_1 (player VARCHAR, school_club_team VARCHAR, nationality VARCHAR, position VARCHAR) | SELECT player FROM table_name_1 WHERE nationality = "united states" AND position = "forward" AND school_club_team = "notre dame" |
11,385 | <question>: Which Nationality has a School/Club Team of louisiana state? <context>: CREATE TABLE table_name_63 (nationality VARCHAR, school_club_team VARCHAR) | SELECT nationality FROM table_name_63 WHERE school_club_team = "louisiana state" |
11,386 | <question>: Which Years in Orlando has a Position of center, and a School/Club Team of louisiana state? <context>: CREATE TABLE table_name_41 (years_in_orlando VARCHAR, position VARCHAR, school_club_team VARCHAR) | SELECT years_in_orlando FROM table_name_41 WHERE position = "center" AND school_club_team = "louisiana state" |
11,387 | <question>: Which Position has a School/Club Team of illinois? <context>: CREATE TABLE table_name_89 (position VARCHAR, school_club_team VARCHAR) | SELECT position FROM table_name_89 WHERE school_club_team = "illinois" |
11,388 | <question>: Which Years in Orlando has a Nationality of united states, and a School/Club Team of illinois? <context>: CREATE TABLE table_name_23 (years_in_orlando VARCHAR, nationality VARCHAR, school_club_team VARCHAR) | SELECT years_in_orlando FROM table_name_23 WHERE nationality = "united states" AND school_club_team = "illinois" |
11,389 | <question>: Which Player has a Position of forward, and a School/Club Team of georgia tech? <context>: CREATE TABLE table_name_22 (player VARCHAR, position VARCHAR, school_club_team VARCHAR) | SELECT player FROM table_name_22 WHERE position = "forward" AND school_club_team = "georgia tech" |
11,390 | <question>: What is the total number of silver with rank number 6? <context>: CREATE TABLE table_name_6 (silver VARCHAR, rank VARCHAR) | SELECT COUNT(silver) FROM table_name_6 WHERE rank = 6 |
11,391 | <question>: What is the smallest total from Japan with a rank larger than 3? <context>: CREATE TABLE table_name_95 (total INTEGER, nation VARCHAR, rank VARCHAR) | SELECT MIN(total) FROM table_name_95 WHERE nation = "japan" AND rank > 3 |
11,392 | <question>: What is the largest number of silver that had 0 bronzes and total less than 1? <context>: CREATE TABLE table_name_67 (silver INTEGER, bronze VARCHAR, total VARCHAR) | SELECT MAX(silver) FROM table_name_67 WHERE bronze = 0 AND total < 1 |
11,393 | <question>: What is the smallest number of points for a match less than 12? <context>: CREATE TABLE table_name_6 (points INTEGER, match INTEGER) | SELECT MIN(points) FROM table_name_6 WHERE match < 12 |
11,394 | <question>: What is the mean number of languages for the monthly frequency when the publisher is the hearst corporation? <context>: CREATE TABLE table_name_23 (number_of_languages INTEGER, frequency VARCHAR, publisher VARCHAR) | SELECT AVG(number_of_languages) FROM table_name_23 WHERE frequency = "monthly" AND publisher = "hearst corporation" |
11,395 | <question>: What is the Political group for p. maelius capitolinus? <context>: CREATE TABLE table_name_58 (political_group VARCHAR, name VARCHAR) | SELECT political_group FROM table_name_58 WHERE name = "p. maelius capitolinus" |
11,396 | <question>: What is the Type for l. publilius philo vulscus? <context>: CREATE TABLE table_name_46 (type VARCHAR, name VARCHAR) | SELECT type FROM table_name_46 WHERE name = "l. publilius philo vulscus" |
11,397 | <question>: What is the Type for l. publilius philo vulscus? <context>: CREATE TABLE table_name_31 (type VARCHAR, name VARCHAR) | SELECT type FROM table_name_31 WHERE name = "l. publilius philo vulscus" |
11,398 | <question>: What was the title of the episode with a production code of 1gowo04? <context>: CREATE TABLE table_name_3 (episode_title VARCHAR, prod_code VARCHAR) | SELECT episode_title FROM table_name_3 WHERE prod_code = "1gowo04" |
11,399 | <question>: What is the production code fore the episode titled, life's no fun anymore? <context>: CREATE TABLE table_name_16 (prod_code VARCHAR, episode_title VARCHAR) | SELECT prod_code FROM table_name_16 WHERE episode_title = "life's no fun anymore" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.