Unnamed: 0
int64
0
60k
text
stringlengths
109
1.06k
54,400
<question>: What is the nationality of Stromile Swift? <context>: CREATE TABLE table_name_48 (nationality VARCHAR, player VARCHAR) <answer>: SELECT nationality FROM table_name_48 WHERE player = "stromile swift"
54,401
<question>: Which years did the player from Providence play for Memphis? <context>: CREATE TABLE table_name_62 (years_for_grizzlies VARCHAR, school_club_team VARCHAR) <answer>: SELECT years_for_grizzlies FROM table_name_62 WHERE school_club_team = "providence"
54,402
<question>: Which team has a record of 7-1? <context>: CREATE TABLE table_name_99 (opponent VARCHAR, record VARCHAR) <answer>: SELECT opponent FROM table_name_99 WHERE record = "7-1"
54,403
<question>: What game number was the first game played at the Summit this season? <context>: CREATE TABLE table_name_25 (game INTEGER, location VARCHAR) <answer>: SELECT MIN(game) FROM table_name_25 WHERE location = "the summit"
54,404
<question>: What was the final score for the game played against the New York Knicks? <context>: CREATE TABLE table_name_11 (score VARCHAR, opponent VARCHAR) <answer>: SELECT score FROM table_name_11 WHERE opponent = "new york knicks"
54,405
<question>: For the game played at the Boston Garden with a score of 118-110, what is the opposing team's record? <context>: CREATE TABLE table_name_68 (record VARCHAR, location VARCHAR, score VARCHAR) <answer>: SELECT record FROM table_name_68 WHERE location = "boston garden" AND score = "118-110"
54,406
<question>: What is Finish, when Year(s) Won is "1962 , 1967"? <context>: CREATE TABLE table_name_58 (finish VARCHAR, year_s__won VARCHAR) <answer>: SELECT finish FROM table_name_58 WHERE year_s__won = "1962 , 1967"
54,407
<question>: What is Player, when To Par is greater than 6, and when Year(s) Won is "1962 , 1967"? <context>: CREATE TABLE table_name_41 (player VARCHAR, to_par VARCHAR, year_s__won VARCHAR) <answer>: SELECT player FROM table_name_41 WHERE to_par > 6 AND year_s__won = "1962 , 1967"
54,408
<question>: What is Finish, when To Par is less than 14, and when Year(s) Won is "1952 , 1963"? <context>: CREATE TABLE table_name_85 (finish VARCHAR, to_par VARCHAR, year_s__won VARCHAR) <answer>: SELECT finish FROM table_name_85 WHERE to_par < 14 AND year_s__won = "1952 , 1963"
54,409
<question>: What is the highest To Par, when Year(s) Won is "1962 , 1967"? <context>: CREATE TABLE table_name_66 (to_par INTEGER, year_s__won VARCHAR) <answer>: SELECT MAX(to_par) FROM table_name_66 WHERE year_s__won = "1962 , 1967"
54,410
<question>: What is the Total, when To Par is less than 14, when Finish is T12, and when Player is "Julius Boros"? <context>: CREATE TABLE table_name_13 (total VARCHAR, player VARCHAR, to_par VARCHAR, finish VARCHAR) <answer>: SELECT total FROM table_name_13 WHERE to_par < 14 AND finish = "t12" AND player = "julius boros"
54,411
<question>: What is the highest number of artists on Scarface? <context>: CREATE TABLE table_name_67 (number INTEGER, artist VARCHAR) <answer>: SELECT MAX(number) FROM table_name_67 WHERE artist = "scarface"
54,412
<question>: What is the average number for Black Milk? <context>: CREATE TABLE table_name_18 (number INTEGER, artist VARCHAR) <answer>: SELECT AVG(number) FROM table_name_18 WHERE artist = "black milk"
54,413
<question>: What is the lowest average for number 2? <context>: CREATE TABLE table_name_12 (average_score INTEGER, number VARCHAR) <answer>: SELECT MIN(average_score) FROM table_name_12 WHERE number = 2
54,414
<question>: What is the highest score for Black Milk? <context>: CREATE TABLE table_name_29 (average_score INTEGER, artist VARCHAR) <answer>: SELECT MAX(average_score) FROM table_name_29 WHERE artist = "black milk"
54,415
<question>: What surface was played on when Piet Norval was a partner? <context>: CREATE TABLE table_name_24 (surface VARCHAR, partner VARCHAR) <answer>: SELECT surface FROM table_name_24 WHERE partner = "piet norval"
54,416
<question>: What was the surface played on when they were a runner-up in 2007? <context>: CREATE TABLE table_name_5 (surface VARCHAR, outcome VARCHAR, year VARCHAR) <answer>: SELECT surface FROM table_name_5 WHERE outcome = "runner-up" AND year = 2007
54,417
<question>: What is Goals, when Assists is greater than 28, and when Player is Steve Walker? <context>: CREATE TABLE table_name_89 (goals VARCHAR, assists VARCHAR, player VARCHAR) <answer>: SELECT goals FROM table_name_89 WHERE assists > 28 AND player = "steve walker"
54,418
<question>: What is the average Games, when Player is Robert Hock, and when Goals is less than 24? <context>: CREATE TABLE table_name_19 (games INTEGER, player VARCHAR, goals VARCHAR) <answer>: SELECT AVG(games) FROM table_name_19 WHERE player = "robert hock" AND goals < 24
54,419
<question>: What is the average Assists, when Club is Iserlohn Roosters,when Points is 71, and when Goals is greater than 44? <context>: CREATE TABLE table_name_18 (assists INTEGER, goals VARCHAR, club VARCHAR, points VARCHAR) <answer>: SELECT AVG(assists) FROM table_name_18 WHERE club = "iserlohn roosters" AND points = 71 AND goals > 44
54,420
<question>: What is the average Goals, when Club is Iserlohn Roosters, and when Games is less than 56? <context>: CREATE TABLE table_name_45 (goals INTEGER, club VARCHAR, games VARCHAR) <answer>: SELECT AVG(goals) FROM table_name_45 WHERE club = "iserlohn roosters" AND games < 56
54,421
<question>: What is the location of the game with a 115-105 score? <context>: CREATE TABLE table_name_35 (location VARCHAR, score VARCHAR) <answer>: SELECT location FROM table_name_35 WHERE score = "115-105"
54,422
<question>: What is the record of the game with a 110-106 score? <context>: CREATE TABLE table_name_89 (record VARCHAR, score VARCHAR) <answer>: SELECT record FROM table_name_89 WHERE score = "110-106"
54,423
<question>: What is the record of game 48? <context>: CREATE TABLE table_name_40 (record VARCHAR, game VARCHAR) <answer>: SELECT record FROM table_name_40 WHERE game = 48
54,424
<question>: What is the record of the game with a 110-106 score? <context>: CREATE TABLE table_name_1 (record VARCHAR, score VARCHAR) <answer>: SELECT record FROM table_name_1 WHERE score = "110-106"
54,425
<question>: What is the score at the forum location? <context>: CREATE TABLE table_name_23 (score VARCHAR, location VARCHAR) <answer>: SELECT score FROM table_name_23 WHERE location = "the forum"
54,426
<question>: What is Method, when Location is "Tokyo , Japan", and when Event is "Rings: Millennium Combine 2"? <context>: CREATE TABLE table_name_38 (method VARCHAR, location VARCHAR, event VARCHAR) <answer>: SELECT method FROM table_name_38 WHERE location = "tokyo , japan" AND event = "rings: millennium combine 2"
54,427
<question>: What is Method, when Opponent is "Chalid Arrab"? <context>: CREATE TABLE table_name_4 (method VARCHAR, opponent VARCHAR) <answer>: SELECT method FROM table_name_4 WHERE opponent = "chalid arrab"
54,428
<question>: What is the sum of Round, when Record is "19-25-5"? <context>: CREATE TABLE table_name_70 (round INTEGER, record VARCHAR) <answer>: SELECT SUM(round) FROM table_name_70 WHERE record = "19-25-5"
54,429
<question>: Which region has Stanford University as host? <context>: CREATE TABLE table_name_12 (region VARCHAR, host VARCHAR) <answer>: SELECT region FROM table_name_12 WHERE host = "stanford university"
54,430
<question>: Which state contains the University of Iowa in the mideast region? <context>: CREATE TABLE table_name_67 (state VARCHAR, region VARCHAR, host VARCHAR) <answer>: SELECT state FROM table_name_67 WHERE region = "mideast" AND host = "university of iowa"
54,431
<question>: Which state includes the city of Storrs? <context>: CREATE TABLE table_name_25 (state VARCHAR, city VARCHAR) <answer>: SELECT state FROM table_name_25 WHERE city = "storrs"
54,432
<question>: Which state includes the Harry A. Gampel Pavilion venue? <context>: CREATE TABLE table_name_10 (state VARCHAR, venue VARCHAR) <answer>: SELECT state FROM table_name_10 WHERE venue = "harry a. gampel pavilion"
54,433
<question>: Which city is in Georgia? <context>: CREATE TABLE table_name_55 (city VARCHAR, state VARCHAR) <answer>: SELECT city FROM table_name_55 WHERE state = "georgia"
54,434
<question>: What is the total number of rounds that had Jason Missiaen? <context>: CREATE TABLE table_name_75 (round VARCHAR, player VARCHAR) <answer>: SELECT COUNT(round) FROM table_name_75 WHERE player = "jason missiaen"
54,435
<question>: What player is from Russia? <context>: CREATE TABLE table_name_8 (player VARCHAR, nationality VARCHAR) <answer>: SELECT player FROM table_name_8 WHERE nationality = "russia"
54,436
<question>: What nationality is the pick from round 7? <context>: CREATE TABLE table_name_9 (nationality VARCHAR, round VARCHAR) <answer>: SELECT nationality FROM table_name_9 WHERE round = 7
54,437
<question>: what is the album when the year is later than 2008? <context>: CREATE TABLE table_name_77 (album VARCHAR, year INTEGER) <answer>: SELECT album FROM table_name_77 WHERE year > 2008
54,438
<question>: What is the Championship Game that has 4 Bids and a .600 Win %? <context>: CREATE TABLE table_name_40 (championship_game VARCHAR, _number_of_bids VARCHAR, win__percentage VARCHAR) <answer>: SELECT championship_game FROM table_name_40 WHERE _number_of_bids = 4 AND win__percentage = ".600"
54,439
<question>: What is the team 2 with cobreloa as team 1? <context>: CREATE TABLE table_name_2 (team_2 VARCHAR, team_1 VARCHAR) <answer>: SELECT team_2 FROM table_name_2 WHERE team_1 = "cobreloa"
54,440
<question>: How many picks had a round smaller than 6 and an overall bigger than 153? <context>: CREATE TABLE table_name_47 (pick INTEGER, round VARCHAR, overall VARCHAR) <answer>: SELECT SUM(pick) FROM table_name_47 WHERE round < 6 AND overall > 153
54,441
<question>: What was the attendance on 31 January 2009 when the opponent was Airdrie United? <context>: CREATE TABLE table_name_33 (attendance INTEGER, opponent VARCHAR, date VARCHAR) <answer>: SELECT AVG(attendance) FROM table_name_33 WHERE opponent = "airdrie united" AND date = "31 january 2009"
54,442
<question>: In what venue was the event held on 14 February 2009? <context>: CREATE TABLE table_name_95 (venue VARCHAR, date VARCHAR) <answer>: SELECT venue FROM table_name_95 WHERE date = "14 february 2009"
54,443
<question>: What is the average attendance for all events held at Palmerston Park venue? <context>: CREATE TABLE table_name_24 (attendance INTEGER, venue VARCHAR) <answer>: SELECT AVG(attendance) FROM table_name_24 WHERE venue = "palmerston park"
54,444
<question>: What is the total number of t (µm), when Technology is u c-si? <context>: CREATE TABLE table_name_67 (t__µm_ VARCHAR, technology VARCHAR) <answer>: SELECT COUNT(t__µm_) FROM table_name_67 WHERE technology = "u c-si"
54,445
<question>: What is the V OC (V), when t (µm) is greater than 5, and when I SC (A) is 0.8? <context>: CREATE TABLE table_name_46 (v_oc__v_ VARCHAR, t__µm_ VARCHAR, i_sc__a_ VARCHAR) <answer>: SELECT v_oc__v_ FROM table_name_46 WHERE t__µm_ > 5 AND i_sc__a_ = "0.8"
54,446
<question>: What is the sum of t (µm), when Technology is MJ? <context>: CREATE TABLE table_name_26 (t__µm_ INTEGER, technology VARCHAR) <answer>: SELECT SUM(t__µm_) FROM table_name_26 WHERE technology = "mj"
54,447
<question>: What is W/m², when η (%) is greater than 16.5, and when Technology is MJ? <context>: CREATE TABLE table_name_60 (w_m² VARCHAR, η___percentage_ VARCHAR, technology VARCHAR) <answer>: SELECT w_m² FROM table_name_60 WHERE η___percentage_ > 16.5 AND technology = "mj"
54,448
<question>: What type of Bridge is in Stanley? <context>: CREATE TABLE table_name_87 (type VARCHAR, location VARCHAR) <answer>: SELECT type FROM table_name_87 WHERE location = "stanley"
54,449
<question>: What type of bridge is Colton's Crossing Bridge? <context>: CREATE TABLE table_name_46 (type VARCHAR, name VARCHAR) <answer>: SELECT type FROM table_name_46 WHERE name = "colton's crossing bridge"
54,450
<question>: What bridge is a pratt pony through truss tyoe bridge? <context>: CREATE TABLE table_name_4 (name VARCHAR, type VARCHAR) <answer>: SELECT name FROM table_name_4 WHERE type = "pratt pony through truss"
54,451
<question>: What type of bridge is in Cooperstown? <context>: CREATE TABLE table_name_8 (type VARCHAR, location VARCHAR) <answer>: SELECT type FROM table_name_8 WHERE location = "cooperstown"
54,452
<question>: What bridge is in Mcville? <context>: CREATE TABLE table_name_69 (name VARCHAR, location VARCHAR) <answer>: SELECT name FROM table_name_69 WHERE location = "mcville"
54,453
<question>: Which tracking method supports MySQL databases and is named Open Web Analytics? <context>: CREATE TABLE table_name_62 (tracking_method VARCHAR, supported_databases VARCHAR, name VARCHAR) <answer>: SELECT tracking_method FROM table_name_62 WHERE supported_databases = "mysql" AND name = "open web analytics"
54,454
<question>: Which tracking method has a latest stable release of 2.23-05? <context>: CREATE TABLE table_name_14 (tracking_method VARCHAR, latest_stable_release VARCHAR) <answer>: SELECT tracking_method FROM table_name_14 WHERE latest_stable_release = "2.23-05"
54,455
<question>: What is the latest stable release date for Crawltrack? <context>: CREATE TABLE table_name_83 (latest_stable_release VARCHAR, name VARCHAR) <answer>: SELECT latest_stable_release FROM table_name_83 WHERE name = "crawltrack"
54,456
<question>: Which tracking method has a latest stable release of 6.0? <context>: CREATE TABLE table_name_23 (tracking_method VARCHAR, latest_stable_release VARCHAR) <answer>: SELECT tracking_method FROM table_name_23 WHERE latest_stable_release = "6.0"
54,457
<question>: What is the least passengers from the Dallas/Fort Worth International (DFW) airport? <context>: CREATE TABLE table_name_75 (passengers INTEGER, airport VARCHAR) <answer>: SELECT MIN(passengers) FROM table_name_75 WHERE airport = "dallas/fort worth international (dfw)"
54,458
<question>: What city is ranked greater than 6, and the airport is St. Petersburg/Clearwater (PIE) <context>: CREATE TABLE table_name_79 (city VARCHAR, rank VARCHAR, airport VARCHAR) <answer>: SELECT city FROM table_name_79 WHERE rank > 6 AND airport = "st. petersburg/clearwater (pie)"
54,459
<question>: What is the total rank of the airport that has 79,290 passengers? <context>: CREATE TABLE table_name_63 (rank VARCHAR, passengers VARCHAR) <answer>: SELECT COUNT(rank) FROM table_name_63 WHERE passengers = 79 OFFSET 290
54,460
<question>: Which Winner has a Country of norway, and a FIS Nordic World Ski Championships of 1924? <context>: CREATE TABLE table_name_97 (winner VARCHAR, country VARCHAR, fis_nordic_world_ski_championships VARCHAR) <answer>: SELECT winner FROM table_name_97 WHERE country = "norway" AND fis_nordic_world_ski_championships = "1924"
54,461
<question>: Which Country has a FIS Nordic World Ski Championships of 1948, 1950? <context>: CREATE TABLE table_name_96 (country VARCHAR, fis_nordic_world_ski_championships VARCHAR) <answer>: SELECT country FROM table_name_96 WHERE fis_nordic_world_ski_championships = "1948, 1950"
54,462
<question>: Which Holmenkollen has a Country of norway, and a Winner of tom sandberg? <context>: CREATE TABLE table_name_22 (holmenkollen VARCHAR, country VARCHAR, winner VARCHAR) <answer>: SELECT holmenkollen FROM table_name_22 WHERE country = "norway" AND winner = "tom sandberg"
54,463
<question>: Which FIS Nordic World Ski Championships has Winter Olympics of 1960? <context>: CREATE TABLE table_name_44 (fis_nordic_world_ski_championships VARCHAR, winter_olympics VARCHAR) <answer>: SELECT fis_nordic_world_ski_championships FROM table_name_44 WHERE winter_olympics = "1960"
54,464
<question>: Which Country has a Winter Olympics of 1948? <context>: CREATE TABLE table_name_28 (country VARCHAR, winter_olympics VARCHAR) <answer>: SELECT country FROM table_name_28 WHERE winter_olympics = "1948"
54,465
<question>: Which Winner has a Winter Olympics of 1968? <context>: CREATE TABLE table_name_31 (winner VARCHAR, winter_olympics VARCHAR) <answer>: SELECT winner FROM table_name_31 WHERE winter_olympics = "1968"
54,466
<question>: What was the result of the game when the attendance was 43,279? <context>: CREATE TABLE table_name_8 (result VARCHAR, attendance VARCHAR) <answer>: SELECT result FROM table_name_8 WHERE attendance = "43,279"
54,467
<question>: What is the average Attendance, when Date is 1 October 1998? <context>: CREATE TABLE table_name_28 (attendance INTEGER, date VARCHAR) <answer>: SELECT AVG(attendance) FROM table_name_28 WHERE date = "1 october 1998"
54,468
<question>: What is Opponent, when Date is 17 September 1998? <context>: CREATE TABLE table_name_76 (opponent VARCHAR, date VARCHAR) <answer>: SELECT opponent FROM table_name_76 WHERE date = "17 september 1998"
54,469
<question>: What is Opponent, when Date is 8 April 1999? <context>: CREATE TABLE table_name_18 (opponent VARCHAR, date VARCHAR) <answer>: SELECT opponent FROM table_name_18 WHERE date = "8 april 1999"
54,470
<question>: WHAT IS THE HIGHEST POINTS FOR LOS ANGELES? <context>: CREATE TABLE table_name_89 (high_points VARCHAR, opponent VARCHAR) <answer>: SELECT high_points FROM table_name_89 WHERE opponent = "los angeles"
54,471
<question>: What was the Score F-A when the result was D? <context>: CREATE TABLE table_name_39 (score_f_a VARCHAR, result VARCHAR) <answer>: SELECT score_f_a FROM table_name_39 WHERE result = "d"
54,472
<question>: On which date did they play Leicester City in Venue A? <context>: CREATE TABLE table_name_38 (date VARCHAR, venue VARCHAR, opponents VARCHAR) <answer>: SELECT date FROM table_name_38 WHERE venue = "a" AND opponents = "leicester city"
54,473
<question>: What was the result of the game played in Venue H? <context>: CREATE TABLE table_name_27 (result VARCHAR, venue VARCHAR) <answer>: SELECT result FROM table_name_27 WHERE venue = "h"
54,474
<question>: What was the result of the game played on 17 July 2008? <context>: CREATE TABLE table_name_42 (result VARCHAR, date VARCHAR) <answer>: SELECT result FROM table_name_42 WHERE date = "17 july 2008"
54,475
<question>: What Passenger has 16 Wins? <context>: CREATE TABLE table_name_94 (passenger VARCHAR, wins VARCHAR) <answer>: SELECT passenger FROM table_name_94 WHERE wins = "16"
54,476
<question>: Name the Time of broadcast has a Picture format of 4:3, and Hours of 20:30, and Days of the week of monday, wednesday, friday? <context>: CREATE TABLE table_name_23 (time_of_broadcast VARCHAR, days_of_the_week VARCHAR, picture_format VARCHAR, hours VARCHAR) <answer>: SELECT time_of_broadcast FROM table_name_23 WHERE picture_format = "4:3" AND hours = "20:30" AND days_of_the_week = "monday, wednesday, friday"
54,477
<question>: Which Days of the week has a Time of broadcast in january–february, june 2002? <context>: CREATE TABLE table_name_31 (days_of_the_week VARCHAR, time_of_broadcast VARCHAR) <answer>: SELECT days_of_the_week FROM table_name_31 WHERE time_of_broadcast = "january–february, june 2002"
54,478
<question>: Which Outcome has a Championship of us championships, and a Score in the final of 5–7, 6–1, 6–3, 6–3? <context>: CREATE TABLE table_name_61 (outcome VARCHAR, championship VARCHAR, score_in_the_final VARCHAR) <answer>: SELECT outcome FROM table_name_61 WHERE championship = "us championships" AND score_in_the_final = "5–7, 6–1, 6–3, 6–3"
54,479
<question>: Which Outcome has a Year larger than 1939, and an Opponent in the final of frank kovacs? <context>: CREATE TABLE table_name_44 (outcome VARCHAR, year VARCHAR, opponent_in_the_final VARCHAR) <answer>: SELECT outcome FROM table_name_44 WHERE year > 1939 AND opponent_in_the_final = "frank kovacs"
54,480
<question>: Which Surface has an Opponent in the final of don mcneill, and a Year of 1940? <context>: CREATE TABLE table_name_52 (surface VARCHAR, opponent_in_the_final VARCHAR, year VARCHAR) <answer>: SELECT surface FROM table_name_52 WHERE opponent_in_the_final = "don mcneill" AND year = 1940
54,481
<question>: How many years have an Opponent in the final of welby van horn? <context>: CREATE TABLE table_name_74 (year INTEGER, opponent_in_the_final VARCHAR) <answer>: SELECT SUM(year) FROM table_name_74 WHERE opponent_in_the_final = "welby van horn"
54,482
<question>: What is the score of player dick metz? <context>: CREATE TABLE table_name_74 (score VARCHAR, player VARCHAR) <answer>: SELECT score FROM table_name_74 WHERE player = "dick metz"
54,483
<question>: Which season had EV Bad Wörishofen in the West? <context>: CREATE TABLE table_name_60 (season VARCHAR, west VARCHAR) <answer>: SELECT season FROM table_name_60 WHERE west = "ev bad wörishofen"
54,484
<question>: Who was in the South in the 2004-05 season? <context>: CREATE TABLE table_name_92 (south VARCHAR, season VARCHAR) <answer>: SELECT south FROM table_name_92 WHERE season = "2004-05"
54,485
<question>: Who was in the South when EV Bad Wörishofen was in the West? <context>: CREATE TABLE table_name_10 (south VARCHAR, west VARCHAR) <answer>: SELECT south FROM table_name_10 WHERE west = "ev bad wörishofen"
54,486
<question>: Who was in the South when TSV Kottern was in the West and EHF Passau was in the East? <context>: CREATE TABLE table_name_40 (south VARCHAR, west VARCHAR, east VARCHAR) <answer>: SELECT south FROM table_name_40 WHERE west = "tsv kottern" AND east = "ehf passau"
54,487
<question>: Who was in the East when TUS Geretsried II was in the South? <context>: CREATE TABLE table_name_9 (east VARCHAR, south VARCHAR) <answer>: SELECT east FROM table_name_9 WHERE south = "tus geretsried ii"
54,488
<question>: Who was in the West when ESV Gebensbach was in the East? <context>: CREATE TABLE table_name_32 (west VARCHAR, east VARCHAR) <answer>: SELECT west FROM table_name_32 WHERE east = "esv gebensbach"
54,489
<question>: What is the average Gold, when Nation is Hungary, and when Bronze is greater than 1? <context>: CREATE TABLE table_name_2 (gold INTEGER, nation VARCHAR, bronze VARCHAR) <answer>: SELECT AVG(gold) FROM table_name_2 WHERE nation = "hungary" AND bronze > 1
54,490
<question>: What is the average Total, when Nation is Soviet Union, and when Gold is greater than 9? <context>: CREATE TABLE table_name_33 (total INTEGER, nation VARCHAR, gold VARCHAR) <answer>: SELECT AVG(total) FROM table_name_33 WHERE nation = "soviet union" AND gold > 9
54,491
<question>: What is the total number of Bronze, when Silver is greater than 0, when Gold is greater than 3, and when Rank is 1? <context>: CREATE TABLE table_name_75 (bronze VARCHAR, rank VARCHAR, silver VARCHAR, gold VARCHAR) <answer>: SELECT COUNT(bronze) FROM table_name_75 WHERE silver > 0 AND gold > 3 AND rank = "1"
54,492
<question>: What is the highest Bronze, when Total is less than 3, and when Silver is less than 0? <context>: CREATE TABLE table_name_86 (bronze INTEGER, total VARCHAR, silver VARCHAR) <answer>: SELECT MAX(bronze) FROM table_name_86 WHERE total < 3 AND silver < 0
54,493
<question>: What is the average Total, when Silver is greater than 4, and when Gold is greater than 16? <context>: CREATE TABLE table_name_2 (total INTEGER, silver VARCHAR, gold VARCHAR) <answer>: SELECT AVG(total) FROM table_name_2 WHERE silver > 4 AND gold > 16
54,494
<question>: What is the sum of Silver, when Total is less than 1? <context>: CREATE TABLE table_name_84 (silver INTEGER, total INTEGER) <answer>: SELECT SUM(silver) FROM table_name_84 WHERE total < 1
54,495
<question>: What is day 4 when day 2 is PAAQ? <context>: CREATE TABLE table_name_3 (day_4 VARCHAR, day_2 VARCHAR) <answer>: SELECT day_4 FROM table_name_3 WHERE day_2 = "paaq"
54,496
<question>: What is the other value associated with a Christianity value of 10.24%? <context>: CREATE TABLE table_name_21 (other VARCHAR, christianity VARCHAR) <answer>: SELECT other FROM table_name_21 WHERE christianity = "10.24%"
54,497
<question>: What is the Judaism percentage associated with Buddhism at 0.01% and Other at 0.13%? <context>: CREATE TABLE table_name_15 (judaism VARCHAR, other VARCHAR, buddhism VARCHAR) <answer>: SELECT judaism FROM table_name_15 WHERE other = "0.13%" AND buddhism = "0.01%"
54,498
<question>: What is the percentage of Atheism associated with an other percentage of 0.08%? <context>: CREATE TABLE table_name_90 (atheism VARCHAR, other VARCHAR) <answer>: SELECT atheism FROM table_name_90 WHERE other = "0.08%"
54,499
<question>: What is the percentage of Buddhists associated with a Christianity percentage of 52.32%? <context>: CREATE TABLE table_name_6 (buddhism VARCHAR, christianity VARCHAR) <answer>: SELECT buddhism FROM table_name_6 WHERE christianity = "52.32%"