Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
45,400 | <question>: What is the Launched which is on 3 may 2001? <context>: CREATE TABLE table_name_31 (launched VARCHAR, date_of_commission VARCHAR) | SELECT launched FROM table_name_31 WHERE date_of_commission = "3 may 2001" |
45,401 | <question>: What is the Homeport that has a Laid down on 14 december 1985? <context>: CREATE TABLE table_name_73 (homeport__as_of_july_2013_ VARCHAR, laid_down VARCHAR) | SELECT homeport__as_of_july_2013_ FROM table_name_73 WHERE laid_down = "14 december 1985" |
45,402 | <question>: What kind of Launched has a Homeport (as of July 2013) of sold to chile, and a Pennant number of f80? <context>: CREATE TABLE table_name_65 (launched VARCHAR, homeport__as_of_july_2013_ VARCHAR, pennant_number VARCHAR) | SELECT launched FROM table_name_65 WHERE homeport__as_of_july_2013_ = "sold to chile" AND pennant_number = "f80" |
45,403 | <question>: Which player had more than 25 events? <context>: CREATE TABLE table_name_60 (player VARCHAR, events INTEGER) | SELECT player FROM table_name_60 WHERE events > 25 |
45,404 | <question>: What amount of prize money was there when the rank was less than 7, there were more than 6 events, and the country was Fiji? <context>: CREATE TABLE table_name_94 (prize_money___$__ VARCHAR, country VARCHAR, rank VARCHAR, events VARCHAR) | SELECT prize_money___$__ FROM table_name_94 WHERE rank < 7 AND events > 6 AND country = "fiji" |
45,405 | <question>: What is the least amount of prize money when there are 21 events? <context>: CREATE TABLE table_name_96 (prize_money___ INTEGER, events VARCHAR) | SELECT MIN(prize_money___) AS $__ FROM table_name_96 WHERE events = 21 |
45,406 | <question>: Which series episode has a netflix figure of s04e21? <context>: CREATE TABLE table_name_45 (series_ep VARCHAR, netflix VARCHAR) | SELECT series_ep FROM table_name_45 WHERE netflix = "s04e21" |
45,407 | <question>: Which segment a's netflix figure is s04e24? <context>: CREATE TABLE table_name_77 (segment_a VARCHAR, netflix VARCHAR) | SELECT segment_a FROM table_name_77 WHERE netflix = "s04e24" |
45,408 | <question>: How many episodes have a segment d that is goalie masks (part 2)? <context>: CREATE TABLE table_name_53 (episode VARCHAR, segment_d VARCHAR) | SELECT COUNT(episode) FROM table_name_53 WHERE segment_d = "goalie masks (part 2)" |
45,409 | <question>: Which episode's segment b is s hacksaw? <context>: CREATE TABLE table_name_67 (episode VARCHAR, segment_b VARCHAR) | SELECT episode FROM table_name_67 WHERE segment_b = "s hacksaw" |
45,410 | <question>: When was Lachlan Dale born? <context>: CREATE TABLE table_name_47 (dob VARCHAR, surname VARCHAR, first VARCHAR) | SELECT dob FROM table_name_47 WHERE surname = "dale" AND first = "lachlan" |
45,411 | <question>: Which batter played P and was born 18 April 1984? <context>: CREATE TABLE table_name_12 (bats VARCHAR, position VARCHAR, dob VARCHAR) | SELECT bats FROM table_name_12 WHERE position = "p" AND dob = "18 april 1984" |
45,412 | <question>: Which Surname has Bats of r, and a Position of p, and a DOB of 20 may 1989? <context>: CREATE TABLE table_name_73 (surname VARCHAR, dob VARCHAR, bats VARCHAR, position VARCHAR) | SELECT surname FROM table_name_73 WHERE bats = "r" AND position = "p" AND dob = "20 may 1989" |
45,413 | <question>: Which Position has Throws of r, and a DOB of 12 february 1983? <context>: CREATE TABLE table_name_59 (position VARCHAR, throws VARCHAR, dob VARCHAR) | SELECT position FROM table_name_59 WHERE throws = "r" AND dob = "12 february 1983" |
45,414 | <question>: How many throws did Needle have? <context>: CREATE TABLE table_name_10 (throws VARCHAR, surname VARCHAR) | SELECT throws FROM table_name_10 WHERE surname = "needle" |
45,415 | <question>: Which DOB has Bats of s, and a Position of inf? <context>: CREATE TABLE table_name_8 (dob VARCHAR, bats VARCHAR, position VARCHAR) | SELECT dob FROM table_name_8 WHERE bats = "s" AND position = "inf" |
45,416 | <question>: What is the Lap Length of the race with a Grand Prix Fia Category? <context>: CREATE TABLE table_name_50 (lap_length VARCHAR, category VARCHAR) | SELECT lap_length FROM table_name_50 WHERE category = "grand prix fia" |
45,417 | <question>: What is the Race on July 30, 1950 with a Formula 2 Fia, non-championship? <context>: CREATE TABLE table_name_47 (race VARCHAR, category VARCHAR, date VARCHAR) | SELECT race FROM table_name_47 WHERE category = "formula 2 fia, non-championship" AND date = "july 30, 1950" |
45,418 | <question>: What was his record when the match went for 3:05? <context>: CREATE TABLE table_name_62 (record VARCHAR, time VARCHAR) | SELECT record FROM table_name_62 WHERE time = "3:05" |
45,419 | <question>: How many rounds did the match go for the Bellator 72 event? <context>: CREATE TABLE table_name_62 (round INTEGER, event VARCHAR) | SELECT SUM(round) FROM table_name_62 WHERE event = "bellator 72" |
45,420 | <question>: What is the sum of the live viewers for episodes with share over 5? <context>: CREATE TABLE table_name_77 (live VARCHAR, share INTEGER, viewers_ INTEGER) | SELECT SUM(viewers_)[live] AS __m_ FROM table_name_77 WHERE share > 5 |
45,421 | <question>: Which Callsign includes a frequency under 1210, Newsradio 740 KTRH, and webcasts with listen live? <context>: CREATE TABLE table_name_97 (callsign VARCHAR, brand VARCHAR, webcast VARCHAR, frequency VARCHAR) | SELECT callsign FROM table_name_97 WHERE webcast = "listen live" AND frequency < 1210 AND brand = "newsradio 740 ktrh" |
45,422 | <question>: Which website includes a webcast of listen live, a frequency under 1050, and is licensed in the city of Monterrey? <context>: CREATE TABLE table_name_64 (website VARCHAR, frequency VARCHAR, city_of_license VARCHAR, webcast VARCHAR) | SELECT website FROM table_name_64 WHERE city_of_license = "monterrey" AND webcast = "listen live" AND frequency < 1050 |
45,423 | <question>: The KTRH.com website includes which type of webcast? <context>: CREATE TABLE table_name_54 (webcast VARCHAR, website VARCHAR) | SELECT webcast FROM table_name_54 WHERE website = "ktrh.com" |
45,424 | <question>: Which website includes a webcast of listen live, a frequency under 680, and was licensed in the city of San Antonio. <context>: CREATE TABLE table_name_53 (website VARCHAR, frequency VARCHAR, city_of_license VARCHAR, webcast VARCHAR) | SELECT website FROM table_name_53 WHERE city_of_license = "san antonio" AND webcast = "listen live" AND frequency = 680 |
45,425 | <question>: Which long range AM station has the lowest frequency and includes a webcast of listen live, was licensed in the city of Monterrey, and uses the Callsign of xet? <context>: CREATE TABLE table_name_2 (frequency INTEGER, callsign VARCHAR, webcast VARCHAR, city_of_license VARCHAR) | SELECT MIN(frequency) FROM table_name_2 WHERE webcast = "listen live" AND city_of_license = "monterrey" AND callsign = "xet" |
45,426 | <question>: Which Games is the highest one that has a Drawn smaller than 0? <context>: CREATE TABLE table_name_26 (games INTEGER, drawn INTEGER) | SELECT MAX(games) FROM table_name_26 WHERE drawn < 0 |
45,427 | <question>: What is the score for game 6? <context>: CREATE TABLE table_name_11 (score VARCHAR, game VARCHAR) | SELECT score FROM table_name_11 WHERE game = 6 |
45,428 | <question>: Which Capacity has a Location of mogilev? <context>: CREATE TABLE table_name_38 (capacity INTEGER, location VARCHAR) | SELECT SUM(capacity) FROM table_name_38 WHERE location = "mogilev" |
45,429 | <question>: What was the District of California 2 result? <context>: CREATE TABLE table_name_93 (result VARCHAR, district VARCHAR) | SELECT result FROM table_name_93 WHERE district = "california 2" |
45,430 | <question>: What was the district Incumbent Julius Kahn was in that was smaller than 1906? <context>: CREATE TABLE table_name_74 (district VARCHAR, first_elected VARCHAR, incumbent VARCHAR) | SELECT district FROM table_name_74 WHERE first_elected < 1906 AND incumbent = "julius kahn" |
45,431 | <question>: What was the lowest re-elected result for Sylvester C. Smith? <context>: CREATE TABLE table_name_47 (first_elected INTEGER, result VARCHAR, incumbent VARCHAR) | SELECT MIN(first_elected) FROM table_name_47 WHERE result = "re-elected" AND incumbent = "sylvester c. smith" |
45,432 | <question>: What was the result for Julius Kahn's first election of 1898? <context>: CREATE TABLE table_name_6 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR) | SELECT result FROM table_name_6 WHERE first_elected = 1898 AND incumbent = "julius kahn" |
45,433 | <question>: Which party had a result of retired democratic hold and a first elected earlier than 1884 with an incumbent of samuel dibble? <context>: CREATE TABLE table_name_32 (party VARCHAR, incumbent VARCHAR, result VARCHAR, first_elected VARCHAR) | SELECT party FROM table_name_32 WHERE result = "retired democratic hold" AND first_elected < 1884 AND incumbent = "samuel dibble" |
45,434 | <question>: Which district had a first elected in 1882 with a result of re-elected? <context>: CREATE TABLE table_name_7 (district VARCHAR, first_elected VARCHAR, result VARCHAR) | SELECT district FROM table_name_7 WHERE first_elected = 1882 AND result = "re-elected" |
45,435 | <question>: Which Average is the lowest one that has a Total smaller than 134, and a Number of dances smaller than 3, and a Rank by average smaller than 12? <context>: CREATE TABLE table_name_38 (average INTEGER, rank_by_average VARCHAR, total VARCHAR, number_of_dances VARCHAR) | SELECT MIN(average) FROM table_name_38 WHERE total < 134 AND number_of_dances < 3 AND rank_by_average < 12 |
45,436 | <question>: Which Couple has a Rank by average larger than 3, and an Average larger than 16.5, and a Total smaller than 195, and a Number of dances larger than 3? <context>: CREATE TABLE table_name_20 (couple VARCHAR, number_of_dances VARCHAR, total VARCHAR, rank_by_average VARCHAR, average VARCHAR) | SELECT couple FROM table_name_20 WHERE rank_by_average > 3 AND average > 16.5 AND total < 195 AND number_of_dances > 3 |
45,437 | <question>: Which Rank by average is the lowest one that has a Total of 425, and a Place larger than 1? <context>: CREATE TABLE table_name_54 (rank_by_average INTEGER, total VARCHAR, place VARCHAR) | SELECT MIN(rank_by_average) FROM table_name_54 WHERE total = 425 AND place > 1 |
45,438 | <question>: What nation are carolina hermann / daniel hermann from? <context>: CREATE TABLE table_name_64 (nation VARCHAR, name VARCHAR) | SELECT nation FROM table_name_64 WHERE name = "carolina hermann / daniel hermann" |
45,439 | <question>: What is the rank associated with 141.48 points? <context>: CREATE TABLE table_name_71 (rank VARCHAR, points VARCHAR) | SELECT rank FROM table_name_71 WHERE points = 141.48 |
45,440 | <question>: What competitors are scored 124.51 points? <context>: CREATE TABLE table_name_88 (name VARCHAR, points VARCHAR) | SELECT name FROM table_name_88 WHERE points = 124.51 |
45,441 | <question>: At what percent was Pat Robertson when George H.W. Bush had 76%? <context>: CREATE TABLE table_name_64 (pat_robertson VARCHAR, george_hw_bush VARCHAR) | SELECT pat_robertson FROM table_name_64 WHERE george_hw_bush = "76%" |
45,442 | <question>: When George H.W. Bush had 81%, and Pat Robertson had 9%, what did Bob Dole have? <context>: CREATE TABLE table_name_67 (bob_dole VARCHAR, george_hw_bush VARCHAR, pat_robertson VARCHAR) | SELECT bob_dole FROM table_name_67 WHERE george_hw_bush = "81%" AND pat_robertson = "9%" |
45,443 | <question>: When Pat Robertson was at 16%, what did Pete du Pont have? <context>: CREATE TABLE table_name_13 (pete_du_pont VARCHAR, pat_robertson VARCHAR) | SELECT pete_du_pont FROM table_name_13 WHERE pat_robertson = "16%" |
45,444 | <question>: When Bob Dole had 26%, and George H.W. Bush had 47%, what did Pat Robertson have? <context>: CREATE TABLE table_name_12 (pat_robertson VARCHAR, bob_dole VARCHAR, george_hw_bush VARCHAR) | SELECT pat_robertson FROM table_name_12 WHERE bob_dole = "26%" AND george_hw_bush = "47%" |
45,445 | <question>: When Bob Dole had 26%, and Pete du Pont had 0%, what did Pat Robertson have? <context>: CREATE TABLE table_name_43 (pat_robertson VARCHAR, bob_dole VARCHAR, pete_du_pont VARCHAR) | SELECT pat_robertson FROM table_name_43 WHERE bob_dole = "26%" AND pete_du_pont = "0%" |
45,446 | <question>: When Pat Robertson had 19%, and Bob Dole had 26%, what did George H.W. Bush have? <context>: CREATE TABLE table_name_43 (george_hw_bush VARCHAR, pat_robertson VARCHAR, bob_dole VARCHAR) | SELECT george_hw_bush FROM table_name_43 WHERE pat_robertson = "19%" AND bob_dole = "26%" |
45,447 | <question>: Date of october 10, 1965 had what lowest attendance? <context>: CREATE TABLE table_name_59 (attendance INTEGER, date VARCHAR) | SELECT MIN(attendance) FROM table_name_59 WHERE date = "october 10, 1965" |
45,448 | <question>: Opponent of chicago bears involved what date? <context>: CREATE TABLE table_name_95 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_95 WHERE opponent = "chicago bears" |
45,449 | <question>: Performer 2 of compilation 2 is what performer 1? <context>: CREATE TABLE table_name_91 (performer_1 VARCHAR, performer_2 VARCHAR) | SELECT performer_1 FROM table_name_91 WHERE performer_2 = "compilation 2" |
45,450 | <question>: Performer 1 of greg proops, and a Date of 25 august 1995 is what performer 4? <context>: CREATE TABLE table_name_76 (performer_4 VARCHAR, performer_1 VARCHAR, date VARCHAR) | SELECT performer_4 FROM table_name_76 WHERE performer_1 = "greg proops" AND date = "25 august 1995" |
45,451 | <question>: Performer 1 of greg proops, and a Performer 3 of ryan stiles, and a Date of 25 august 1995 is which average episode? <context>: CREATE TABLE table_name_74 (episode INTEGER, date VARCHAR, performer_1 VARCHAR, performer_3 VARCHAR) | SELECT AVG(episode) FROM table_name_74 WHERE performer_1 = "greg proops" AND performer_3 = "ryan stiles" AND date = "25 august 1995" |
45,452 | <question>: Performer 1 of Stephen Frost, and a Performer 2 of Josie Lawrence, and a Date of 15 September 1995 is what performer 3? <context>: CREATE TABLE table_name_79 (performer_3 VARCHAR, date VARCHAR, performer_1 VARCHAR, performer_2 VARCHAR) | SELECT performer_3 FROM table_name_79 WHERE performer_1 = "stephen frost" AND performer_2 = "josie lawrence" AND date = "15 september 1995" |
45,453 | <question>: WHich Mountains classification has an Asian team classification of seoul cycling team, and a Winner of alexandre usov? <context>: CREATE TABLE table_name_99 (mountains_classification VARCHAR, asian_team_classification VARCHAR, winner VARCHAR) | SELECT mountains_classification FROM table_name_99 WHERE asian_team_classification = "seoul cycling team" AND winner = "alexandre usov" |
45,454 | <question>: WHo is the Asian rider classification that has ruslan ivanov on the Stage of 9? <context>: CREATE TABLE table_name_43 (asian_rider_classification VARCHAR, general_classification VARCHAR, stage VARCHAR) | SELECT asian_rider_classification FROM table_name_43 WHERE general_classification = "ruslan ivanov" AND stage = "9" |
45,455 | <question>: WHich General classification has an Asian rider classification of shinichi fukushima, and a Winner of jeremy hunt? <context>: CREATE TABLE table_name_1 (general_classification VARCHAR, asian_rider_classification VARCHAR, winner VARCHAR) | SELECT general_classification FROM table_name_1 WHERE asian_rider_classification = "shinichi fukushima" AND winner = "jeremy hunt" |
45,456 | <question>: Which Stage has a Mountains classification of filippo savini? <context>: CREATE TABLE table_name_79 (stage VARCHAR, mountains_classification VARCHAR) | SELECT stage FROM table_name_79 WHERE mountains_classification = "filippo savini" |
45,457 | <question>: Which Stage has a Winner of jeremy hunt? <context>: CREATE TABLE table_name_21 (stage VARCHAR, winner VARCHAR) | SELECT stage FROM table_name_21 WHERE winner = "jeremy hunt" |
45,458 | <question>: Which winning team has Iowa city as the site, and december 3, 2006 as the date? <context>: CREATE TABLE table_name_42 (winning_team VARCHAR, site VARCHAR, date VARCHAR) | SELECT winning_team FROM table_name_42 WHERE site = "iowa city" AND date = "december 3, 2006" |
45,459 | <question>: What site has november 30, 2006 as the date? <context>: CREATE TABLE table_name_25 (site VARCHAR, date VARCHAR) | SELECT site FROM table_name_25 WHERE date = "november 30, 2006" |
45,460 | <question>: What winning team has volleyball as the sport? <context>: CREATE TABLE table_name_91 (winning_team VARCHAR, sport VARCHAR) | SELECT winning_team FROM table_name_91 WHERE sport = "volleyball" |
45,461 | <question>: What is the total number in January when the St. Louis Blues had a game smaller than 42? <context>: CREATE TABLE table_name_83 (january VARCHAR, opponent VARCHAR, game VARCHAR) | SELECT COUNT(january) FROM table_name_83 WHERE opponent = "st. louis blues" AND game < 42 |
45,462 | <question>: What is the January sum with the record of 17-20-2 with a game smaller than 39? <context>: CREATE TABLE table_name_70 (january INTEGER, record VARCHAR, game VARCHAR) | SELECT SUM(january) FROM table_name_70 WHERE record = "17-20-2" AND game < 39 |
45,463 | <question>: What was the record when the New York Knicks played at the Boston Garden? <context>: CREATE TABLE table_name_51 (record VARCHAR, location VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_51 WHERE location = "boston garden" AND opponent = "new york knicks" |
45,464 | <question>: When the record was 7-2, what was the score for the game? <context>: CREATE TABLE table_name_94 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_94 WHERE record = "7-2" |
45,465 | <question>: On what date was the record 4-2? <context>: CREATE TABLE table_name_66 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_66 WHERE record = "4-2" |
45,466 | <question>: Which Females Rank is the highest one that has Females (%) larger than 53, and an HIV awareness (males%) smaller than 89, and a State of odisha? <context>: CREATE TABLE table_name_2 (females_rank INTEGER, state VARCHAR, females___percentage_ VARCHAR, hiv_awareness__males_percentage_ VARCHAR) | SELECT MAX(females_rank) FROM table_name_2 WHERE females___percentage_ > 53 AND hiv_awareness__males_percentage_ < 89 AND state = "odisha" |
45,467 | <question>: How many Females (%) have Females Rank smaller than 21, and a State of kerala, and Males Rank larger than 1? <context>: CREATE TABLE table_name_1 (females___percentage_ VARCHAR, males_rank VARCHAR, females_rank VARCHAR, state VARCHAR) | SELECT COUNT(females___percentage_) FROM table_name_1 WHERE females_rank < 21 AND state = "kerala" AND males_rank > 1 |
45,468 | <question>: How many Females (%) have a State of karnataka, and Males Rank larger than 16? <context>: CREATE TABLE table_name_45 (females___percentage_ VARCHAR, state VARCHAR, males_rank VARCHAR) | SELECT COUNT(females___percentage_) FROM table_name_45 WHERE state = "karnataka" AND males_rank > 16 |
45,469 | <question>: Which Males Rank is the highest one that has Females (%) smaller than 40, and Females Rank smaller than 22? <context>: CREATE TABLE table_name_93 (males_rank INTEGER, females___percentage_ VARCHAR, females_rank VARCHAR) | SELECT MAX(males_rank) FROM table_name_93 WHERE females___percentage_ < 40 AND females_rank < 22 |
45,470 | <question>: Which Females (%) has an HIV awareness (males%) larger than 92, and Females Rank larger than 2, and Males Rank smaller than 3? <context>: CREATE TABLE table_name_71 (females___percentage_ INTEGER, males_rank VARCHAR, hiv_awareness__males_percentage_ VARCHAR, females_rank VARCHAR) | SELECT SUM(females___percentage_) FROM table_name_71 WHERE hiv_awareness__males_percentage_ > 92 AND females_rank > 2 AND males_rank < 3 |
45,471 | <question>: League Cup smaller than 0 is what sum of the total? <context>: CREATE TABLE table_name_31 (total INTEGER, league_cup INTEGER) | SELECT SUM(total) FROM table_name_31 WHERE league_cup < 0 |
45,472 | <question>: Championship larger than 3, and a FA Cup smaller than 3, and a Total smaller than 6 involves what highest league cup? <context>: CREATE TABLE table_name_27 (league_cup INTEGER, total VARCHAR, championship VARCHAR, fa_cup VARCHAR) | SELECT MAX(league_cup) FROM table_name_27 WHERE championship > 3 AND fa_cup < 3 AND total < 6 |
45,473 | <question>: Which Opponent has a Surface of hard on 28 august 1993? <context>: CREATE TABLE table_name_46 (opponent VARCHAR, surface VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_46 WHERE surface = "hard" AND date = "28 august 1993" |
45,474 | <question>: WHICH Outcome IS ON 18 july 1993? <context>: CREATE TABLE table_name_70 (outcome VARCHAR, date VARCHAR) | SELECT outcome FROM table_name_70 WHERE date = "18 july 1993" |
45,475 | <question>: WHICH Outcome has aN Opponent of pascale paradis-mangon? <context>: CREATE TABLE table_name_68 (outcome VARCHAR, opponent VARCHAR) | SELECT outcome FROM table_name_68 WHERE opponent = "pascale paradis-mangon" |
45,476 | <question>: Which Score has aN Outcome of winner on 4 november 1990? <context>: CREATE TABLE table_name_66 (score VARCHAR, outcome VARCHAR, date VARCHAR) | SELECT score FROM table_name_66 WHERE outcome = "winner" AND date = "4 november 1990" |
45,477 | <question>: Which Tournament has an Opponent of susan sloane? <context>: CREATE TABLE table_name_18 (tournament VARCHAR, opponent VARCHAR) | SELECT tournament FROM table_name_18 WHERE opponent = "susan sloane" |
45,478 | <question>: Which Tournament has an Opponent of meike babel? <context>: CREATE TABLE table_name_92 (tournament VARCHAR, opponent VARCHAR) | SELECT tournament FROM table_name_92 WHERE opponent = "meike babel" |
45,479 | <question>: Which Game has a November of 29? <context>: CREATE TABLE table_name_63 (game INTEGER, november VARCHAR) | SELECT SUM(game) FROM table_name_63 WHERE november = 29 |
45,480 | <question>: Which Points have a Record of 12β2β4β1, and a November larger than 22? <context>: CREATE TABLE table_name_40 (points INTEGER, record VARCHAR, november VARCHAR) | SELECT AVG(points) FROM table_name_40 WHERE record = "12β2β4β1" AND november > 22 |
45,481 | <question>: Which Record has a Game of 19? <context>: CREATE TABLE table_name_78 (record VARCHAR, game VARCHAR) | SELECT record FROM table_name_78 WHERE game = 19 |
45,482 | <question>: How many Novembers have a Game larger than 14, and an Opponent of minnesota wild? <context>: CREATE TABLE table_name_50 (november VARCHAR, game VARCHAR, opponent VARCHAR) | SELECT COUNT(november) FROM table_name_50 WHERE game > 14 AND opponent = "minnesota wild" |
45,483 | <question>: Which November is the lowest one that has a Record of 12β2β4β1? <context>: CREATE TABLE table_name_56 (november INTEGER, record VARCHAR) | SELECT MIN(november) FROM table_name_56 WHERE record = "12β2β4β1" |
45,484 | <question>: What day has a record of 25β30β13 and less than 63 points? <context>: CREATE TABLE table_name_70 (march INTEGER, record VARCHAR, points VARCHAR) | SELECT AVG(march) FROM table_name_70 WHERE record = "25β30β13" AND points < 63 |
45,485 | <question>: Which opponent has 63 points? <context>: CREATE TABLE table_name_98 (opponent VARCHAR, points VARCHAR) | SELECT opponent FROM table_name_98 WHERE points = 63 |
45,486 | <question>: Which Alpha contains ia64 with discontinued 3.5-3.8 4.1-4.7? <context>: CREATE TABLE table_name_34 (alpha VARCHAR, ia64 VARCHAR) | SELECT alpha FROM table_name_34 WHERE ia64 = "discontinued 3.5-3.8 4.1-4.7" |
45,487 | <question>: Which s390x contains a yes ia64 and a no for alpha? <context>: CREATE TABLE table_name_21 (s390x VARCHAR, ia64 VARCHAR, alpha VARCHAR) | SELECT s390x FROM table_name_21 WHERE ia64 = "yes" AND alpha = "no" |
45,488 | <question>: Which hppa contains a ppc64 of yes 3+, no for mips and no for alpha? <context>: CREATE TABLE table_name_72 (hppa VARCHAR, ppc64 VARCHAR, mips VARCHAR, alpha VARCHAR) | SELECT hppa FROM table_name_72 WHERE mips = "no" AND alpha = "no" AND ppc64 = "yes 3+" |
45,489 | <question>: Which 1991 has an A 1993 ? <context>: CREATE TABLE table_name_77 (Id VARCHAR) | SELECT 1991 FROM table_name_77 WHERE 1993 = "a" |
45,490 | <question>: Which 992 has a 1β2 of 1989 ? <context>: CREATE TABLE table_name_13 (Id VARCHAR) | SELECT 1992 FROM table_name_13 WHERE 1989 = "1β2" |
45,491 | <question>: WHICH 1990 has a 1993 of 1r? <context>: CREATE TABLE table_name_3 (Id VARCHAR) | SELECT 1990 FROM table_name_3 WHERE 1993 = "1r" |
45,492 | <question>: Which 1994 has a 1998 of 0β1? <context>: CREATE TABLE table_name_35 (Id VARCHAR) | SELECT 1994 FROM table_name_35 WHERE 1998 = "0β1" |
45,493 | <question>: Which 1995 has a 1993 of 3r? <context>: CREATE TABLE table_name_86 (Id VARCHAR) | SELECT 1995 FROM table_name_86 WHERE 1993 = "3r" |
45,494 | <question>: Which 1992 has a 1996 of sf and a 1993 of a? <context>: CREATE TABLE table_name_59 (Id VARCHAR) | SELECT 1992 FROM table_name_59 WHERE 1996 = "sf" AND 1993 = "a" |
45,495 | <question>: Which school picked a back in round 16, after pick 89? <context>: CREATE TABLE table_name_20 (school VARCHAR, round VARCHAR, pick VARCHAR, position VARCHAR) | SELECT school FROM table_name_20 WHERE pick > 89 AND position = "back" AND round = 16 |
45,496 | <question>: Who was the visitor in the game that had Ottawa as the home team? <context>: CREATE TABLE table_name_29 (visitor VARCHAR, home VARCHAR) | SELECT visitor FROM table_name_29 WHERE home = "ottawa" |
45,497 | <question>: What was the score in the game where Carolina was the home team and Niittymaki received the decision? <context>: CREATE TABLE table_name_90 (score VARCHAR, decision VARCHAR, home VARCHAR) | SELECT score FROM table_name_90 WHERE decision = "niittymaki" AND home = "carolina" |
45,498 | <question>: What was the date of the game that had a loss of Johnson (9-8)? <context>: CREATE TABLE table_name_30 (date VARCHAR, loss VARCHAR) | SELECT date FROM table_name_30 WHERE loss = "johnson (9-8)" |
45,499 | <question>: Who had a Run 1 smaller than 51.96, a Run 2 larger than 51.13, and a Run 3 of 52.53? <context>: CREATE TABLE table_name_23 (athlete VARCHAR, run_3 VARCHAR, run_1 VARCHAR, run_2 VARCHAR) | SELECT athlete FROM table_name_23 WHERE run_1 < 51.96 AND run_2 > 51.13 AND run_3 = 52.53 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.