Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
49,600 | <question>: Mike Miller played for what school/club team? <context>: CREATE TABLE table_name_87 (school_club_team VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_name_87 WHERE player = "mike miller" |
49,601 | <question>: Who is the player that played for the school/club team Maryland? <context>: CREATE TABLE table_name_13 (player VARCHAR, school_club_team VARCHAR) | SELECT player FROM table_name_13 WHERE school_club_team = "maryland" |
49,602 | <question>: Cuttino Mobley is what nationality? <context>: CREATE TABLE table_name_5 (nationality VARCHAR, player VARCHAR) | SELECT nationality FROM table_name_5 WHERE player = "cuttino mobley" |
49,603 | <question>: Corey Maggette from the United States plays what position? <context>: CREATE TABLE table_name_70 (position VARCHAR, nationality VARCHAR, player VARCHAR) | SELECT position FROM table_name_70 WHERE nationality = "united states" AND player = "corey maggette" |
49,604 | <question>: Amal McCaskill who plays forward-center played for what school/club team? <context>: CREATE TABLE table_name_55 (school_club_team VARCHAR, position VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_name_55 WHERE position = "forward-center" AND player = "amal mccaskill" |
49,605 | <question>: Which Servedby has a Local authority [a ] of thurrock, and a Station of ockendon? <context>: CREATE TABLE table_name_1 (servedby VARCHAR, station VARCHAR, local_authority_ VARCHAR, a_ VARCHAR) | SELECT servedby FROM table_name_1 WHERE local_authority_[a_] = "thurrock" AND station = "ockendon" |
49,606 | <question>: What is the Opponents from the final with a Tournament that is puebla? <context>: CREATE TABLE table_name_44 (opponents_in_the_final VARCHAR, tournament VARCHAR) | SELECT opponents_in_the_final FROM table_name_44 WHERE tournament = "puebla" |
49,607 | <question>: What was the date of the game held at the Al-Rashid Stadium, Dubai? <context>: CREATE TABLE table_name_13 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_13 WHERE venue = "al-rashid stadium, dubai" |
49,608 | <question>: What is the Round of 16 value for the nation with a value of 5 for Ranking Round Rank? <context>: CREATE TABLE table_name_83 (round_of_16 VARCHAR, ranking_round_rank VARCHAR) | SELECT round_of_16 FROM table_name_83 WHERE ranking_round_rank = 5 |
49,609 | <question>: What Team had the first round of 1:00? <context>: CREATE TABLE table_name_53 (team VARCHAR, first_round VARCHAR) | SELECT team FROM table_name_53 WHERE first_round = "1:00" |
49,610 | <question>: What City/State did the Atlanta Hawks (retired) team play for? <context>: CREATE TABLE table_name_24 (city_state VARCHAR, team VARCHAR) | SELECT city_state FROM table_name_24 WHERE team = "atlanta hawks (retired)" |
49,611 | <question>: What was the final round value for member Chris Webber? <context>: CREATE TABLE table_name_59 (final_round VARCHAR, members VARCHAR) | SELECT final_round FROM table_name_59 WHERE members = "chris webber" |
49,612 | <question>: What was the first round time for member Kenny Smith? <context>: CREATE TABLE table_name_14 (first_round VARCHAR, members VARCHAR) | SELECT first_round FROM table_name_14 WHERE members = "kenny smith" |
49,613 | <question>: Which team was the opponent on December 30? <context>: CREATE TABLE table_name_17 (team VARCHAR, date VARCHAR) | SELECT team FROM table_name_17 WHERE date = "december 30" |
49,614 | <question>: What content is provided by the television service ewtn? <context>: CREATE TABLE table_name_1 (content VARCHAR, television_service VARCHAR) | SELECT content FROM table_name_1 WHERE television_service = "ewtn" |
49,615 | <question>: What is the content of the television service ewtn in the United Kingdom? <context>: CREATE TABLE table_name_94 (content VARCHAR, country VARCHAR, television_service VARCHAR) | SELECT content FROM table_name_94 WHERE country = "united kingdom" AND television_service = "ewtn" |
49,616 | <question>: What is the package/option for Italy when the language is italian? <context>: CREATE TABLE table_name_24 (package_option VARCHAR, country VARCHAR, language VARCHAR) | SELECT package_option FROM table_name_24 WHERE country = "italy" AND language = "italian" |
49,617 | <question>: What is the package/option in Italy when the content is religione? <context>: CREATE TABLE table_name_68 (package_option VARCHAR, content VARCHAR, country VARCHAR) | SELECT package_option FROM table_name_68 WHERE content = "religione" AND country = "italy" |
49,618 | <question>: Which television service has italian for its language? <context>: CREATE TABLE table_name_46 (television_service VARCHAR, language VARCHAR) | SELECT television_service FROM table_name_46 WHERE language = "italian" |
49,619 | <question>: Does daystar television network provide HDTV? <context>: CREATE TABLE table_name_50 (hdtv VARCHAR, television_service VARCHAR) | SELECT hdtv FROM table_name_50 WHERE television_service = "daystar television network" |
49,620 | <question>: What was the Attendance when Oxford United was the Home team? <context>: CREATE TABLE table_name_58 (attendance INTEGER, home_team VARCHAR) | SELECT SUM(attendance) FROM table_name_58 WHERE home_team = "oxford united" |
49,621 | <question>: What was the Home team when Farnborough Town was the Away team? <context>: CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_90 WHERE away_team = "farnborough town" |
49,622 | <question>: What was the Away Team of Blackpool's Home game? <context>: CREATE TABLE table_name_9 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_9 WHERE home_team = "blackpool" |
49,623 | <question>: Which Bronze has a Rank of 9? <context>: CREATE TABLE table_name_76 (bronze VARCHAR, rank VARCHAR) | SELECT COUNT(bronze) FROM table_name_76 WHERE rank = "9" |
49,624 | <question>: Which Bronze has a Gold smaller than 1, and a Rank of 17, and a Nation of china? <context>: CREATE TABLE table_name_78 (bronze INTEGER, nation VARCHAR, gold VARCHAR, rank VARCHAR) | SELECT MAX(bronze) FROM table_name_78 WHERE gold < 1 AND rank = "17" AND nation = "china" |
49,625 | <question>: Which Nation has a Bronze smaller than 1, and a Total larger than 1, and a Silver of 1? <context>: CREATE TABLE table_name_82 (nation VARCHAR, silver VARCHAR, bronze VARCHAR, total VARCHAR) | SELECT nation FROM table_name_82 WHERE bronze < 1 AND total > 1 AND silver = 1 |
49,626 | <question>: Which Total has a Rank of 17, and a Gold larger than 0? <context>: CREATE TABLE table_name_59 (total INTEGER, rank VARCHAR, gold VARCHAR) | SELECT AVG(total) FROM table_name_59 WHERE rank = "17" AND gold > 0 |
49,627 | <question>: Which Gold has a Rank of 15, and a Total smaller than 2? <context>: CREATE TABLE table_name_99 (gold INTEGER, rank VARCHAR, total VARCHAR) | SELECT AVG(gold) FROM table_name_99 WHERE rank = "15" AND total < 2 |
49,628 | <question>: What is the number of games for the season with 10 ties? <context>: CREATE TABLE table_name_86 (games VARCHAR, tied VARCHAR) | SELECT games FROM table_name_86 WHERE tied = 10 |
49,629 | <question>: What was the surface where the opponent was Nathalie Dechy Meilen Tu? <context>: CREATE TABLE table_name_63 (surface VARCHAR, opponent_in_the_final VARCHAR) | SELECT surface FROM table_name_63 WHERE opponent_in_the_final = "nathalie dechy meilen tu" |
49,630 | <question>: What is the Series leader with a Date that is may 31? <context>: CREATE TABLE table_name_64 (series_leader VARCHAR, date VARCHAR) | SELECT series_leader FROM table_name_64 WHERE date = "may 31" |
49,631 | <question>: What is the Series leader with a Date that is october 9? <context>: CREATE TABLE table_name_93 (series_leader VARCHAR, date VARCHAR) | SELECT series_leader FROM table_name_93 WHERE date = "october 9" |
49,632 | <question>: Which Tournament has a Date of january 10, 1994? <context>: CREATE TABLE table_name_10 (tournament VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_10 WHERE date = "january 10, 1994" |
49,633 | <question>: Which Opponents in the final have a Date of june 10, 1996? <context>: CREATE TABLE table_name_51 (opponents_in_the_final VARCHAR, date VARCHAR) | SELECT opponents_in_the_final FROM table_name_51 WHERE date = "june 10, 1996" |
49,634 | <question>: Who's the Opponents in the final with a Date of june 10, 1996? <context>: CREATE TABLE table_name_40 (opponents_in_the_final VARCHAR, date VARCHAR) | SELECT opponents_in_the_final FROM table_name_40 WHERE date = "june 10, 1996" |
49,635 | <question>: Which Tournament has Opponents in the final of maria lindström maria strandlund? <context>: CREATE TABLE table_name_17 (tournament VARCHAR, opponents_in_the_final VARCHAR) | SELECT tournament FROM table_name_17 WHERE opponents_in_the_final = "maria lindström maria strandlund" |
49,636 | <question>: What country came in third when there were 13 teams in 1996? <context>: CREATE TABLE table_name_25 (third VARCHAR, teams VARCHAR, season VARCHAR) | SELECT third FROM table_name_25 WHERE teams = 13 AND season = 1996 |
49,637 | <question>: What is the sum of season when the venue was donington park, and Brazil came in second? <context>: CREATE TABLE table_name_21 (season INTEGER, venue VARCHAR, second VARCHAR) | SELECT SUM(season) FROM table_name_21 WHERE venue = "donington park" AND second = "brazil" |
49,638 | <question>: What is the average Season when the venue was circuit de nevers magny-cours, and Drivers was more than 30? <context>: CREATE TABLE table_name_64 (season INTEGER, venue VARCHAR, drivers VARCHAR) | SELECT AVG(season) FROM table_name_64 WHERE venue = "circuit de nevers magny-cours" AND drivers > 30 |
49,639 | <question>: What is the total number of Losses when the percentage is 54.83, with more than 8 points? <context>: CREATE TABLE table_name_91 (losses VARCHAR, percentage VARCHAR, points VARCHAR) | SELECT COUNT(losses) FROM table_name_91 WHERE percentage = 54.83 AND points > 8 |
49,640 | <question>: What is the average Points For when there are Points Against more than 780, and Points smaller than 0? <context>: CREATE TABLE table_name_72 (points_for INTEGER, points_against VARCHAR, points VARCHAR) | SELECT AVG(points_for) FROM table_name_72 WHERE points_against > 780 AND points < 0 |
49,641 | <question>: What is the average Points when the Points Against is 594, and Losses is more than 3? <context>: CREATE TABLE table_name_85 (points INTEGER, points_against VARCHAR, losses VARCHAR) | SELECT AVG(points) FROM table_name_85 WHERE points_against = 594 AND losses > 3 |
49,642 | <question>: What is the average Percentage when there are more than 0 wins, Points Against is more than 481, Losses of 8, and a Points For larger than 826? <context>: CREATE TABLE table_name_80 (percentage INTEGER, points_for VARCHAR, losses VARCHAR, wins VARCHAR, points_against VARCHAR) | SELECT AVG(percentage) FROM table_name_80 WHERE wins > 0 AND points_against > 481 AND losses = 8 AND points_for > 826 |
49,643 | <question>: What is the lowest Wins when the Club is broadview hawks, and Points Against is more than 594? <context>: CREATE TABLE table_name_46 (wins INTEGER, club VARCHAR, points_against VARCHAR) | SELECT MIN(wins) FROM table_name_46 WHERE club = "broadview hawks" AND points_against > 594 |
49,644 | <question>: What Goalkeeper has MINS less than 2160 <context>: CREATE TABLE table_name_32 (goalkeeper VARCHAR, mins INTEGER) | SELECT goalkeeper FROM table_name_32 WHERE mins < 2160 |
49,645 | <question>: What is the highest SHTS of Kasey Keller <context>: CREATE TABLE table_name_56 (shts INTEGER, goalkeeper VARCHAR) | SELECT MAX(shts) FROM table_name_56 WHERE goalkeeper = "kasey keller" |
49,646 | <question>: What is the most number of Bronze medals won among the countries that have won more than 1 medal, more than 1 gold medal, and have a rank bigger than 1? <context>: CREATE TABLE table_name_49 (bronze INTEGER, gold VARCHAR, total VARCHAR, rank VARCHAR) | SELECT MAX(bronze) FROM table_name_49 WHERE total > 1 AND rank > 1 AND gold > 1 |
49,647 | <question>: What is the total number of Losses that Melton had when they had fewer Draws than 0? <context>: CREATE TABLE table_name_35 (losses INTEGER, ballarat_fl VARCHAR, draws VARCHAR) | SELECT SUM(losses) FROM table_name_35 WHERE ballarat_fl = "melton" AND draws < 0 |
49,648 | <question>: What is the lowest number of Against that Lake Wendouree had when they had more than 7 Losses? <context>: CREATE TABLE table_name_74 (against INTEGER, ballarat_fl VARCHAR, losses VARCHAR) | SELECT MIN(against) FROM table_name_74 WHERE ballarat_fl = "lake wendouree" AND losses > 7 |
49,649 | <question>: What was the total number of Byes for the team that had 1136 Against and fewer than 0 Draws? <context>: CREATE TABLE table_name_84 (byes VARCHAR, against VARCHAR, draws VARCHAR) | SELECT COUNT(byes) FROM table_name_84 WHERE against = 1136 AND draws < 0 |
49,650 | <question>: What was the greatest number of Losses for the team that had 1427 Against and more than 5 Wins? <context>: CREATE TABLE table_name_52 (losses INTEGER, against VARCHAR, wins VARCHAR) | SELECT MAX(losses) FROM table_name_52 WHERE against > 1427 AND wins > 5 |
49,651 | <question>: What is the average number of Byes for the team that had 15 Losses, and less than 1 Win? <context>: CREATE TABLE table_name_13 (byes INTEGER, losses VARCHAR, wins VARCHAR) | SELECT AVG(byes) FROM table_name_13 WHERE losses = 15 AND wins < 1 |
49,652 | <question>: Which nation's total is less than 19 when there's less than 1 bronze? <context>: CREATE TABLE table_name_54 (nation VARCHAR, total VARCHAR, bronze VARCHAR) | SELECT nation FROM table_name_54 WHERE total < 19 AND bronze < 1 |
49,653 | <question>: How many totals does Chile have when the number of silvers is more than 0? <context>: CREATE TABLE table_name_73 (total VARCHAR, nation VARCHAR, silver VARCHAR) | SELECT COUNT(total) FROM table_name_73 WHERE nation = "chile" AND silver > 0 |
49,654 | <question>: What was the record when TKO (punches and elbows) was the method? <context>: CREATE TABLE table_name_22 (record VARCHAR, method VARCHAR) | SELECT record FROM table_name_22 WHERE method = "tko (punches and elbows)" |
49,655 | <question>: What venue has don bradman (nsw) as the player? <context>: CREATE TABLE table_name_7 (venue VARCHAR, player VARCHAR) | SELECT venue FROM table_name_7 WHERE player = "don bradman (nsw)" |
49,656 | <question>: What rank has Bill Ponsford (vic) as the player? <context>: CREATE TABLE table_name_82 (rank VARCHAR, player VARCHAR) | SELECT rank FROM table_name_82 WHERE player = "bill ponsford (vic)" |
49,657 | <question>: What match has Clem Hill (sa) as the player? <context>: CREATE TABLE table_name_9 (match VARCHAR, player VARCHAR) | SELECT match FROM table_name_9 WHERE player = "clem hill (sa)" |
49,658 | <question>: Who played on December 25, 1925? <context>: CREATE TABLE table_name_56 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_56 WHERE date = "december 25, 1925" |
49,659 | <question>: What was the score for the South American Championship dated December 13, 1925? <context>: CREATE TABLE table_name_40 (result VARCHAR, competition VARCHAR, date VARCHAR) | SELECT result FROM table_name_40 WHERE competition = "south american championship" AND date = "december 13, 1925" |
49,660 | <question>: What is the average number of House of Representatives seats had an abbreviation of d66? <context>: CREATE TABLE table_name_52 (house_of_rep_seats INTEGER, abbr VARCHAR) | SELECT AVG(house_of_rep_seats) FROM table_name_52 WHERE abbr = "d66" |
49,661 | <question>: For the tournament played on Oct 17, 1982, what was the winning score? <context>: CREATE TABLE table_name_69 (winning_score VARCHAR, date VARCHAR) | SELECT winning_score FROM table_name_69 WHERE date = "oct 17, 1982" |
49,662 | <question>: For the tournament played Nov 13, 1988, ending with a margin of victory of 5 strokes, who was the runner-up? <context>: CREATE TABLE table_name_67 (runner_s__up VARCHAR, margin_of_victory VARCHAR, date VARCHAR) | SELECT runner_s__up FROM table_name_67 WHERE margin_of_victory = "5 strokes" AND date = "nov 13, 1988" |
49,663 | <question>: What is 2008, when 2006 is "Grand Slam Tournaments"? <context>: CREATE TABLE table_name_18 (Id VARCHAR) | SELECT 2008 FROM table_name_18 WHERE 2006 = "grand slam tournaments" |
49,664 | <question>: What is 2007, when 2003 is 1R? <context>: CREATE TABLE table_name_54 (Id VARCHAR) | SELECT 2007 FROM table_name_54 WHERE 2003 = "1r" |
49,665 | <question>: What is the Tournament, when 2012 is 3R? <context>: CREATE TABLE table_name_66 (tournament VARCHAR) | SELECT tournament FROM table_name_66 WHERE 2012 = "3r" |
49,666 | <question>: What is Tournament, when 2009 is "Grand Slam Tournaments"? <context>: CREATE TABLE table_name_41 (tournament VARCHAR) | SELECT tournament FROM table_name_41 WHERE 2009 = "grand slam tournaments" |
49,667 | <question>: Which Free polite has a Genitive 3 of *ni-da? <context>: CREATE TABLE table_name_70 (free VARCHAR, genitive_3 VARCHAR) | SELECT free AS polite FROM table_name_70 WHERE genitive_3 = "*ni-da" |
49,668 | <question>: Which Free polite has a Genitive 1 of *=ku? <context>: CREATE TABLE table_name_13 (free VARCHAR, ku VARCHAR, genitive_1 VARCHAR) | SELECT free AS polite FROM table_name_13 WHERE genitive_1 = * = ku |
49,669 | <question>: Which Free polite has a Genitive 3 of *n(i)-ami? <context>: CREATE TABLE table_name_40 (free VARCHAR, genitive_3 VARCHAR) | SELECT free AS polite FROM table_name_40 WHERE genitive_3 = "*n(i)-ami" |
49,670 | <question>: Which Genitive 1 has a Genitive 3 of *n(i)-ia? <context>: CREATE TABLE table_name_57 (genitive_1 VARCHAR, genitive_3 VARCHAR) | SELECT genitive_1 FROM table_name_57 WHERE genitive_3 = "*n(i)-ia" |
49,671 | <question>: What is the Proto-Oceanic verb for the verb to sew? <context>: CREATE TABLE table_name_43 (proto_oceanic VARCHAR, verb VARCHAR) | SELECT proto_oceanic FROM table_name_43 WHERE verb = "to sew" |
49,672 | <question>: What is the verb for the Proto-Austronesian word *diri? <context>: CREATE TABLE table_name_86 (verb VARCHAR, proto_austronesian VARCHAR) | SELECT verb FROM table_name_86 WHERE proto_austronesian = "*diri" |
49,673 | <question>: What is the Proto-Oceanic verb for to die, be dead? <context>: CREATE TABLE table_name_44 (proto_oceanic VARCHAR, verb VARCHAR) | SELECT proto_oceanic FROM table_name_44 WHERE verb = "to die, be dead" |
49,674 | <question>: What is the verb for the Proto-Polynesian word *mohe? <context>: CREATE TABLE table_name_43 (verb VARCHAR, proto_polynesian VARCHAR) | SELECT verb FROM table_name_43 WHERE proto_polynesian = "*mohe" |
49,675 | <question>: What is the Proto-Austronesian word for the Proto-Polynesian word *tui? <context>: CREATE TABLE table_name_53 (proto_austronesian VARCHAR, proto_polynesian VARCHAR) | SELECT proto_austronesian FROM table_name_53 WHERE proto_polynesian = "*tui" |
49,676 | <question>: What is the Proto-Malayo-Polynesian word for the Proto-Oceanic word of *saqit, *turi? <context>: CREATE TABLE table_name_71 (proto_malayo_polynesian VARCHAR, proto_oceanic VARCHAR) | SELECT proto_malayo_polynesian FROM table_name_71 WHERE proto_oceanic = "*saqit, *turi" |
49,677 | <question>: What station has a genre of talk music and is in Malay English language? <context>: CREATE TABLE table_name_81 (station VARCHAR, genre VARCHAR, language VARCHAR) | SELECT station FROM table_name_81 WHERE genre = "talk music" AND language = "malay english" |
49,678 | <question>: Which genre is the fly fm station? <context>: CREATE TABLE table_name_93 (genre VARCHAR, station VARCHAR) | SELECT genre FROM table_name_93 WHERE station = "fly fm" |
49,679 | <question>: What frequency is the xfm station, which is part of the talk music genre? <context>: CREATE TABLE table_name_71 (frequency VARCHAR, genre VARCHAR, station VARCHAR) | SELECT frequency FROM table_name_71 WHERE genre = "talk music" AND station = "xfm" |
49,680 | <question>: What is the coverage area of muzik fm station, which has a music genre? <context>: CREATE TABLE table_name_65 (coverage_area VARCHAR, genre VARCHAR, station VARCHAR) | SELECT coverage_area FROM table_name_65 WHERE genre = "music" AND station = "muzik fm" |
49,681 | <question>: What is Co-Drivers, when Laps is greater than 196, and when Year is before 2010? <context>: CREATE TABLE table_name_78 (co_drivers VARCHAR, laps VARCHAR, year VARCHAR) | SELECT co_drivers FROM table_name_78 WHERE laps > 196 AND year < 2010 |
49,682 | <question>: What is the Date when the week is more than 3 and the attendance shows bye? <context>: CREATE TABLE table_name_39 (date VARCHAR, week VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_39 WHERE week > 3 AND attendance = "bye" |
49,683 | <question>: What is the Result when the week is later than 9, and there are 65,858 people in attendance? <context>: CREATE TABLE table_name_33 (result VARCHAR, week VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_33 WHERE week > 9 AND attendance = "65,858" |
49,684 | <question>: What is the 1938 that has N/A for 1948? <context>: CREATE TABLE table_name_49 (Id VARCHAR) | SELECT 1938 FROM table_name_49 WHERE 1948 = "n/a" |
49,685 | <question>: What 1953 has 2 for 1947, and dne as 1938? <context>: CREATE TABLE table_name_52 (Id VARCHAR) | SELECT 1953 FROM table_name_52 WHERE 1947 = "2" AND 1938 = "dne" |
49,686 | <question>: What 1935 has 4 as a 1953? <context>: CREATE TABLE table_name_6 (Id VARCHAR) | SELECT 1935 FROM table_name_6 WHERE 1953 = "4" |
49,687 | <question>: What 1953 has 2 as a 1949, and 3 as 1952? <context>: CREATE TABLE table_name_48 (Id VARCHAR) | SELECT 1953 FROM table_name_48 WHERE 1949 = "2" AND 1952 = "3" |
49,688 | <question>: What 1941 has N/A as 1945, N/A for 1948, and 9 for 1953? <context>: CREATE TABLE table_name_7 (Id VARCHAR) | SELECT 1941 FROM table_name_7 WHERE 1945 = "n/a" AND 1948 = "n/a" AND 1953 = "9" |
49,689 | <question>: What 1951 has dne for 1948? <context>: CREATE TABLE table_name_26 (Id VARCHAR) | SELECT 1951 FROM table_name_26 WHERE 1948 = "dne" |
49,690 | <question>: Which Cup Apps (sub) had 2 goals? <context>: CREATE TABLE table_name_59 (cup_apps__sub_ VARCHAR, cup_goals VARCHAR) | SELECT cup_apps__sub_ FROM table_name_59 WHERE cup_goals = "2" |
49,691 | <question>: Which Total Apps (sub) has 6 goals total? <context>: CREATE TABLE table_name_39 (total_apps__sub_ VARCHAR, total_goals VARCHAR) | SELECT total_apps__sub_ FROM table_name_39 WHERE total_goals = "6" |
49,692 | <question>: What airline has a IATA of BX? <context>: CREATE TABLE table_name_87 (airline VARCHAR, iata VARCHAR) | SELECT airline FROM table_name_87 WHERE iata = "bx" |
49,693 | <question>: What is the ICAO for Asiana Airlines? <context>: CREATE TABLE table_name_8 (icao VARCHAR, airline VARCHAR) | SELECT icao FROM table_name_8 WHERE airline = "asiana airlines" |
49,694 | <question>: What is the commenced operation where the ICAO is KAL? <context>: CREATE TABLE table_name_61 (commenced_operations VARCHAR, icao VARCHAR) | SELECT commenced_operations FROM table_name_61 WHERE icao = "kal" |
49,695 | <question>: What is the ICAO for Air Busan? <context>: CREATE TABLE table_name_63 (icao VARCHAR, callsign VARCHAR) | SELECT icao FROM table_name_63 WHERE callsign = "air busan" |
49,696 | <question>: What is the callsign where the ICAO is AAR? <context>: CREATE TABLE table_name_80 (callsign VARCHAR, icao VARCHAR) | SELECT callsign FROM table_name_80 WHERE icao = "aar" |
49,697 | <question>: What is the average Tries with less than 0 goals? <context>: CREATE TABLE table_name_7 (tries INTEGER, goals INTEGER) | SELECT AVG(tries) FROM table_name_7 WHERE goals < 0 |
49,698 | <question>: What is the total number of Points with less than 1 tries, and more than 0 goals? <context>: CREATE TABLE table_name_60 (points VARCHAR, tries VARCHAR, goals VARCHAR) | SELECT COUNT(points) FROM table_name_60 WHERE tries < 1 AND goals > 0 |
49,699 | <question>: Which club/province has more than 9 caps and Ben Franks as a player? <context>: CREATE TABLE table_name_44 (club_province VARCHAR, caps VARCHAR, player VARCHAR) | SELECT club_province FROM table_name_44 WHERE caps > 9 AND player = "ben franks" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.