Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
49,500 | <question>: What is the Date with an Opponent that is flavia pennetta? <context>: CREATE TABLE table_name_53 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_53 WHERE opponent = "flavia pennetta" |
49,501 | <question>: What is the Score with an Opponent that is flavia pennetta? <context>: CREATE TABLE table_name_55 (score VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_55 WHERE opponent = "flavia pennetta" |
49,502 | <question>: What is the Opponent with a Score that is 2–6, 6–4, 3–6? <context>: CREATE TABLE table_name_39 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_39 WHERE score = "2–6, 6–4, 3–6" |
49,503 | <question>: What is the Outcome with a Date that is may 5, 2012? <context>: CREATE TABLE table_name_49 (outcome VARCHAR, date VARCHAR) | SELECT outcome FROM table_name_49 WHERE date = "may 5, 2012" |
49,504 | <question>: What is the Outcome with an Opponent that is jelena janković? <context>: CREATE TABLE table_name_85 (outcome VARCHAR, opponent VARCHAR) | SELECT outcome FROM table_name_85 WHERE opponent = "jelena janković" |
49,505 | <question>: What is the Tournament with a Score that is 2–6, 6–4, 3–6? <context>: CREATE TABLE table_name_55 (tournament VARCHAR, score VARCHAR) | SELECT tournament FROM table_name_55 WHERE score = "2–6, 6–4, 3–6" |
49,506 | <question>: Which week was on November 13, 1955 when the attendance was over 33,982? <context>: CREATE TABLE table_name_57 (week VARCHAR, date VARCHAR, attendance VARCHAR) | SELECT COUNT(week) FROM table_name_57 WHERE date = "november 13, 1955" AND attendance > 33 OFFSET 982 |
49,507 | <question>: What is the Japanese name of the Province with a Korean name of Chungcheong-Bukdo? <context>: CREATE TABLE table_name_46 (japanese_name VARCHAR, korean_name VARCHAR) | SELECT japanese_name FROM table_name_46 WHERE korean_name = "chungcheong-bukdo" |
49,508 | <question>: What is the Hanja/Kanji of the Province with a Kana of ちゅうせいほくどう? <context>: CREATE TABLE table_name_10 (hanja___kanji VARCHAR, kana VARCHAR) | SELECT hanja___kanji FROM table_name_10 WHERE kana = "ちゅうせいほくどう" |
49,509 | <question>: What is the Kana of the Province with a Korean name of Chungcheong-Namdo? <context>: CREATE TABLE table_name_2 (kana VARCHAR, korean_name VARCHAR) | SELECT kana FROM table_name_2 WHERE korean_name = "chungcheong-namdo" |
49,510 | <question>: What is the Hangul of the Province with a Kana of へいあんなんどう? <context>: CREATE TABLE table_name_48 (hangul VARCHAR, kana VARCHAR) | SELECT hangul FROM table_name_48 WHERE kana = "へいあんなんどう" |
49,511 | <question>: What is the Hangul of the Province with a Kana of ちゅうせいなんどう? <context>: CREATE TABLE table_name_3 (hangul VARCHAR, kana VARCHAR) | SELECT hangul FROM table_name_3 WHERE kana = "ちゅうせいなんどう" |
49,512 | <question>: What is the Hanja/Kanji of the Province with a Korean name of Chungcheong-Bukdo? <context>: CREATE TABLE table_name_5 (hanja___kanji VARCHAR, korean_name VARCHAR) | SELECT hanja___kanji FROM table_name_5 WHERE korean_name = "chungcheong-bukdo" |
49,513 | <question>: What were the Oct. temperatures for the city that had Nov. temperatures of 51/30? <context>: CREATE TABLE table_name_94 (oct VARCHAR, nov VARCHAR) | SELECT oct FROM table_name_94 WHERE nov = "51/30" |
49,514 | <question>: What were the Feb temperatures in East Stroudsburg? <context>: CREATE TABLE table_name_63 (feb VARCHAR, city VARCHAR) | SELECT feb FROM table_name_63 WHERE city = "east stroudsburg" |
49,515 | <question>: What is the sum of completions that led to completion percentages of 65.4 and attempts under 451? <context>: CREATE TABLE table_name_33 (comp INTEGER, comp_percentage VARCHAR, att VARCHAR) | SELECT SUM(comp) FROM table_name_33 WHERE comp_percentage = 65.4 AND att < 451 |
49,516 | <question>: What regular season did the team reach the conference semifinals in the playoffs? <context>: CREATE TABLE table_name_78 (regular_season VARCHAR, playoffs VARCHAR) | SELECT regular_season FROM table_name_78 WHERE playoffs = "conference semifinals" |
49,517 | <question>: When the regular season of 2nd, Northeast and the year was less than 2008 what was the total number of Division? <context>: CREATE TABLE table_name_89 (division VARCHAR, regular_season VARCHAR, year VARCHAR) | SELECT COUNT(division) FROM table_name_89 WHERE regular_season = "2nd, northeast" AND year < 2008 |
49,518 | <question>: What division was the regular season 5th, Northeast? <context>: CREATE TABLE table_name_97 (division VARCHAR, regular_season VARCHAR) | SELECT division FROM table_name_97 WHERE regular_season = "5th, northeast" |
49,519 | <question>: What was the result when Jam Hsiao was nominated in 2012? <context>: CREATE TABLE table_name_36 (result VARCHAR, nomination VARCHAR, year VARCHAR) | SELECT result FROM table_name_36 WHERE nomination = "jam hsiao" AND year = 2012 |
49,520 | <question>: Which award is in the category of best music video? <context>: CREATE TABLE table_name_55 (award VARCHAR, category VARCHAR) | SELECT award FROM table_name_55 WHERE category = "best music video" |
49,521 | <question>: Which Attendance has a Result of l 29–23? <context>: CREATE TABLE table_name_54 (attendance VARCHAR, result VARCHAR) | SELECT attendance FROM table_name_54 WHERE result = "l 29–23" |
49,522 | <question>: When has a Week of 1? <context>: CREATE TABLE table_name_89 (date VARCHAR, week VARCHAR) | SELECT date FROM table_name_89 WHERE week = 1 |
49,523 | <question>: Which Week has an Opponent of at seattle seahawks? <context>: CREATE TABLE table_name_11 (week VARCHAR, opponent VARCHAR) | SELECT week FROM table_name_11 WHERE opponent = "at seattle seahawks" |
49,524 | <question>: Name the Result on october 15, 1995? <context>: CREATE TABLE table_name_71 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_71 WHERE date = "october 15, 1995" |
49,525 | <question>: Which Opponent has a Week larger than 2 on november 19, 1995? <context>: CREATE TABLE table_name_81 (opponent VARCHAR, week VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_81 WHERE week > 2 AND date = "november 19, 1995" |
49,526 | <question>: What is the recorded conference that was a Wac Conference? <context>: CREATE TABLE table_name_73 (record__conf_ VARCHAR, conference VARCHAR) | SELECT record__conf_ FROM table_name_73 WHERE conference = "wac" |
49,527 | <question>: What conference has the Wichita State school? <context>: CREATE TABLE table_name_26 (conference VARCHAR, school VARCHAR) | SELECT conference FROM table_name_26 WHERE school = "wichita state" |
49,528 | <question>: What is the rank for Burghley? <context>: CREATE TABLE table_name_72 (rank VARCHAR, place VARCHAR) | SELECT rank FROM table_name_72 WHERE place = "burghley" |
49,529 | <question>: What horse was at the Badminton Horse Trials? <context>: CREATE TABLE table_name_54 (horse VARCHAR, competition VARCHAR) | SELECT horse FROM table_name_54 WHERE competition = "badminton horse trials" |
49,530 | <question>: What was Des Dickson's lowest rank for matches smaller than 285 and less than 219 goals? <context>: CREATE TABLE table_name_89 (rank INTEGER, goals VARCHAR, matches VARCHAR, name VARCHAR) | SELECT MIN(rank) FROM table_name_89 WHERE matches < 285 AND name = "des dickson" AND goals < 219 |
49,531 | <question>: How many goals on average had 644 matches and a rank bigger than 3? <context>: CREATE TABLE table_name_94 (goals INTEGER, matches VARCHAR, rank VARCHAR) | SELECT AVG(goals) FROM table_name_94 WHERE matches = 644 AND rank > 3 |
49,532 | <question>: How many ranks had 205 matches? <context>: CREATE TABLE table_name_54 (rank VARCHAR, matches VARCHAR) | SELECT COUNT(rank) FROM table_name_54 WHERE matches = 205 |
49,533 | <question>: What was Jimmy Jones' rank when the matches were smaller than 285? <context>: CREATE TABLE table_name_4 (rank INTEGER, name VARCHAR, matches VARCHAR) | SELECT MAX(rank) FROM table_name_4 WHERE name = "jimmy jones" AND matches < 285 |
49,534 | <question>: Which date had the Hornets as the home team? <context>: CREATE TABLE table_name_53 (date VARCHAR, home VARCHAR) | SELECT date FROM table_name_53 WHERE home = "hornets" |
49,535 | <question>: What is the To par score corresponding to the winning score of 64-69-67-66=266? <context>: CREATE TABLE table_name_88 (to_par VARCHAR, winning_score VARCHAR) | SELECT to_par FROM table_name_88 WHERE winning_score = 64 - 69 - 67 - 66 = 266 |
49,536 | <question>: What was the To par score for the tournament with a margin of victory of 1 stroke? <context>: CREATE TABLE table_name_44 (to_par VARCHAR, margin_of_victory VARCHAR) | SELECT to_par FROM table_name_44 WHERE margin_of_victory = "1 stroke" |
49,537 | <question>: What was the winning score for the tournament with a margin of victory of 7 strokes? <context>: CREATE TABLE table_name_6 (winning_score VARCHAR, margin_of_victory VARCHAR) | SELECT winning_score FROM table_name_6 WHERE margin_of_victory = "7 strokes" |
49,538 | <question>: What day in December was the game that resulted in a record of 6-3-1? <context>: CREATE TABLE table_name_64 (december INTEGER, record VARCHAR) | SELECT SUM(december) FROM table_name_64 WHERE record = "6-3-1" |
49,539 | <question>: How many were in attendance against the Oakland Raiders after week 7? <context>: CREATE TABLE table_name_25 (attendance INTEGER, opponent VARCHAR, week VARCHAR) | SELECT SUM(attendance) FROM table_name_25 WHERE opponent = "oakland raiders" AND week > 7 |
49,540 | <question>: What is the average attendance for the New York Jets? <context>: CREATE TABLE table_name_98 (attendance INTEGER, opponent VARCHAR) | SELECT AVG(attendance) FROM table_name_98 WHERE opponent = "new york jets" |
49,541 | <question>: On what week were there 26,243 in attendance on September 21, 1969? <context>: CREATE TABLE table_name_51 (week VARCHAR, date VARCHAR, attendance VARCHAR) | SELECT COUNT(week) FROM table_name_51 WHERE date = "september 21, 1969" AND attendance < 26 OFFSET 243 |
49,542 | <question>: Who was the opponent at Pasir Gudang, Malaysia with a match larger than 2? <context>: CREATE TABLE table_name_18 (opponent_team VARCHAR, match VARCHAR, location VARCHAR) | SELECT opponent_team FROM table_name_18 WHERE match > 2 AND location = "pasir gudang, malaysia" |
49,543 | <question>: Who was the opponent at the match smaller than 3? <context>: CREATE TABLE table_name_31 (opponent_team VARCHAR, match INTEGER) | SELECT opponent_team FROM table_name_31 WHERE match < 3 |
49,544 | <question>: Where was the game when Police S.A. was the opponent? <context>: CREATE TABLE table_name_78 (location VARCHAR, opponent_team VARCHAR) | SELECT location FROM table_name_78 WHERE opponent_team = "police s.a." |
49,545 | <question>: How many list entry numbers are located in Platting Road, Lydgate? <context>: CREATE TABLE table_name_95 (list_entry_number VARCHAR, location VARCHAR) | SELECT COUNT(list_entry_number) FROM table_name_95 WHERE location = "platting road, lydgate" |
49,546 | <question>: Which type has list entry number of 1356677? <context>: CREATE TABLE table_name_52 (type VARCHAR, list_entry_number VARCHAR) | SELECT type FROM table_name_52 WHERE list_entry_number = 1356677 |
49,547 | <question>: What is the completed date of the church with list entry number 1068071? <context>: CREATE TABLE table_name_33 (completed VARCHAR, type VARCHAR, list_entry_number VARCHAR) | SELECT completed FROM table_name_33 WHERE type = "church" AND list_entry_number = 1068071 |
49,548 | <question>: Who were the scorers in the game against neuchâtel xamax played on 10 December 1985? <context>: CREATE TABLE table_name_64 (scorers VARCHAR, opponent VARCHAR, date VARCHAR) | SELECT scorers FROM table_name_64 WHERE opponent = "neuchâtel xamax" AND date = "10 december 1985" |
49,549 | <question>: What date was the game played in where hegarty was the scorer? <context>: CREATE TABLE table_name_94 (date VARCHAR, scorers VARCHAR) | SELECT date FROM table_name_94 WHERE scorers = "hegarty" |
49,550 | <question>: Who is the callsign that has ICAO of SCO? <context>: CREATE TABLE table_name_68 (callsign VARCHAR, icao VARCHAR) | SELECT callsign FROM table_name_68 WHERE icao = "sco" |
49,551 | <question>: Who is the commenced operations that has icao of slk? <context>: CREATE TABLE table_name_34 (commenced_operations VARCHAR, icao VARCHAR) | SELECT commenced_operations FROM table_name_34 WHERE icao = "slk" |
49,552 | <question>: Who is the call sign that has a commenced operation before 1976? <context>: CREATE TABLE table_name_3 (callsign VARCHAR, commenced_operations INTEGER) | SELECT callsign FROM table_name_3 WHERE commenced_operations < 1976 |
49,553 | <question>: What is the HDTV of the Music Content Channel? <context>: CREATE TABLE table_name_60 (hdtv VARCHAR, content VARCHAR) | SELECT hdtv FROM table_name_60 WHERE content = "music" |
49,554 | <question>: What is the Television Service offering Cartomanzia? <context>: CREATE TABLE table_name_36 (television_service VARCHAR, content VARCHAR) | SELECT television_service FROM table_name_36 WHERE content = "cartomanzia" |
49,555 | <question>: What Country's content is Televendite? <context>: CREATE TABLE table_name_32 (country VARCHAR, content VARCHAR) | SELECT country FROM table_name_32 WHERE content = "televendite" |
49,556 | <question>: What Country's Content is TV Locale? <context>: CREATE TABLE table_name_9 (country VARCHAR, content VARCHAR) | SELECT country FROM table_name_9 WHERE content = "tv locale" |
49,557 | <question>: How many golds had a silver of more than 1, rank more than 1, total of more than 4 when the bronze was also more than 4? <context>: CREATE TABLE table_name_12 (gold INTEGER, bronze VARCHAR, total VARCHAR, silver VARCHAR, rank VARCHAR) | SELECT SUM(gold) FROM table_name_12 WHERE silver > 1 AND rank > 1 AND total > 4 AND bronze > 4 |
49,558 | <question>: What is the total of rank when gold is 2 and total is more than 4? <context>: CREATE TABLE table_name_99 (rank INTEGER, gold VARCHAR, total VARCHAR) | SELECT SUM(rank) FROM table_name_99 WHERE gold = 2 AND total > 4 |
49,559 | <question>: What is the total number of bronze when gold is less than 1 and silver is more than 1? <context>: CREATE TABLE table_name_53 (bronze INTEGER, gold VARCHAR, silver VARCHAR) | SELECT SUM(bronze) FROM table_name_53 WHERE gold < 1 AND silver > 1 |
49,560 | <question>: What is the total of rank when silver is more than 1, gold is 2, and total is more than 4? <context>: CREATE TABLE table_name_4 (rank INTEGER, total VARCHAR, silver VARCHAR, gold VARCHAR) | SELECT SUM(rank) FROM table_name_4 WHERE silver > 1 AND gold = 2 AND total > 4 |
49,561 | <question>: What is the Wins with a Top-25 of 3, and a Top-5 larger than 1? <context>: CREATE TABLE table_name_86 (wins INTEGER, top_25 VARCHAR, top_5 VARCHAR) | SELECT AVG(wins) FROM table_name_86 WHERE top_25 = 3 AND top_5 > 1 |
49,562 | <question>: Which Cuts made has a Top-5 smaller than 3, and a Top-25 smaller than 6, and an Events of 10? <context>: CREATE TABLE table_name_53 (cuts_made VARCHAR, events VARCHAR, top_5 VARCHAR, top_25 VARCHAR) | SELECT cuts_made FROM table_name_53 WHERE top_5 < 3 AND top_25 < 6 AND events = 10 |
49,563 | <question>: Which Tournament has a Cuts made smaller than 9, and an Events of 10? <context>: CREATE TABLE table_name_25 (tournament VARCHAR, cuts_made VARCHAR, events VARCHAR) | SELECT tournament FROM table_name_25 WHERE cuts_made < 9 AND events = 10 |
49,564 | <question>: What is the sum of Points for 250cc class, ranked 13th, later than 1955? <context>: CREATE TABLE table_name_89 (points INTEGER, year VARCHAR, class VARCHAR, rank VARCHAR) | SELECT SUM(points) FROM table_name_89 WHERE class = "250cc" AND rank = "13th" AND year > 1955 |
49,565 | <question>: What is the Class for a year later than 1958, with 4 points? <context>: CREATE TABLE table_name_30 (class VARCHAR, year VARCHAR, points VARCHAR) | SELECT class FROM table_name_30 WHERE year > 1958 AND points = 4 |
49,566 | <question>: What is the average Year when there were more than 3 points, for MV Agusta and ranked 10th? <context>: CREATE TABLE table_name_45 (year INTEGER, rank VARCHAR, points VARCHAR, team VARCHAR) | SELECT AVG(year) FROM table_name_45 WHERE points > 3 AND team = "mv agusta" AND rank = "10th" |
49,567 | <question>: What Team has a Class of 350cc, with less than 13 points in 1959? <context>: CREATE TABLE table_name_93 (team VARCHAR, year VARCHAR, class VARCHAR, points VARCHAR) | SELECT team FROM table_name_93 WHERE class = "350cc" AND points < 13 AND year = 1959 |
49,568 | <question>: Which event was held at Manly Beach? <context>: CREATE TABLE table_name_20 (event VARCHAR, location VARCHAR) | SELECT event FROM table_name_20 WHERE location = "manly beach" |
49,569 | <question>: What was the location of the Havaianas Beachley Classic, held in Australia? <context>: CREATE TABLE table_name_99 (location VARCHAR, country VARCHAR, event VARCHAR) | SELECT location FROM table_name_99 WHERE country = "australia" AND event = "havaianas beachley classic" |
49,570 | <question>: Which event was held in Brazil? <context>: CREATE TABLE table_name_31 (event VARCHAR, country VARCHAR) | SELECT event FROM table_name_31 WHERE country = "brazil" |
49,571 | <question>: The University of Colorado hosted what region? <context>: CREATE TABLE table_name_4 (region VARCHAR, host VARCHAR) | SELECT region FROM table_name_4 WHERE host = "university of colorado" |
49,572 | <question>: Peterson Gym is in what city? <context>: CREATE TABLE table_name_60 (city VARCHAR, venue VARCHAR) | SELECT city FROM table_name_60 WHERE venue = "peterson gym" |
49,573 | <question>: Mideast region host University of Tennessee is in what state? <context>: CREATE TABLE table_name_70 (state VARCHAR, region VARCHAR, host VARCHAR) | SELECT state FROM table_name_70 WHERE region = "mideast" AND host = "university of tennessee" |
49,574 | <question>: What city is east region venue University Hall (University of Virginia) in? <context>: CREATE TABLE table_name_10 (city VARCHAR, region VARCHAR, venue VARCHAR) | SELECT city FROM table_name_10 WHERE region = "east" AND venue = "university hall (university of virginia)" |
49,575 | <question>: What is the venue at Stanford University? <context>: CREATE TABLE table_name_19 (venue VARCHAR, host VARCHAR) | SELECT venue FROM table_name_19 WHERE host = "stanford university" |
49,576 | <question>: What is the venue in Seattle? <context>: CREATE TABLE table_name_22 (venue VARCHAR, city VARCHAR) | SELECT venue FROM table_name_22 WHERE city = "seattle" |
49,577 | <question>: What team won the Tour de Santa Catarina? <context>: CREATE TABLE table_name_5 (team VARCHAR, race_name VARCHAR) | SELECT team FROM table_name_5 WHERE race_name = "tour de santa catarina" |
49,578 | <question>: What is Relax-Gam's average UCI Rating? <context>: CREATE TABLE table_name_88 (uci_rating INTEGER, team VARCHAR) | SELECT AVG(uci_rating) FROM table_name_88 WHERE team = "relax-gam" |
49,579 | <question>: What is Vuelta a Ecuador's lowest UCI Rating? <context>: CREATE TABLE table_name_3 (uci_rating INTEGER, race_name VARCHAR) | SELECT MIN(uci_rating) FROM table_name_3 WHERE race_name = "vuelta a ecuador" |
49,580 | <question>: What was the result of the game attended by 54,110? <context>: CREATE TABLE table_name_73 (result VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_73 WHERE attendance = "54,110" |
49,581 | <question>: What was the date of the game attended by 45,122? <context>: CREATE TABLE table_name_39 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_39 WHERE attendance = "45,122" |
49,582 | <question>: What is the earliest week with a game attended by 60,233? <context>: CREATE TABLE table_name_35 (week INTEGER, attendance VARCHAR) | SELECT MIN(week) FROM table_name_35 WHERE attendance = "60,233" |
49,583 | <question>: What is the latest week with a game with a result of l 12–7? <context>: CREATE TABLE table_name_43 (week INTEGER, result VARCHAR) | SELECT MAX(week) FROM table_name_43 WHERE result = "l 12–7" |
49,584 | <question>: What is Runner(s)-up, when Tournament is MCI Classic? <context>: CREATE TABLE table_name_75 (runner_s__up VARCHAR, tournament VARCHAR) | SELECT runner_s__up FROM table_name_75 WHERE tournament = "mci classic" |
49,585 | <question>: What is Winning Score, when Date is Jul 27, 1997? <context>: CREATE TABLE table_name_53 (winning_score VARCHAR, date VARCHAR) | SELECT winning_score FROM table_name_53 WHERE date = "jul 27, 1997" |
49,586 | <question>: What is Winning Score, when Runner(s)-up is Ted Purdy? <context>: CREATE TABLE table_name_37 (winning_score VARCHAR, runner_s__up VARCHAR) | SELECT winning_score FROM table_name_37 WHERE runner_s__up = "ted purdy" |
49,587 | <question>: What is the enrollment number for the public institution in Golden, Colorado founded after 1874? <context>: CREATE TABLE table_name_38 (enrollment INTEGER, founded VARCHAR, control VARCHAR, location VARCHAR) | SELECT AVG(enrollment) FROM table_name_38 WHERE control = "public" AND location = "golden, colorado" AND founded > 1874 |
49,588 | <question>: Which Team has a Year smaller than 2007, and a Class of gts? <context>: CREATE TABLE table_name_96 (team VARCHAR, year VARCHAR, class VARCHAR) | SELECT team FROM table_name_96 WHERE year < 2007 AND class = "gts" |
49,589 | <question>: In what year Year has a Co-Drivers of jérôme policand christopher campbell? <context>: CREATE TABLE table_name_82 (year INTEGER, co_drivers VARCHAR) | SELECT SUM(year) FROM table_name_82 WHERE co_drivers = "jérôme policand christopher campbell" |
49,590 | <question>: What is Language, when Content is Monoscopio? <context>: CREATE TABLE table_name_27 (language VARCHAR, content VARCHAR) | SELECT language FROM table_name_27 WHERE content = "monoscopio" |
49,591 | <question>: What is Television Service, when Content is Presentazione? <context>: CREATE TABLE table_name_90 (television_service VARCHAR, content VARCHAR) | SELECT television_service FROM table_name_90 WHERE content = "presentazione" |
49,592 | <question>: What is Package/Option, when Television Service is Sky Inside? <context>: CREATE TABLE table_name_74 (package_option VARCHAR, television_service VARCHAR) | SELECT package_option FROM table_name_74 WHERE television_service = "sky inside" |
49,593 | <question>: What is Package/Option, when Television Service is Sky Inside? <context>: CREATE TABLE table_name_63 (package_option VARCHAR, television_service VARCHAR) | SELECT package_option FROM table_name_63 WHERE television_service = "sky inside" |
49,594 | <question>: What is the sum of Points, when the Performer is fe-mail? <context>: CREATE TABLE table_name_64 (points INTEGER, performer VARCHAR) | SELECT SUM(points) FROM table_name_64 WHERE performer = "fe-mail" |
49,595 | <question>: What is the score for set 3 with a time at 15:04? <context>: CREATE TABLE table_name_46 (set_3 VARCHAR, time VARCHAR) | SELECT set_3 FROM table_name_46 WHERE time = "15:04" |
49,596 | <question>: What was the overall score when the score of set 3 was 29–27? <context>: CREATE TABLE table_name_63 (score VARCHAR, set_3 VARCHAR) | SELECT score FROM table_name_63 WHERE set_3 = "29–27" |
49,597 | <question>: What was the score for set 2 when set 3 was 25–22? <context>: CREATE TABLE table_name_74 (set_2 VARCHAR, set_3 VARCHAR) | SELECT set_2 FROM table_name_74 WHERE set_3 = "25–22" |
49,598 | <question>: What was the overall score when set 1 was 23–25? <context>: CREATE TABLE table_name_33 (score VARCHAR, set_1 VARCHAR) | SELECT score FROM table_name_33 WHERE set_1 = "23–25" |
49,599 | <question>: What school/club team did Amal McCaskill play for? <context>: CREATE TABLE table_name_40 (school_club_team VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_name_40 WHERE player = "amal mccaskill" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.