Unnamed: 0
int64
0
60k
text
stringlengths
109
1.06k
55,300
<question>: Which 2007–08 season has a Club of genoa c.f.c.? <context>: CREATE TABLE table_name_49 (club VARCHAR) <answer>: SELECT 2007 AS _08_season FROM table_name_49 WHERE club = "genoa c.f.c."
55,301
<question>: Which City has a Stadium of stadio artemio franchi, florence? <context>: CREATE TABLE table_name_80 (city VARCHAR, stadium VARCHAR) <answer>: SELECT city FROM table_name_80 WHERE stadium = "stadio artemio franchi, florence"
55,302
<question>: What is the description when the reserve is Half Moon Caye? <context>: CREATE TABLE table_name_40 (description VARCHAR, reserve VARCHAR) <answer>: SELECT description FROM table_name_40 WHERE reserve = "half moon caye"
55,303
<question>: Which district has an IUCN of iii and was established in 1998? <context>: CREATE TABLE table_name_44 (district VARCHAR, iucn VARCHAR, est VARCHAR) <answer>: SELECT district FROM table_name_44 WHERE iucn = "iii" AND est = 1998
55,304
<question>: What is the IUNC of district of Cayo and reserve of Actun Tunichil Muknal? <context>: CREATE TABLE table_name_84 (iucn VARCHAR, district VARCHAR, reserve VARCHAR) <answer>: SELECT iucn FROM table_name_84 WHERE district = "cayo" AND reserve = "actun tunichil muknal"
55,305
<question>: What is the sum of value for average finish with poles less than 0? <context>: CREATE TABLE table_name_80 (avg_finish INTEGER, poles INTEGER) <answer>: SELECT SUM(avg_finish) FROM table_name_80 WHERE poles < 0
55,306
<question>: What is the average start with wins larger than 0 and 32nd position? <context>: CREATE TABLE table_name_34 (starts INTEGER, wins VARCHAR, position VARCHAR) <answer>: SELECT AVG(starts) FROM table_name_34 WHERE wins > 0 AND position = "32nd"
55,307
<question>: What is the specific impulse for the engine with a scenario of sr-71 at mach 3.2 (wet)? <context>: CREATE TABLE table_name_19 (specific_impulse__s_ VARCHAR, scenario VARCHAR) <answer>: SELECT specific_impulse__s_ FROM table_name_19 WHERE scenario = "sr-71 at mach 3.2 (wet)"
55,308
<question>: what is the average specific impulse for engines that have a SFC in lb/(lbf·h) of 7.95, and a Effective exhaust velocity (m/s) larger than 4,423 <context>: CREATE TABLE table_name_66 (specific_impulse__s_ INTEGER, sfc_in_lb__lbf·h_ VARCHAR, effective_exhaust_velocity__m_s_ VARCHAR) <answer>: SELECT AVG(specific_impulse__s_) FROM table_name_66 WHERE sfc_in_lb__lbf·h_ = 7.95 AND effective_exhaust_velocity__m_s_ > 4 OFFSET 423
55,309
<question>: The draft pick that was taken before round 4 went to what college? <context>: CREATE TABLE table_name_72 (college VARCHAR, round INTEGER) <answer>: SELECT college FROM table_name_72 WHERE round < 4
55,310
<question>: What player went to DePaul University? <context>: CREATE TABLE table_name_80 (player VARCHAR, college VARCHAR) <answer>: SELECT player FROM table_name_80 WHERE college = "depaul"
55,311
<question>: What is 1st Round, when Team 1 is Sporting Toulon Var (D2)? <context>: CREATE TABLE table_name_65 (team_1 VARCHAR) <answer>: SELECT 1 AS st_round FROM table_name_65 WHERE team_1 = "sporting toulon var (d2)"
55,312
<question>: What is Team 2, when Score is 2 - 1? <context>: CREATE TABLE table_name_86 (team_2 VARCHAR, score VARCHAR) <answer>: SELECT team_2 FROM table_name_86 WHERE score = "2 - 1"
55,313
<question>: What is Viewers, when Event is Johnson Vs. Moraga? <context>: CREATE TABLE table_name_1 (viewers VARCHAR, event VARCHAR) <answer>: SELECT viewers FROM table_name_1 WHERE event = "johnson vs. moraga"
55,314
<question>: What is Rating, when Event is Johnson Vs. Dodson? <context>: CREATE TABLE table_name_23 (rating VARCHAR, event VARCHAR) <answer>: SELECT rating FROM table_name_23 WHERE event = "johnson vs. dodson"
55,315
<question>: What is Event, when Viewers is 2.4 Million, and when Rating is 1.4? <context>: CREATE TABLE table_name_49 (event VARCHAR, viewers VARCHAR, rating VARCHAR) <answer>: SELECT event FROM table_name_49 WHERE viewers = "2.4 million" AND rating = "1.4"
55,316
<question>: What is Event, when Date is April 20, 2013? <context>: CREATE TABLE table_name_4 (event VARCHAR, date VARCHAR) <answer>: SELECT event FROM table_name_4 WHERE date = "april 20, 2013"
55,317
<question>: What is Date, when Rating 1.5, and when Event is Johnson Vs. Moraga? <context>: CREATE TABLE table_name_76 (date VARCHAR, rating VARCHAR, event VARCHAR) <answer>: SELECT date FROM table_name_76 WHERE rating = "1.5" AND event = "johnson vs. moraga"
55,318
<question>: What is Date, when Viewers is 4.4 million? <context>: CREATE TABLE table_name_92 (date VARCHAR, viewers VARCHAR) <answer>: SELECT date FROM table_name_92 WHERE viewers = "4.4 million"
55,319
<question>: What was Tiger Woods' score? <context>: CREATE TABLE table_name_57 (score VARCHAR, player VARCHAR) <answer>: SELECT score FROM table_name_57 WHERE player = "tiger woods"
55,320
<question>: How did Justin Leonard of the United States score? <context>: CREATE TABLE table_name_33 (score VARCHAR, country VARCHAR, player VARCHAR) <answer>: SELECT score FROM table_name_33 WHERE country = "united states" AND player = "justin leonard"
55,321
<question>: Which player is from England? <context>: CREATE TABLE table_name_16 (player VARCHAR, country VARCHAR) <answer>: SELECT player FROM table_name_16 WHERE country = "england"
55,322
<question>: Who scored 74-70-67=211 and placed t5? <context>: CREATE TABLE table_name_6 (player VARCHAR, place VARCHAR, score VARCHAR) <answer>: SELECT player FROM table_name_6 WHERE place = "t5" AND score = 74 - 70 - 67 = 211
55,323
<question>: Who is the player with a score less than 72 and a to par of +1? <context>: CREATE TABLE table_name_62 (player VARCHAR, score VARCHAR, to_par VARCHAR) <answer>: SELECT player FROM table_name_62 WHERE score < 72 AND to_par = "+1"
55,324
<question>: Who is the player with a to par of +1? <context>: CREATE TABLE table_name_71 (player VARCHAR, to_par VARCHAR) <answer>: SELECT player FROM table_name_71 WHERE to_par = "+1"
55,325
<question>: What is the to par of player john buczek, who has a t9 place and is from the United States? <context>: CREATE TABLE table_name_36 (to_par VARCHAR, player VARCHAR, place VARCHAR, country VARCHAR) <answer>: SELECT to_par FROM table_name_36 WHERE place = "t9" AND country = "united states" AND player = "john buczek"
55,326
<question>: What is the to par of player bobby nichols? <context>: CREATE TABLE table_name_94 (to_par VARCHAR, player VARCHAR) <answer>: SELECT to_par FROM table_name_94 WHERE player = "bobby nichols"
55,327
<question>: What was the date for XLLP 369? <context>: CREATE TABLE table_name_12 (date VARCHAR, catalog VARCHAR) <answer>: SELECT date FROM table_name_12 WHERE catalog = "xllp 369"
55,328
<question>: What was the label in the region of Canada? <context>: CREATE TABLE table_name_57 (label VARCHAR, region VARCHAR) <answer>: SELECT label FROM table_name_57 WHERE region = "canada"
55,329
<question>: What is the format in the region of Europe with an XLCD369 and a label of XL? <context>: CREATE TABLE table_name_36 (format VARCHAR, region VARCHAR, label VARCHAR, catalog VARCHAR) <answer>: SELECT format FROM table_name_36 WHERE label = "xl" AND catalog = "xlcd369" AND region = "europe"
55,330
<question>: What date was the United States the region? <context>: CREATE TABLE table_name_25 (date VARCHAR, region VARCHAR) <answer>: SELECT date FROM table_name_25 WHERE region = "united states"
55,331
<question>: What was the label in the region of Argentina and had a format of CD? <context>: CREATE TABLE table_name_82 (label VARCHAR, format VARCHAR, region VARCHAR) <answer>: SELECT label FROM table_name_82 WHERE format = "cd" AND region = "argentina"
55,332
<question>: What is the catalog with the region of the United States? <context>: CREATE TABLE table_name_98 (catalog VARCHAR, region VARCHAR) <answer>: SELECT catalog FROM table_name_98 WHERE region = "united states"
55,333
<question>: Can you tell me the Opponent that has the November larger than 26, and the Game larger than 18? <context>: CREATE TABLE table_name_51 (opponent VARCHAR, november VARCHAR, game VARCHAR) <answer>: SELECT opponent FROM table_name_51 WHERE november > 26 AND game > 18
55,334
<question>: Can you tell me the Record that has the Game of 19? <context>: CREATE TABLE table_name_72 (record VARCHAR, game VARCHAR) <answer>: SELECT record FROM table_name_72 WHERE game = 19
55,335
<question>: Which Date has a Rockets score of 94, and a Game of 66? <context>: CREATE TABLE table_name_21 (date VARCHAR, rockets_score VARCHAR, game VARCHAR) <answer>: SELECT date FROM table_name_21 WHERE rockets_score = 94 AND game = 66
55,336
<question>: Which Opponent has a Rockets score larger than 86, a Streak of won 1, and Opponents smaller than 101? <context>: CREATE TABLE table_name_17 (opponent VARCHAR, opponents VARCHAR, rockets_score VARCHAR, streak VARCHAR) <answer>: SELECT opponent FROM table_name_17 WHERE rockets_score > 86 AND streak = "won 1" AND opponents < 101
55,337
<question>: Which Opponent has a Rockets score of 107? <context>: CREATE TABLE table_name_25 (opponent VARCHAR, rockets_score VARCHAR) <answer>: SELECT opponent FROM table_name_25 WHERE rockets_score = 107
55,338
<question>: Which Opponent has a Date of march 16? <context>: CREATE TABLE table_name_42 (opponent VARCHAR, date VARCHAR) <answer>: SELECT opponent FROM table_name_42 WHERE date = "march 16"
55,339
<question>: When was the score l 111–122 (ot)? <context>: CREATE TABLE table_name_84 (date VARCHAR, score VARCHAR) <answer>: SELECT date FROM table_name_84 WHERE score = "l 111–122 (ot)"
55,340
<question>: What was the score on January 26? <context>: CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR) <answer>: SELECT score FROM table_name_79 WHERE date = "january 26"
55,341
<question>: What game was Minnesota the team? <context>: CREATE TABLE table_name_70 (game VARCHAR, team VARCHAR) <answer>: SELECT COUNT(game) FROM table_name_70 WHERE team = "minnesota"
55,342
<question>: What was the record of Game 43? <context>: CREATE TABLE table_name_68 (record VARCHAR, game VARCHAR) <answer>: SELECT record FROM table_name_68 WHERE game = 43
55,343
<question>: What's the record of the game that Leandro Barbosa (32) had the high points? <context>: CREATE TABLE table_name_12 (record VARCHAR, high_points VARCHAR) <answer>: SELECT record FROM table_name_12 WHERE high_points = "leandro barbosa (32)"
55,344
<question>: What is the score when the tie no is 29? <context>: CREATE TABLE table_name_65 (score VARCHAR, tie_no VARCHAR) <answer>: SELECT score FROM table_name_65 WHERE tie_no = "29"
55,345
<question>: What was the tie no when Watford was the away team? <context>: CREATE TABLE table_name_62 (tie_no VARCHAR, away_team VARCHAR) <answer>: SELECT tie_no FROM table_name_62 WHERE away_team = "watford"
55,346
<question>: What team was the home team when Luton Town was the home team? <context>: CREATE TABLE table_name_49 (home_team VARCHAR, away_team VARCHAR) <answer>: SELECT home_team FROM table_name_49 WHERE away_team = "luton town"
55,347
<question>: What team was the home team when the tie no was 27? <context>: CREATE TABLE table_name_23 (home_team VARCHAR, tie_no VARCHAR) <answer>: SELECT home_team FROM table_name_23 WHERE tie_no = "27"
55,348
<question>: Who played bass in 1994 for the Atlantic label? <context>: CREATE TABLE table_name_2 (bass VARCHAR, label VARCHAR, year VARCHAR) <answer>: SELECT bass FROM table_name_2 WHERE label = "atlantic" AND year = 1994
55,349
<question>: Who played drums for the Gray Race album? <context>: CREATE TABLE table_name_89 (drums VARCHAR, album VARCHAR) <answer>: SELECT drums FROM table_name_89 WHERE album = "the gray race"
55,350
<question>: Which album had Jay Bentley on bass and Bobby Schayer on drums? <context>: CREATE TABLE table_name_32 (album VARCHAR, bass VARCHAR, drums VARCHAR) <answer>: SELECT album FROM table_name_32 WHERE bass = "jay bentley" AND drums = "bobby schayer"
55,351
<question>: Who played the bass for the Against the Grain album after 1982? <context>: CREATE TABLE table_name_97 (bass VARCHAR, year VARCHAR, album VARCHAR) <answer>: SELECT bass FROM table_name_97 WHERE year > 1982 AND album = "against the grain"
55,352
<question>: What is the position when lost is less than 7? <context>: CREATE TABLE table_name_60 (position INTEGER, lost INTEGER) <answer>: SELECT AVG(position) FROM table_name_60 WHERE lost < 7
55,353
<question>: What is the largest drawn number when 14 is the position, and goals for is more than 66? <context>: CREATE TABLE table_name_17 (drawn INTEGER, position VARCHAR, goals_for VARCHAR) <answer>: SELECT MAX(drawn) FROM table_name_17 WHERE position = 14 AND goals_for > 66
55,354
<question>: What is the played number with points 1 is 80, and goals for is more than 77? <context>: CREATE TABLE table_name_57 (played VARCHAR, points_1 VARCHAR, goals_for VARCHAR) <answer>: SELECT COUNT(played) FROM table_name_57 WHERE points_1 = "80" AND goals_for > 77
55,355
<question>: What is the number of played when the position is less than 4, and the team is Witton Albion? <context>: CREATE TABLE table_name_42 (played VARCHAR, position VARCHAR, team VARCHAR) <answer>: SELECT COUNT(played) FROM table_name_42 WHERE position < 4 AND team = "witton albion"
55,356
<question>: What is the position when the points 1 is 61? <context>: CREATE TABLE table_name_40 (position INTEGER, points_1 VARCHAR) <answer>: SELECT SUM(position) FROM table_name_40 WHERE points_1 = "61"
55,357
<question>: Where is the locality with Ofsted less than 106478 for Meadowbank Primary and Nursery School? <context>: CREATE TABLE table_name_47 (locality VARCHAR, ofsted VARCHAR, school VARCHAR) <answer>: SELECT locality FROM table_name_47 WHERE ofsted < 106478 AND school = "meadowbank primary and nursery school"
55,358
<question>: What website has an Ofsted less than 106478 in Atherton? <context>: CREATE TABLE table_name_33 (website VARCHAR, ofsted VARCHAR, locality VARCHAR) <answer>: SELECT website FROM table_name_33 WHERE ofsted < 106478 AND locality = "atherton"
55,359
<question>: How many values for Ofsted occurr at Chowbent Primary School? <context>: CREATE TABLE table_name_1 (ofsted VARCHAR, school VARCHAR) <answer>: SELECT COUNT(ofsted) FROM table_name_1 WHERE school = "chowbent primary school"
55,360
<question>: Which League championship is the lowest one that has a Venue of penn state ice pavilion, and a Club of penn state nittany lions men's ice hockey? <context>: CREATE TABLE table_name_78 (league INTEGER, venue VARCHAR, club VARCHAR) <answer>: SELECT MIN(league) AS championships FROM table_name_78 WHERE venue = "penn state ice pavilion" AND club = "penn state nittany lions men's ice hockey"
55,361
<question>: Which Venue has a League of ncaa, and a Founded smaller than 1965, and a Club of penn state nittany lions men's ice hockey? <context>: CREATE TABLE table_name_24 (venue VARCHAR, club VARCHAR, league VARCHAR, founded VARCHAR) <answer>: SELECT venue FROM table_name_24 WHERE league = "ncaa" AND founded < 1965 AND club = "penn state nittany lions men's ice hockey"
55,362
<question>: What is the freestyle leg for the Netherlands? <context>: CREATE TABLE table_name_69 (freestyle_leg VARCHAR, country VARCHAR) <answer>: SELECT freestyle_leg FROM table_name_69 WHERE country = "netherlands"
55,363
<question>: In which state did Marquis Li rule? <context>: CREATE TABLE table_name_43 (state VARCHAR, name VARCHAR, title VARCHAR) <answer>: SELECT state FROM table_name_43 WHERE name = "li" AND title = "marquis"
55,364
<question>: What was the Royal House for the state of Song? <context>: CREATE TABLE table_name_54 (royal_house VARCHAR, state VARCHAR) <answer>: SELECT royal_house FROM table_name_54 WHERE state = "song"
55,365
<question>: What type of state was Chu? <context>: CREATE TABLE table_name_41 (type VARCHAR, state VARCHAR) <answer>: SELECT type FROM table_name_41 WHERE state = "chu"
55,366
<question>: What type of state was Lu, when Yi was the ruler from the royal house of Ji? <context>: CREATE TABLE table_name_39 (type VARCHAR, state VARCHAR, royal_house VARCHAR, name VARCHAR) <answer>: SELECT type FROM table_name_39 WHERE royal_house = "ji" AND name = "yi" AND state = "lu"
55,367
<question>: What is Score, when Competition is "Euro 2004 Qualifier"? <context>: CREATE TABLE table_name_73 (score VARCHAR, competition VARCHAR) <answer>: SELECT score FROM table_name_73 WHERE competition = "euro 2004 qualifier"
55,368
<question>: What is Competition, when Date is "28 March 2001"? <context>: CREATE TABLE table_name_24 (competition VARCHAR, date VARCHAR) <answer>: SELECT competition FROM table_name_24 WHERE date = "28 march 2001"
55,369
<question>: who is the opponent on 2004-06-26 with the result of loss? <context>: CREATE TABLE table_name_78 (opponent VARCHAR, date VARCHAR, result VARCHAR) <answer>: SELECT opponent FROM table_name_78 WHERE date = "2004-06-26" AND result = "loss"
55,370
<question>: what is the location when the opponent is aleksandr pitchkounov? <context>: CREATE TABLE table_name_54 (location VARCHAR, opponent VARCHAR) <answer>: SELECT location FROM table_name_54 WHERE opponent = "aleksandr pitchkounov"
55,371
<question>: what is the event when the location is saitama, japan? <context>: CREATE TABLE table_name_66 (event VARCHAR, location VARCHAR) <answer>: SELECT event FROM table_name_66 WHERE location = "saitama, japan"
55,372
<question>: what is the location when the event is k-1 world grand prix 2004 in saitama? <context>: CREATE TABLE table_name_19 (location VARCHAR, event VARCHAR) <answer>: SELECT location FROM table_name_19 WHERE event = "k-1 world grand prix 2004 in saitama"
55,373
<question>: what is the record when the result is win on 2004-06-26? <context>: CREATE TABLE table_name_96 (record VARCHAR, result VARCHAR, date VARCHAR) <answer>: SELECT record FROM table_name_96 WHERE result = "win" AND date = "2004-06-26"
55,374
<question>: what is the event when the result is loss and the record is 7-5? <context>: CREATE TABLE table_name_50 (event VARCHAR, result VARCHAR, record VARCHAR) <answer>: SELECT event FROM table_name_50 WHERE result = "loss" AND record = "7-5"
55,375
<question>: What is the date of the game with a result of W 13-10? <context>: CREATE TABLE table_name_53 (date VARCHAR, result VARCHAR) <answer>: SELECT date FROM table_name_53 WHERE result = "w 13-10"
55,376
<question>: What is the total number of Total(s), when Finish is "T21", and when To Par is greater than 23? <context>: CREATE TABLE table_name_11 (total VARCHAR, finish VARCHAR, to_par VARCHAR) <answer>: SELECT COUNT(total) FROM table_name_11 WHERE finish = "t21" AND to_par > 23
55,377
<question>: What is Finish, when Total is "306"? <context>: CREATE TABLE table_name_20 (finish VARCHAR, total VARCHAR) <answer>: SELECT finish FROM table_name_20 WHERE total = 306
55,378
<question>: What is the total number of To Par, when Player is "Julius Boros", and when Total is greater than 295? <context>: CREATE TABLE table_name_28 (to_par VARCHAR, player VARCHAR, total VARCHAR) <answer>: SELECT COUNT(to_par) FROM table_name_28 WHERE player = "julius boros" AND total > 295
55,379
<question>: What is the total number of To Par, when Total is "295"? <context>: CREATE TABLE table_name_38 (to_par VARCHAR, total VARCHAR) <answer>: SELECT COUNT(to_par) FROM table_name_38 WHERE total = 295
55,380
<question>: What is the lowest Total, when Year(s) Won is "1948 , 1950 , 1951 , 1953"? <context>: CREATE TABLE table_name_58 (total INTEGER, year_s__won VARCHAR) <answer>: SELECT MIN(total) FROM table_name_58 WHERE year_s__won = "1948 , 1950 , 1951 , 1953"
55,381
<question>: What is the sum of Year, when Role is "himself", and when Notes is "celebrity guest alongside yg family"? <context>: CREATE TABLE table_name_39 (year INTEGER, role VARCHAR, notes VARCHAR) <answer>: SELECT SUM(year) FROM table_name_39 WHERE role = "himself" AND notes = "celebrity guest alongside yg family"
55,382
<question>: What is the highest Year, when Notes is "Celebrity Guest Alongside YG Family"? <context>: CREATE TABLE table_name_15 (year INTEGER, notes VARCHAR) <answer>: SELECT MAX(year) FROM table_name_15 WHERE notes = "celebrity guest alongside yg family"
55,383
<question>: What is the Year, when Role is "himself", and when Title is "Epik High's Love And Delusion"? <context>: CREATE TABLE table_name_59 (year VARCHAR, role VARCHAR, title VARCHAR) <answer>: SELECT year FROM table_name_59 WHERE role = "himself" AND title = "epik high's love and delusion"
55,384
<question>: What is the sum of Year, when Title is "Mnet Director's Cut"? <context>: CREATE TABLE table_name_53 (year INTEGER, title VARCHAR) <answer>: SELECT SUM(year) FROM table_name_53 WHERE title = "mnet director's cut"
55,385
<question>: What is the Network, when Title is "Epik High's Love And Delusion"? <context>: CREATE TABLE table_name_86 (network VARCHAR, title VARCHAR) <answer>: SELECT network FROM table_name_86 WHERE title = "epik high's love and delusion"
55,386
<question>: How many were in attendance during week 12? <context>: CREATE TABLE table_name_78 (attendance VARCHAR, week VARCHAR) <answer>: SELECT attendance FROM table_name_78 WHERE week = 12
55,387
<question>: On what date was the Result l 38-14? <context>: CREATE TABLE table_name_46 (date VARCHAR, result VARCHAR) <answer>: SELECT date FROM table_name_46 WHERE result = "l 38-14"
55,388
<question>: On what date was the week less than 3 with a result of w 24-13? <context>: CREATE TABLE table_name_60 (date VARCHAR, week VARCHAR, result VARCHAR) <answer>: SELECT date FROM table_name_60 WHERE week < 3 AND result = "w 24-13"
55,389
<question>: what is the water park with the rank 20? <context>: CREATE TABLE table_name_72 (water_park VARCHAR, rank VARCHAR) <answer>: SELECT water_park FROM table_name_72 WHERE rank = 20
55,390
<question>: what is 2011 when the rank is less than 8 and the water park is ocean world? <context>: CREATE TABLE table_name_58 (rank VARCHAR, water_park VARCHAR) <answer>: SELECT SUM(2011) FROM table_name_58 WHERE rank < 8 AND water_park = "ocean world"
55,391
<question>: What percentage of Azad Kashmir is Hindu? <context>: CREATE TABLE table_name_74 (_percentage_hindu VARCHAR, area VARCHAR) <answer>: SELECT _percentage_hindu FROM table_name_74 WHERE area = "azad kashmir"
55,392
<question>: What area shows % Hindu of statistics from the bbc in depth report.? <context>: CREATE TABLE table_name_71 (area VARCHAR, _percentage_hindu VARCHAR) <answer>: SELECT area FROM table_name_71 WHERE _percentage_hindu = "statistics from the bbc in depth report."
55,393
<question>: What is the population when the % Muslim shows 30%? <context>: CREATE TABLE table_name_81 (population VARCHAR, _percentage_muslim VARCHAR) <answer>: SELECT population FROM table_name_81 WHERE _percentage_muslim = "30%"
55,394
<question>: What is the percentage of Buddhist when the Population is ~2.6 million (2.6million)? <context>: CREATE TABLE table_name_39 (_percentage_buddhist VARCHAR, population VARCHAR) <answer>: SELECT _percentage_buddhist FROM table_name_39 WHERE population = "~2.6 million (2.6million)"
55,395
<question>: What area has a % Other of –, and a % Muslim of 95%? <context>: CREATE TABLE table_name_83 (area VARCHAR, _percentage_other VARCHAR, _percentage_muslim VARCHAR) <answer>: SELECT area FROM table_name_83 WHERE _percentage_other = "–" AND _percentage_muslim = "95%"
55,396
<question>: What area has a percentage of other of 3%? <context>: CREATE TABLE table_name_13 (area VARCHAR, _percentage_other VARCHAR) <answer>: SELECT area FROM table_name_13 WHERE _percentage_other = "3%"
55,397
<question>: What Game had a Result of 125-123 (OT)? <context>: CREATE TABLE table_name_45 (game VARCHAR, result VARCHAR) <answer>: SELECT game FROM table_name_45 WHERE result = "125-123 (ot)"
55,398
<question>: What is the Date of Game 5 with Road Team St. Louis? <context>: CREATE TABLE table_name_10 (date VARCHAR, road_team VARCHAR, game VARCHAR) <answer>: SELECT date FROM table_name_10 WHERE road_team = "st. louis" AND game = "game 5"
55,399
<question>: What is the Road Team of Game 3? <context>: CREATE TABLE table_name_64 (road_team VARCHAR, game VARCHAR) <answer>: SELECT road_team FROM table_name_64 WHERE game = "game 3"