Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
47,400 | <question>: What is the lowest round for the player whose position is guard and had a pick number smaller than 144? <context>: CREATE TABLE table_name_84 (round INTEGER, position VARCHAR, pick VARCHAR) | SELECT MIN(round) FROM table_name_84 WHERE position = "guard" AND pick < 144 |
47,401 | <question>: What was the position of terry jones whose pick number was after 256? <context>: CREATE TABLE table_name_59 (position VARCHAR, pick VARCHAR, player VARCHAR) | SELECT position FROM table_name_59 WHERE pick > 256 AND player = "terry jones" |
47,402 | <question>: Which Loss has a Record of 30-32? <context>: CREATE TABLE table_name_85 (loss VARCHAR, record VARCHAR) | SELECT loss FROM table_name_85 WHERE record = "30-32" |
47,403 | <question>: Which Attendance is the highest one that has a Record of 37-38? <context>: CREATE TABLE table_name_45 (attendance INTEGER, record VARCHAR) | SELECT MAX(attendance) FROM table_name_45 WHERE record = "37-38" |
47,404 | <question>: Which Score has a Loss of buehrle (7-2)? <context>: CREATE TABLE table_name_91 (score VARCHAR, loss VARCHAR) | SELECT score FROM table_name_91 WHERE loss = "buehrle (7-2)" |
47,405 | <question>: Which Overall is the average one that has a Pick # larger than 7, and a Round larger than 4, and a Name of glen howe? <context>: CREATE TABLE table_name_30 (overall INTEGER, name VARCHAR, pick__number VARCHAR, round VARCHAR) | SELECT AVG(overall) FROM table_name_30 WHERE pick__number > 7 AND round > 4 AND name = "glen howe" |
47,406 | <question>: Which Round is the lowest one that has a Pick # larger than 10, and a Position of tight end, and an Overall smaller than 132? <context>: CREATE TABLE table_name_97 (round INTEGER, overall VARCHAR, pick__number VARCHAR, position VARCHAR) | SELECT MIN(round) FROM table_name_97 WHERE pick__number > 10 AND position = "tight end" AND overall < 132 |
47,407 | <question>: Which Round is the highest one that has an Overall of 32, and a Pick # smaller than 4? <context>: CREATE TABLE table_name_85 (round INTEGER, overall VARCHAR, pick__number VARCHAR) | SELECT MAX(round) FROM table_name_85 WHERE overall = 32 AND pick__number < 4 |
47,408 | <question>: How many Picks have a Round larger than 8, and a College of fresno state? <context>: CREATE TABLE table_name_4 (pick__number VARCHAR, round VARCHAR, college VARCHAR) | SELECT COUNT(pick__number) FROM table_name_4 WHERE round > 8 AND college = "fresno state" |
47,409 | <question>: Which Overall is the highest one that has a College of oklahoma, and a Pick # smaller than 4? <context>: CREATE TABLE table_name_19 (overall INTEGER, college VARCHAR, pick__number VARCHAR) | SELECT MAX(overall) FROM table_name_19 WHERE college = "oklahoma" AND pick__number < 4 |
47,410 | <question>: What is the result of the match on 30 July 2004? <context>: CREATE TABLE table_name_78 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_78 WHERE date = "30 july 2004" |
47,411 | <question>: What is the result of the match on 3 March 2004? <context>: CREATE TABLE table_name_60 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_60 WHERE date = "3 march 2004" |
47,412 | <question>: What is the score of the friendly match? <context>: CREATE TABLE table_name_63 (score VARCHAR, competition VARCHAR) | SELECT score FROM table_name_63 WHERE competition = "friendly match" |
47,413 | <question>: Which Week had a Result of w 10-0, and an Attendance smaller than 58,571? <context>: CREATE TABLE table_name_5 (week VARCHAR, result VARCHAR, attendance VARCHAR) | SELECT COUNT(week) FROM table_name_5 WHERE result = "w 10-0" AND attendance < 58 OFFSET 571 |
47,414 | <question>: Which Week had a Result of w 23-17? <context>: CREATE TABLE table_name_58 (week INTEGER, result VARCHAR) | SELECT SUM(week) FROM table_name_58 WHERE result = "w 23-17" |
47,415 | <question>: What was the Attendance on october 2, 1977? <context>: CREATE TABLE table_name_48 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_48 WHERE date = "october 2, 1977" |
47,416 | <question>: Bronze of 2, and a Silver smaller than 0 then what is the sum of the gold? <context>: CREATE TABLE table_name_99 (gold INTEGER, bronze VARCHAR, silver VARCHAR) | SELECT SUM(gold) FROM table_name_99 WHERE bronze = 2 AND silver < 0 |
47,417 | <question>: Smaller than 4, and a Silver larger than 0, and a Rank of 3, and a Bronze smaller than 6 then what is the sum of the gold? <context>: CREATE TABLE table_name_77 (total INTEGER, bronze VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR) | SELECT SUM(total) FROM table_name_77 WHERE gold < 4 AND silver > 0 AND rank = "3" AND bronze < 6 |
47,418 | <question>: Total larger than 3, and a Rank of 4, and a Silver larger than 0 has what average gold? <context>: CREATE TABLE table_name_2 (gold INTEGER, silver VARCHAR, total VARCHAR, rank VARCHAR) | SELECT AVG(gold) FROM table_name_2 WHERE total > 3 AND rank = "4" AND silver > 0 |
47,419 | <question>: Total smaller than 10, and a Gold larger than 1 then what is the lowest silver? <context>: CREATE TABLE table_name_86 (silver INTEGER, total VARCHAR, gold VARCHAR) | SELECT MIN(silver) FROM table_name_86 WHERE total < 10 AND gold > 1 |
47,420 | <question>: What was the date of the week 9 game? <context>: CREATE TABLE table_name_76 (date VARCHAR, week VARCHAR) | SELECT date FROM table_name_76 WHERE week = 9 |
47,421 | <question>: What class has over 0 wins and 42 points? <context>: CREATE TABLE table_name_13 (class VARCHAR, wins VARCHAR, points VARCHAR) | SELECT class FROM table_name_13 WHERE wins > 0 AND points = 42 |
47,422 | <question>: What team was the bike with a 350cc class, over 2 points, and 1 win? <context>: CREATE TABLE table_name_47 (team VARCHAR, wins VARCHAR, class VARCHAR, points VARCHAR) | SELECT team FROM table_name_47 WHERE class = "350cc" AND points > 2 AND wins = 1 |
47,423 | <question>: What is the earliest year associated with 0 wins and 42 points? <context>: CREATE TABLE table_name_22 (year INTEGER, wins VARCHAR, points VARCHAR) | SELECT MIN(year) FROM table_name_22 WHERE wins > 0 AND points = 42 |
47,424 | <question>: What Nationality has the Player of Marcus Walker? <context>: CREATE TABLE table_name_19 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_name_19 WHERE player = "marcus walker" |
47,425 | <question>: What Season is listed for the Player of Jon Stefansson? <context>: CREATE TABLE table_name_82 (season VARCHAR, player VARCHAR) | SELECT season FROM table_name_82 WHERE player = "jon stefansson" |
47,426 | <question>: Which Team has the Player of A.J. Moye? <context>: CREATE TABLE table_name_81 (team VARCHAR, player VARCHAR) | SELECT team FROM table_name_81 WHERE player = "a.j. moye" |
47,427 | <question>: What Position does the Team of KR and the Player of Marcus Walker have listed? <context>: CREATE TABLE table_name_8 (position VARCHAR, team VARCHAR, player VARCHAR) | SELECT position FROM table_name_8 WHERE team = "kr" AND player = "marcus walker" |
47,428 | <question>: What building is in ljubljana, proposed in 2010, and has 15 floors? <context>: CREATE TABLE table_name_21 (name VARCHAR, floors VARCHAR, location VARCHAR, year_proposed VARCHAR) | SELECT name FROM table_name_21 WHERE location = "ljubljana" AND year_proposed = "2010" AND floors = "15" |
47,429 | <question>: What is the Revenue per capita for Vermont? <context>: CREATE TABLE table_name_2 (revenue_per_capita VARCHAR, state VARCHAR) | SELECT revenue_per_capita FROM table_name_2 WHERE state = "vermont" |
47,430 | <question>: What state has a Net contribution per capita of $-171? <context>: CREATE TABLE table_name_67 (state VARCHAR, net_contribution_per_capita VARCHAR) | SELECT state FROM table_name_67 WHERE net_contribution_per_capita = "$-171" |
47,431 | <question>: Who is the PBA team with Mlqu college? <context>: CREATE TABLE table_name_68 (pba_team VARCHAR, college VARCHAR) | SELECT pba_team FROM table_name_68 WHERE college = "mlqu" |
47,432 | <question>: Who is the player with the PBA team of Barangay Ginebra Kings? <context>: CREATE TABLE table_name_11 (player VARCHAR, pba_team VARCHAR) | SELECT player FROM table_name_11 WHERE pba_team = "barangay ginebra kings" |
47,433 | <question>: Who was the opponent on April 28? <context>: CREATE TABLE table_name_60 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_60 WHERE date = "april 28" |
47,434 | <question>: What is the highest position the album Where we belong, which had an issue date higher than 9, had? <context>: CREATE TABLE table_name_14 (highest_position VARCHAR, issue_date VARCHAR, album_title VARCHAR) | SELECT COUNT(highest_position) FROM table_name_14 WHERE issue_date < 9 AND album_title = "where we belong" |
47,435 | <question>: What is the highest position Talk on Corners, which had an issue date greater than 1, had? <context>: CREATE TABLE table_name_29 (highest_position VARCHAR, album_title VARCHAR, issue_date VARCHAR) | SELECT COUNT(highest_position) FROM table_name_29 WHERE album_title = "talk on corners" AND issue_date > 1 |
47,436 | <question>: What is the highest sales All Saints had? <context>: CREATE TABLE table_name_51 (sales INTEGER, album_title VARCHAR) | SELECT MAX(sales) FROM table_name_51 WHERE album_title = "all saints" |
47,437 | <question>: Who is the Driver that has Car Model Commodore VS? <context>: CREATE TABLE table_name_26 (driver VARCHAR, car_model VARCHAR) | SELECT driver FROM table_name_26 WHERE car_model = "commodore vs" |
47,438 | <question>: What Car Model has the Manufacturer of Saab, and Driver Dean Randle? <context>: CREATE TABLE table_name_35 (car_model VARCHAR, manufacturer VARCHAR, driver VARCHAR) | SELECT car_model FROM table_name_35 WHERE manufacturer = "saab" AND driver = "dean randle" |
47,439 | <question>: Who is the Driver with the Team of P & L Mechanical Services? <context>: CREATE TABLE table_name_1 (driver VARCHAR, team VARCHAR) | SELECT driver FROM table_name_1 WHERE team = "p & l mechanical services" |
47,440 | <question>: What Car Model has the Engine of Ford 6.0 V8? <context>: CREATE TABLE table_name_19 (car_model VARCHAR, engine VARCHAR) | SELECT car_model FROM table_name_19 WHERE engine = "ford 6.0 v8" |
47,441 | <question>: What Team has the Engine of Chevrolet 6.0 V8, the Manufacturer of Opel, and the Driver Chris Jackson? <context>: CREATE TABLE table_name_51 (team VARCHAR, driver VARCHAR, engine VARCHAR, manufacturer VARCHAR) | SELECT team FROM table_name_51 WHERE engine = "chevrolet 6.0 v8" AND manufacturer = "opel" AND driver = "chris jackson" |
47,442 | <question>: What is the Segment A entry for the episode that has an entry of Diesel filters for Segment D? <context>: CREATE TABLE table_name_91 (segment_a VARCHAR, segment_d VARCHAR) | SELECT segment_a FROM table_name_91 WHERE segment_d = "diesel filters" |
47,443 | <question>: What is the series episode number that is larger than 262 and has a Segment A entry of Aluminium s canoe? <context>: CREATE TABLE table_name_60 (series_ep VARCHAR, episode VARCHAR, segment_a VARCHAR) | SELECT series_ep FROM table_name_60 WHERE episode > 262 AND segment_a = "aluminium s canoe" |
47,444 | <question>: Which First elected has a District of south carolina 2? <context>: CREATE TABLE table_name_53 (first_elected INTEGER, district VARCHAR) | SELECT MIN(first_elected) FROM table_name_53 WHERE district = "south carolina 2" |
47,445 | <question>: Which Incumbent has a First elected larger than 1884? <context>: CREATE TABLE table_name_58 (incumbent VARCHAR, first_elected INTEGER) | SELECT incumbent FROM table_name_58 WHERE first_elected > 1884 |
47,446 | <question>: What is the English title with a Director named ang lee? <context>: CREATE TABLE table_name_30 (english_title VARCHAR, director VARCHAR) | SELECT english_title FROM table_name_30 WHERE director = "ang lee" |
47,447 | <question>: What is the Original title with a Country that is canada? <context>: CREATE TABLE table_name_55 (original_title VARCHAR, country VARCHAR) | SELECT original_title FROM table_name_55 WHERE country = "canada" |
47,448 | <question>: Which Architecture and modelling has a Unit test of no, and a Projects templates of limited? <context>: CREATE TABLE table_name_5 (architecture_and_modelling VARCHAR, unit_test VARCHAR, projects_templates VARCHAR) | SELECT architecture_and_modelling FROM table_name_5 WHERE unit_test = "no" AND projects_templates = "limited" |
47,449 | <question>: which MSDN integration has a Load testing of no, and a Test impact analysis of no? <context>: CREATE TABLE table_name_16 (msdn_integration VARCHAR, load_testing VARCHAR, test_impact_analysis VARCHAR) | SELECT msdn_integration FROM table_name_16 WHERE load_testing = "no" AND test_impact_analysis = "no" |
47,450 | <question>: Which Unit test has a MSDN integration of full, and a Projects templates of yes? <context>: CREATE TABLE table_name_76 (unit_test VARCHAR, msdn_integration VARCHAR, projects_templates VARCHAR) | SELECT unit_test FROM table_name_76 WHERE msdn_integration = "full" AND projects_templates = "yes" |
47,451 | <question>: Which Intelli Trace has a No Extension and Windows Phone development of no? <context>: CREATE TABLE table_name_10 (intellitrace VARCHAR, extensions VARCHAR, windows_phone_development VARCHAR) | SELECT intellitrace FROM table_name_10 WHERE extensions = "no" AND windows_phone_development = "no" |
47,452 | <question>: Which Projects template has an IntelliTrace of no, and a Windows Phone development of yes, and a Test impact analysis of no? <context>: CREATE TABLE table_name_39 (projects_templates VARCHAR, test_impact_analysis VARCHAR, intellitrace VARCHAR, windows_phone_development VARCHAR) | SELECT projects_templates FROM table_name_39 WHERE intellitrace = "no" AND windows_phone_development = "yes" AND test_impact_analysis = "no" |
47,453 | <question>: Which MSDN integration has a IntelliTrace of yes? <context>: CREATE TABLE table_name_12 (msdn_integration VARCHAR, intellitrace VARCHAR) | SELECT msdn_integration FROM table_name_12 WHERE intellitrace = "yes" |
47,454 | <question>: During what Years of Operation was the location prospect 33 prospect ave? <context>: CREATE TABLE table_name_35 (years_of_operation VARCHAR, location VARCHAR) | SELECT years_of_operation FROM table_name_35 WHERE location = "prospect 33 prospect ave" |
47,455 | <question>: What is the location of the ivy club? <context>: CREATE TABLE table_name_82 (location VARCHAR, name VARCHAR) | SELECT location FROM table_name_82 WHERE name = "the ivy club" |
47,456 | <question>: What is the Sign-in/Bicker at wash50 on washington rd? <context>: CREATE TABLE table_name_27 (sign_in_bicker VARCHAR, location VARCHAR) | SELECT sign_in_bicker FROM table_name_27 WHERE location = "wash50 on washington rd" |
47,457 | <question>: When was the Clubhouse built with a Sign-in/Bicker of bicker, and Named cannon club? <context>: CREATE TABLE table_name_3 (year_clubhouse_constructed VARCHAR, sign_in_bicker VARCHAR, name VARCHAR) | SELECT year_clubhouse_constructed FROM table_name_3 WHERE sign_in_bicker = "bicker" AND name = "cannon club" |
47,458 | <question>: Which Sign-in/Bicker is at of wash50 on washington rd? <context>: CREATE TABLE table_name_56 (sign_in_bicker VARCHAR, location VARCHAR) | SELECT sign_in_bicker FROM table_name_56 WHERE location = "wash50 on washington rd" |
47,459 | <question>: Which Historical Photos were taken at prospect 43 prospect ave? <context>: CREATE TABLE table_name_46 (historical_photos VARCHAR, location VARCHAR) | SELECT historical_photos FROM table_name_46 WHERE location = "prospect 43 prospect ave" |
47,460 | <question>: What is the 1st leg of team 1 Lyon? <context>: CREATE TABLE table_name_26 (team_1 VARCHAR) | SELECT 1 AS st_leg FROM table_name_26 WHERE team_1 = "lyon" |
47,461 | <question>: What is the 1st leg of team 1 Liverpool? <context>: CREATE TABLE table_name_24 (team_1 VARCHAR) | SELECT 1 AS st_leg FROM table_name_24 WHERE team_1 = "liverpool" |
47,462 | <question>: How many events resulted in a top-25 less than 2? <context>: CREATE TABLE table_name_13 (events VARCHAR, top_25 INTEGER) | SELECT COUNT(events) FROM table_name_13 WHERE top_25 < 2 |
47,463 | <question>: What is the smallest number of wins for a top-25 value greater than 5 and more than 38 cuts? <context>: CREATE TABLE table_name_52 (wins INTEGER, top_25 VARCHAR, cuts_made VARCHAR) | SELECT MIN(wins) FROM table_name_52 WHERE top_25 > 5 AND cuts_made > 38 |
47,464 | <question>: How many bronze medals did Chinese Taipei win with less than 0 gold? <context>: CREATE TABLE table_name_29 (bronze VARCHAR, nation VARCHAR, gold VARCHAR) | SELECT COUNT(bronze) FROM table_name_29 WHERE nation = "chinese taipei" AND gold < 0 |
47,465 | <question>: How many silver medals had a rank of 3 with bronze larger than 0? <context>: CREATE TABLE table_name_90 (silver VARCHAR, rank VARCHAR, bronze VARCHAR) | SELECT COUNT(silver) FROM table_name_90 WHERE rank = 3 AND bronze > 0 |
47,466 | <question>: How many silver medals does China have? <context>: CREATE TABLE table_name_93 (silver VARCHAR, nation VARCHAR) | SELECT COUNT(silver) FROM table_name_93 WHERE nation = "china" |
47,467 | <question>: Which Position has Losses of 11, and a Played larger than 22? <context>: CREATE TABLE table_name_45 (position INTEGER, losses VARCHAR, played VARCHAR) | SELECT SUM(position) FROM table_name_45 WHERE losses = 11 AND played > 22 |
47,468 | <question>: How many Wins have a Scored smaller than 24, and a Conceded larger than 25, and Draws larger than 5, and a Position smaller than 9? <context>: CREATE TABLE table_name_89 (wins VARCHAR, position VARCHAR, draws VARCHAR, scored VARCHAR, conceded VARCHAR) | SELECT COUNT(wins) FROM table_name_89 WHERE scored < 24 AND conceded > 25 AND draws > 5 AND position < 9 |
47,469 | <question>: How many Points has a Position of 8? <context>: CREATE TABLE table_name_45 (points INTEGER, position VARCHAR) | SELECT AVG(points) FROM table_name_45 WHERE position = 8 |
47,470 | <question>: How many Wins has a Scored of 27 and Draws smaller than 5? <context>: CREATE TABLE table_name_61 (wins VARCHAR, scored VARCHAR, draws VARCHAR) | SELECT COUNT(wins) FROM table_name_61 WHERE scored = 27 AND draws < 5 |
47,471 | <question>: Which Position has Draws smaller than 7 and a Played larger than 22? <context>: CREATE TABLE table_name_16 (position INTEGER, draws VARCHAR, played VARCHAR) | SELECT AVG(position) FROM table_name_16 WHERE draws < 7 AND played > 22 |
47,472 | <question>: Which Played has a Scored larger than 25 and a Position of 1, and Draws smaller than 5? <context>: CREATE TABLE table_name_85 (played INTEGER, draws VARCHAR, scored VARCHAR, position VARCHAR) | SELECT MAX(played) FROM table_name_85 WHERE scored > 25 AND position = 1 AND draws < 5 |
47,473 | <question>: When was the player with 51 caps from a Club/province of clermont born? <context>: CREATE TABLE table_name_4 (date_of_birth__age_ VARCHAR, caps VARCHAR, club_province VARCHAR) | SELECT date_of_birth__age_ FROM table_name_4 WHERE caps = 51 AND club_province = "clermont" |
47,474 | <question>: How many Episode Counts have an Actor of liz carr? <context>: CREATE TABLE table_name_13 (episode_count VARCHAR, actor VARCHAR) | SELECT COUNT(episode_count) FROM table_name_13 WHERE actor = "liz carr" |
47,475 | <question>: Which Years have a Character of dr trevor stewart? <context>: CREATE TABLE table_name_54 (years VARCHAR, character VARCHAR) | SELECT years FROM table_name_54 WHERE character = "dr trevor stewart" |
47,476 | <question>: Which Series has an Actor of tom ward? <context>: CREATE TABLE table_name_92 (series VARCHAR, actor VARCHAR) | SELECT series FROM table_name_92 WHERE actor = "tom ward" |
47,477 | <question>: How many picks involved the player Joe Germanese? <context>: CREATE TABLE table_name_59 (pick__number INTEGER, player VARCHAR) | SELECT SUM(pick__number) FROM table_name_59 WHERE player = "joe germanese" |
47,478 | <question>: Which player's pick number was 25? <context>: CREATE TABLE table_name_79 (player VARCHAR, pick__number VARCHAR) | SELECT player FROM table_name_79 WHERE pick__number = 25 |
47,479 | <question>: What team did the Montreal Canadiens visit when the record was 0-3? <context>: CREATE TABLE table_name_3 (home VARCHAR, visitor VARCHAR, record VARCHAR) | SELECT home FROM table_name_3 WHERE visitor = "montreal canadiens" AND record = "0-3" |
47,480 | <question>: What was the score on April 23? <context>: CREATE TABLE table_name_5 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_5 WHERE date = "april 23" |
47,481 | <question>: What team did the Chicago Black Hawks visit on April 20? <context>: CREATE TABLE table_name_92 (home VARCHAR, visitor VARCHAR, date VARCHAR) | SELECT home FROM table_name_92 WHERE visitor = "chicago black hawks" AND date = "april 20" |
47,482 | <question>: How many Games have a Drawn larger than 0, and a Lost of 1? <context>: CREATE TABLE table_name_94 (games VARCHAR, drawn VARCHAR, lost VARCHAR) | SELECT COUNT(games) FROM table_name_94 WHERE drawn > 0 AND lost = 1 |
47,483 | <question>: Which Points have a Drawn larger than 0, and a Lost larger than 1? <context>: CREATE TABLE table_name_38 (points INTEGER, drawn VARCHAR, lost VARCHAR) | SELECT AVG(points) FROM table_name_38 WHERE drawn > 0 AND lost > 1 |
47,484 | <question>: Which Drawn has a Lost larger than 0, and Points smaller than 11, and Games smaller than 7? <context>: CREATE TABLE table_name_98 (drawn INTEGER, games VARCHAR, lost VARCHAR, points VARCHAR) | SELECT AVG(drawn) FROM table_name_98 WHERE lost > 0 AND points < 11 AND games < 7 |
47,485 | <question>: What is the percentage of the liberal party with less than 25 percent of seats? <context>: CREATE TABLE table_name_20 (percentage VARCHAR, party VARCHAR, percent_of_seats VARCHAR) | SELECT COUNT(percentage) FROM table_name_20 WHERE party = "liberal" AND percent_of_seats < 25 |
47,486 | <question>: Which party won less than 21 seats, has 0 percent of seats, and 69757 votes cast? <context>: CREATE TABLE table_name_94 (party VARCHAR, votes_cast VARCHAR, seats_won VARCHAR, percent_of_seats VARCHAR) | SELECT party FROM table_name_94 WHERE seats_won < 21 AND percent_of_seats = 0 AND votes_cast = 69757 |
47,487 | <question>: Can you tell me the Date that has the Game of 2? <context>: CREATE TABLE table_name_51 (date VARCHAR, game VARCHAR) | SELECT date FROM table_name_51 WHERE game = 2 |
47,488 | <question>: When the date is July 8, and the score is 8-12, who is the opponent? <context>: CREATE TABLE table_name_78 (opponent VARCHAR, date VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_78 WHERE date = "july 8" AND score = "8-12" |
47,489 | <question>: When the Loss is Johnson (4-12), what is the date? <context>: CREATE TABLE table_name_9 (date VARCHAR, loss VARCHAR) | SELECT date FROM table_name_9 WHERE loss = "johnson (4-12)" |
47,490 | <question>: What date is associated with the Loss of Farrell (6-13)? <context>: CREATE TABLE table_name_20 (date VARCHAR, loss VARCHAR) | SELECT date FROM table_name_20 WHERE loss = "farrell (6-13)" |
47,491 | <question>: Which opponent has the score of 0-3? <context>: CREATE TABLE table_name_55 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_55 WHERE score = "0-3" |
47,492 | <question>: What is the Total of kyrgyzstan with a Silver smaller than 0? <context>: CREATE TABLE table_name_97 (total INTEGER, nation VARCHAR, silver VARCHAR) | SELECT AVG(total) FROM table_name_97 WHERE nation = "kyrgyzstan" AND silver < 0 |
47,493 | <question>: What is the Total that has a number of Nation and a Gold smaller than 16? <context>: CREATE TABLE table_name_96 (total INTEGER, nation VARCHAR, gold VARCHAR) | SELECT MIN(total) FROM table_name_96 WHERE nation = "total" AND gold < 16 |
47,494 | <question>: Which Rank has a Silver larger than 1 and a Total larger than 13? <context>: CREATE TABLE table_name_95 (rank VARCHAR, silver VARCHAR, total VARCHAR) | SELECT rank FROM table_name_95 WHERE silver > 1 AND total > 13 |
47,495 | <question>: How many Silvers that have a Rank of 2? <context>: CREATE TABLE table_name_2 (silver VARCHAR, rank VARCHAR) | SELECT COUNT(silver) FROM table_name_2 WHERE rank = "2" |
47,496 | <question>: What was the previous conference for the school that joined in 2000 with a millers mascot? <context>: CREATE TABLE table_name_93 (previous_conference VARCHAR, year_joined VARCHAR, mascot VARCHAR) | SELECT previous_conference FROM table_name_93 WHERE year_joined = 2000 AND mascot = "millers" |
47,497 | <question>: What is the name of the college that is from a round greater than 3 with Gillis Wilson playing? <context>: CREATE TABLE table_name_85 (college VARCHAR, round VARCHAR, player VARCHAR) | SELECT college FROM table_name_85 WHERE round > 3 AND player = "gillis wilson" |
47,498 | <question>: What is average round of Auburn College? <context>: CREATE TABLE table_name_46 (round INTEGER, college VARCHAR) | SELECT AVG(round) FROM table_name_46 WHERE college = "auburn" |
47,499 | <question>: Which Top 10 is the lowest one that has Winnings of $405,300, and an Avg Start smaller than 30? <context>: CREATE TABLE table_name_86 (top_10 INTEGER, winnings VARCHAR, avg_start VARCHAR) | SELECT MIN(top_10) FROM table_name_86 WHERE winnings = "$405,300" AND avg_start < 30 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.