Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
8,000 | <question>: How many bonus points did the club who had 18 losses have? <context>: CREATE TABLE table_27293285_2 (bonus_points VARCHAR, lost VARCHAR) | SELECT bonus_points FROM table_27293285_2 WHERE lost = "18" |
8,001 | <question>: How many points for did Munster have? <context>: CREATE TABLE table_27293285_2 (points_for VARCHAR, club VARCHAR) | SELECT points_for FROM table_27293285_2 WHERE club = "Munster" |
8,002 | <question>: How many points against did the club who had 353 points for have? <context>: CREATE TABLE table_27293285_2 (points_against VARCHAR, points_for VARCHAR) | SELECT points_against FROM table_27293285_2 WHERE points_for = "353" |
8,003 | <question>: What was the team the Suns played against in game number 4? <context>: CREATE TABLE table_27312918_5 (team VARCHAR, game VARCHAR) | SELECT team FROM table_27312918_5 WHERE game = 4 |
8,004 | <question>: Who got the most points in game number 5? <context>: CREATE TABLE table_27312918_5 (high_points VARCHAR, game VARCHAR) | SELECT high_points FROM table_27312918_5 WHERE game = 5 |
8,005 | <question>: What is the default desktop environment when the code base is ubuntu 8.04 and edition is fluxbox ce? <context>: CREATE TABLE table_27329061_2 (default_desktop_environment VARCHAR, code_base VARCHAR, edition VARCHAR) | SELECT default_desktop_environment FROM table_27329061_2 WHERE code_base = "Ubuntu 8.04" AND edition = "Fluxbox CE" |
8,006 | <question>: What is the compatible repository when the version is old version, no longer supported: 9 and default desktop environment is lxde? <context>: CREATE TABLE table_27329061_2 (compatible_repository VARCHAR, version VARCHAR, default_desktop_environment VARCHAR) | SELECT compatible_repository FROM table_27329061_2 WHERE version = "Old version, no longer supported: 9" AND default_desktop_environment = "LXDE" |
8,007 | <question>: What is the the codename when the code base is ubuntu 8.04 and the edition is fluxbox ce? <context>: CREATE TABLE table_27329061_2 (codename VARCHAR, code_base VARCHAR, edition VARCHAR) | SELECT codename FROM table_27329061_2 WHERE code_base = "Ubuntu 8.04" AND edition = "Fluxbox CE" |
8,008 | <question>: What is the default desktop environment when the edition is kde and the compatible repository is ubuntu 13.04? <context>: CREATE TABLE table_27329061_2 (default_desktop_environment VARCHAR, edition VARCHAR, compatible_repository VARCHAR) | SELECT default_desktop_environment FROM table_27329061_2 WHERE edition = "KDE" AND compatible_repository = "Ubuntu 13.04" |
8,009 | <question>: What is the version when the codename is ada? <context>: CREATE TABLE table_27329061_2 (version VARCHAR, codename VARCHAR) | SELECT version FROM table_27329061_2 WHERE codename = "Ada" |
8,010 | <question>: What is the version when the compatible reposityory is xubuntu 10.04 <context>: CREATE TABLE table_27329061_2 (version VARCHAR, compatible_repository VARCHAR) | SELECT version FROM table_27329061_2 WHERE compatible_repository = "Xubuntu 10.04" |
8,011 | <question>: What is the highest population in 2001? <context>: CREATE TABLE table_27366772_3 (population__2001_ INTEGER) | SELECT MAX(population__2001_) FROM table_27366772_3 |
8,012 | <question>: What district is known in Armenian as քանաքեր-զեյթուն? <context>: CREATE TABLE table_27366772_3 (district VARCHAR, armenian VARCHAR) | SELECT district FROM table_27366772_3 WHERE armenian = "Քանաքեր-Զեյթուն" |
8,013 | <question>: What is the Armenian name of the district that is 8.37 km² large? <context>: CREATE TABLE table_27366772_3 (armenian VARCHAR, area__km²_ VARCHAR) | SELECT armenian FROM table_27366772_3 WHERE area__km²_ = "8.37" |
8,014 | <question>: What is the name of the soccer stadium in NL providence? <context>: CREATE TABLE table_27369069_1 (soccer_stadium VARCHAR, province VARCHAR) | SELECT soccer_stadium FROM table_27369069_1 WHERE province = "NL" |
8,015 | <question>: which providence's soccer stadium was founded in 2005? <context>: CREATE TABLE table_27369069_1 (province VARCHAR, founded VARCHAR) | SELECT province FROM table_27369069_1 WHERE founded = 2005 |
8,016 | <question>: What is the team mascot for the soccer team in Charlottetown? <context>: CREATE TABLE table_27369069_1 (varsity_name VARCHAR, city VARCHAR) | SELECT varsity_name FROM table_27369069_1 WHERE city = "Charlottetown" |
8,017 | <question>: Which province has the soccer stadium that holds 4,000 people? <context>: CREATE TABLE table_27369069_1 (province VARCHAR, stadium_capacity VARCHAR) | SELECT province FROM table_27369069_1 WHERE stadium_capacity = "4,000" |
8,018 | <question>: Which University's soccer stadium in named Moncton Stadium? <context>: CREATE TABLE table_27369069_1 (university VARCHAR, soccer_stadium VARCHAR) | SELECT university FROM table_27369069_1 WHERE soccer_stadium = "Moncton Stadium" |
8,019 | <question>: Name the current womens lacrosse conference for 6000 enrollment <context>: CREATE TABLE table_27378582_1 (current_womens_lacrosse_conference VARCHAR, enrollment VARCHAR) | SELECT current_womens_lacrosse_conference FROM table_27378582_1 WHERE enrollment = 6000 |
8,020 | <question>: Name the city for enrollment being 19900 <context>: CREATE TABLE table_27378582_1 (city VARCHAR, enrollment VARCHAR) | SELECT city FROM table_27378582_1 WHERE enrollment = 19900 |
8,021 | <question>: Name the current womens lacrosse conference for bison <context>: CREATE TABLE table_27378582_1 (current_womens_lacrosse_conference VARCHAR, nickname VARCHAR) | SELECT current_womens_lacrosse_conference FROM table_27378582_1 WHERE nickname = "Bison" |
8,022 | <question>: Name the most founded for bison <context>: CREATE TABLE table_27378582_1 (founded INTEGER, nickname VARCHAR) | SELECT MAX(founded) FROM table_27378582_1 WHERE nickname = "Bison" |
8,023 | <question>: How many weeks was K.Maro at #1? <context>: CREATE TABLE table_27441210_12 (weeks_at__number1 INTEGER, artist VARCHAR) | SELECT MAX(weeks_at__number1) FROM table_27441210_12 WHERE artist = "K.Maro" |
8,024 | <question>: How many weeks was France at #1? <context>: CREATE TABLE table_27441210_12 (weeks_at__number1 INTEGER, country VARCHAR) | SELECT MAX(weeks_at__number1) FROM table_27441210_12 WHERE country = "France" |
8,025 | <question>: Name the number one singles for week 1 being 5 <context>: CREATE TABLE table_27441210_20 (number_one_single_s_ VARCHAR, weeks_at__number1 VARCHAR) | SELECT number_one_single_s_ FROM table_27441210_20 WHERE weeks_at__number1 = 5 |
8,026 | <question>: Name the number one singles for desvarieux, jacob <context>: CREATE TABLE table_27441210_5 (number_one_single_s_ VARCHAR, artist VARCHAR) | SELECT number_one_single_s_ FROM table_27441210_5 WHERE artist = "Desvarieux, Jacob" |
8,027 | <question>: Name the least weeks at number 1 for 1988 <context>: CREATE TABLE table_27441210_5 (weeks_at__number1 INTEGER, year VARCHAR) | SELECT MIN(weeks_at__number1) FROM table_27441210_5 WHERE year = 1988 |
8,028 | <question>: What is the name of the episode that was written by Scott M. Gimple? <context>: CREATE TABLE table_27450976_1 (title VARCHAR, written_by VARCHAR) | SELECT title FROM table_27450976_1 WHERE written_by = "Scott M. Gimple" |
8,029 | <question>: What is the title of the episode with a production code of 2j5504? <context>: CREATE TABLE table_27450976_1 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_27450976_1 WHERE production_code = "2J5504" |
8,030 | <question>: How many people wrote the episode with a production code of 2j5507? <context>: CREATE TABLE table_27450976_1 (written_by VARCHAR, production_code VARCHAR) | SELECT COUNT(written_by) FROM table_27450976_1 WHERE production_code = "2J5507" |
8,031 | <question>: What was the latest number in series that was directed by Skip Sudduth? <context>: CREATE TABLE table_27491610_2 (no_in_series INTEGER, directed_by VARCHAR) | SELECT MAX(no_in_series) FROM table_27491610_2 WHERE directed_by = "Skip Sudduth" |
8,032 | <question>: What number in season had 10.18 million US viewers? <context>: CREATE TABLE table_27491610_2 (no_in_season VARCHAR, us_viewers__millions_ VARCHAR) | SELECT no_in_season FROM table_27491610_2 WHERE us_viewers__millions_ = "10.18" |
8,033 | <question>: What was the original air date of the episode that was directed by Alex Zakrzewski? <context>: CREATE TABLE table_27491610_2 (original_air_date VARCHAR, directed_by VARCHAR) | SELECT original_air_date FROM table_27491610_2 WHERE directed_by = "Alex Zakrzewski" |
8,034 | <question>: What number in season is number 141 in series? <context>: CREATE TABLE table_27491610_2 (no_in_season INTEGER, no_in_series VARCHAR) | SELECT MAX(no_in_season) FROM table_27491610_2 WHERE no_in_series = 141 |
8,035 | <question>: What province was New Plymouth formed from? <context>: CREATE TABLE table_275023_1 (formed_from VARCHAR, province VARCHAR) | SELECT formed_from FROM table_275023_1 WHERE province = "New Plymouth" |
8,036 | <question>: Why was Otago formed? <context>: CREATE TABLE table_275023_1 (reason VARCHAR, province VARCHAR) | SELECT reason FROM table_275023_1 WHERE province = "Otago" |
8,037 | <question>: What provinces were formed from New Munster? <context>: CREATE TABLE table_275023_1 (province VARCHAR, formed_from VARCHAR) | SELECT province FROM table_275023_1 WHERE formed_from = "New Munster" |
8,038 | <question>: How many provinces are named Wellington? <context>: CREATE TABLE table_275023_1 (formed_date VARCHAR, province VARCHAR) | SELECT COUNT(formed_date) FROM table_275023_1 WHERE province = "Wellington" |
8,039 | <question>: If the decision was by Lalime, when in January was it made? <context>: CREATE TABLE table_27537870_6 (january VARCHAR, decision VARCHAR) | SELECT january FROM table_27537870_6 WHERE decision = "Lalime" |
8,040 | <question>: If the game was on January 21, which game was it? <context>: CREATE TABLE table_27537870_6 (game INTEGER, january VARCHAR) | SELECT MAX(game) FROM table_27537870_6 WHERE january = 21 |
8,041 | <question>: If the score is 5-3, who made the decision? <context>: CREATE TABLE table_27537870_6 (decision VARCHAR, score VARCHAR) | SELECT decision FROM table_27537870_6 WHERE score = "5-3" |
8,042 | <question>: If the opponent was the Philadelphia flyers, what was the record? <context>: CREATE TABLE table_27537870_6 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_27537870_6 WHERE opponent = "Philadelphia Flyers" |
8,043 | <question>: If the record was 22-21-5, who was the opponent? <context>: CREATE TABLE table_27537870_6 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_27537870_6 WHERE record = "22-21-5" |
8,044 | <question>: If the opponent was @ Boston Bruins, what was the Location/Attendance? <context>: CREATE TABLE table_27537870_6 (location_attendance VARCHAR, opponent VARCHAR) | SELECT location_attendance FROM table_27537870_6 WHERE opponent = "@ Boston Bruins" |
8,045 | <question>: What day in February was the team 17-29-7? <context>: CREATE TABLE table_27539535_7 (february INTEGER, record VARCHAR) | SELECT MAX(february) FROM table_27539535_7 WHERE record = "17-29-7" |
8,046 | <question>: What was the teams record when they played the ottawa senators? <context>: CREATE TABLE table_27539535_7 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_27539535_7 WHERE opponent = "Ottawa Senators" |
8,047 | <question>: What was the team's rcord on february 1? <context>: CREATE TABLE table_27539535_7 (record VARCHAR, february VARCHAR) | SELECT record FROM table_27539535_7 WHERE february = 1 |
8,048 | <question>: What day in February did the team play the boston bruins? <context>: CREATE TABLE table_27539535_7 (february VARCHAR, opponent VARCHAR) | SELECT february FROM table_27539535_7 WHERE opponent = "Boston Bruins" |
8,049 | <question>: In what season did Pons Racing compete? <context>: CREATE TABLE table_27571406_1 (season VARCHAR, team_name VARCHAR) | SELECT season FROM table_27571406_1 WHERE team_name = "Pons Racing" |
8,050 | <question>: What's the f/laps count for the team with 8 podiums? <context>: CREATE TABLE table_27571406_1 (f_laps VARCHAR, podiums VARCHAR) | SELECT f_laps FROM table_27571406_1 WHERE podiums = 8 |
8,051 | <question>: What is the lowest stage when the yellow jersey is Ronan Pensec? <context>: CREATE TABLE table_275506_1 (stage INTEGER, yellow_jersey VARCHAR) | SELECT MIN(stage) FROM table_275506_1 WHERE yellow_jersey = "Ronan Pensec" |
8,052 | <question>: What is every yellow jersey entry for the distance 125? <context>: CREATE TABLE table_275506_1 (yellow_jersey VARCHAR, distance__km_ VARCHAR) | SELECT yellow_jersey FROM table_275506_1 WHERE distance__km_ = "125" |
8,053 | <question>: Who is every stage winner at the distance of 162.5? <context>: CREATE TABLE table_275506_1 (stage VARCHAR, distance__km_ VARCHAR) | SELECT stage AS winner FROM table_275506_1 WHERE distance__km_ = "162.5" |
8,054 | <question>: How many entries for start of stage occur in the year 2006? <context>: CREATE TABLE table_275506_1 (start_of_stage VARCHAR, year VARCHAR) | SELECT COUNT(start_of_stage) FROM table_275506_1 WHERE year = "2006" |
8,055 | <question>: How much power does dwzf have? <context>: CREATE TABLE table_27588823_2 (power__kw_ VARCHAR, callsign VARCHAR) | SELECT power__kw_ FROM table_27588823_2 WHERE callsign = "DWZF" |
8,056 | <question>: What is the branding for callsign dypv? <context>: CREATE TABLE table_27588823_2 (branding VARCHAR, callsign VARCHAR) | SELECT branding FROM table_27588823_2 WHERE callsign = "DYPV" |
8,057 | <question>: What is the branding for the station located in san jose del monte? <context>: CREATE TABLE table_27588823_2 (branding VARCHAR, location VARCHAR) | SELECT branding FROM table_27588823_2 WHERE location = "San Jose Del Monte" |
8,058 | <question>: How many call signs does the location masinloc, zambales have? <context>: CREATE TABLE table_27588823_2 (callsign VARCHAR, location VARCHAR) | SELECT COUNT(callsign) FROM table_27588823_2 WHERE location = "Masinloc, Zambales" |
8,059 | <question>: What is the frequency of the station located in polangui, albay? <context>: CREATE TABLE table_27588823_2 (frequency VARCHAR, location VARCHAR) | SELECT frequency FROM table_27588823_2 WHERE location = "Polangui, Albay" |
8,060 | <question>: If the mountains classification is Mathias Frank, and the General Classification is Fabian Cancellara, what is the Points classification? <context>: CREATE TABLE table_27573848_18 (points_classification VARCHAR, general_classification VARCHAR, mountains_classification VARCHAR) | SELECT points_classification FROM table_27573848_18 WHERE general_classification = "Fabian Cancellara" AND mountains_classification = "Mathias Frank" |
8,061 | <question>: If the stage is smaller than 5.0, and the points classification is by Marco Marcato, who is the General classification by? <context>: CREATE TABLE table_27573848_18 (general_classification VARCHAR, points_classification VARCHAR, stage VARCHAR) | SELECT general_classification FROM table_27573848_18 WHERE points_classification = "Marco Marcato" AND stage < 5.0 |
8,062 | <question>: How many different people had a General Classification on Stage 5? <context>: CREATE TABLE table_27573848_18 (general_classification VARCHAR, stage VARCHAR) | SELECT COUNT(general_classification) FROM table_27573848_18 WHERE stage = 5 |
8,063 | <question>: How many times was Robert Gesink a winner? <context>: CREATE TABLE table_27573848_18 (mountains_classification VARCHAR, winner VARCHAR) | SELECT COUNT(mountains_classification) FROM table_27573848_18 WHERE winner = "Robert Gesink" |
8,064 | <question>: If the winner is Rui Costa, who made the mountains classification? <context>: CREATE TABLE table_27573848_18 (mountains_classification VARCHAR, winner VARCHAR) | SELECT mountains_classification FROM table_27573848_18 WHERE winner = "Rui Costa" |
8,065 | <question>: What was Team 1 Junior's points? <context>: CREATE TABLE table_27603010_14 (points VARCHAR, team__number1 VARCHAR) | SELECT points FROM table_27603010_14 WHERE team__number1 = "Junior" |
8,066 | <question>: What was the 2nd leg score if the team 1 is Deportivo Pasto? <context>: CREATE TABLE table_27603010_14 (team__number1 VARCHAR) | SELECT 2 AS nd_leg FROM table_27603010_14 WHERE team__number1 = "Deportivo Pasto" |
8,067 | <question>: Who was the team 2 that played against team 1 Atlético la Sabana? <context>: CREATE TABLE table_27603010_14 (team__number2 VARCHAR, team__number1 VARCHAR) | SELECT team__number2 FROM table_27603010_14 WHERE team__number1 = "Atlético La Sabana" |
8,068 | <question>: How many new points were earned by rk 26? <context>: CREATE TABLE table_27615896_18 (new_points VARCHAR, rk VARCHAR) | SELECT new_points FROM table_27615896_18 WHERE rk = 26 |
8,069 | <question>: How many points were won where new points was 1680? <context>: CREATE TABLE table_27615896_18 (points INTEGER, new_points VARCHAR) | SELECT MIN(points) AS won FROM table_27615896_18 WHERE new_points = 1680 |
8,070 | <question>: What are the total points for sd 15? <context>: CREATE TABLE table_27615896_18 (points INTEGER, sd VARCHAR) | SELECT MAX(points) FROM table_27615896_18 WHERE sd = 15 |
8,071 | <question>: What is the total number of sd listings where the status is quarterfinals lost to Novak Djokovic [1]? <context>: CREATE TABLE table_27615896_18 (sd VARCHAR, status VARCHAR) | SELECT COUNT(sd) FROM table_27615896_18 WHERE status = "Quarterfinals lost to Novak Djokovic [1]" |
8,072 | <question>: How many different counts for won points does Flavia Pennetta have? <context>: CREATE TABLE table_27615896_20 (points VARCHAR, player VARCHAR) | SELECT COUNT(points) AS won FROM table_27615896_20 WHERE player = "Flavia Pennetta" |
8,073 | <question>: What's Kaia Kanepi's Sd? <context>: CREATE TABLE table_27615896_20 (sd INTEGER, player VARCHAR) | SELECT MIN(sd) FROM table_27615896_20 WHERE player = "Kaia Kanepi" |
8,074 | <question>: What's the status of the player with 3041 points? <context>: CREATE TABLE table_27615896_20 (status VARCHAR, points VARCHAR) | SELECT status FROM table_27615896_20 WHERE points = 3041 |
8,075 | <question>: When 62 is the number in series who is the writer? <context>: CREATE TABLE table_27657925_1 (written_by VARCHAR, no_in_series VARCHAR) | SELECT written_by FROM table_27657925_1 WHERE no_in_series = "62" |
8,076 | <question>: When steve holland is the writer what is the air date? <context>: CREATE TABLE table_27657925_1 (original_air_date VARCHAR, written_by VARCHAR) | SELECT original_air_date FROM table_27657925_1 WHERE written_by = "Steve Holland" |
8,077 | <question>: When 231 is the production code what is the title? <context>: CREATE TABLE table_27657925_1 (title VARCHAR, production_code VARCHAR) | SELECT title FROM table_27657925_1 WHERE production_code = "231" |
8,078 | <question>: When there are 5.2 million u.s. viewers how many numbers in series are there? <context>: CREATE TABLE table_27657925_1 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR) | SELECT COUNT(no_in_series) FROM table_27657925_1 WHERE us_viewers__millions_ = "5.2" |
8,079 | <question>: Name the total number of outgoing manager for villarreal b <context>: CREATE TABLE table_27666856_3 (outgoing_manager VARCHAR, team VARCHAR) | SELECT COUNT(outgoing_manager) FROM table_27666856_3 WHERE team = "Villarreal B" |
8,080 | <question>: Name the date of appointment for 26 may 2011 <context>: CREATE TABLE table_27666856_3 (date_of_appointment VARCHAR, date_of_vacancy VARCHAR) | SELECT COUNT(date_of_appointment) FROM table_27666856_3 WHERE date_of_vacancy = "26 May 2011" |
8,081 | <question>: Name the outgoing manager for esteban vigo <context>: CREATE TABLE table_27666856_3 (outgoing_manager VARCHAR, replaced_by VARCHAR) | SELECT COUNT(outgoing_manager) FROM table_27666856_3 WHERE replaced_by = "Esteban Vigo" |
8,082 | <question>: Name the number of team for 19th position <context>: CREATE TABLE table_27666856_3 (team VARCHAR, position_in_table VARCHAR) | SELECT COUNT(team) FROM table_27666856_3 WHERE position_in_table = "19th" |
8,083 | <question>: Name the manner of departure for luis enrique <context>: CREATE TABLE table_27666856_3 (manner_of_departure VARCHAR, outgoing_manager VARCHAR) | SELECT manner_of_departure FROM table_27666856_3 WHERE outgoing_manager = "Luis Enrique" |
8,084 | <question>: Who was the opponent in the Women's Cup 0 0 where Brancão Couto 0 is the scorer? <context>: CREATE TABLE table_27654988_1 (opponent VARCHAR, competition VARCHAR, scorers VARCHAR) | SELECT opponent FROM table_27654988_1 WHERE competition = "Women's Cup 0 0" AND scorers = "Brancão Couto 0" |
8,085 | <question>: What is the result of the game where the opponent is Innsbrucker Kilmarnock CSK VVS Samara? <context>: CREATE TABLE table_27654988_1 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_27654988_1 WHERE opponent = "Innsbrucker Kilmarnock CSK VVS Samara" |
8,086 | <question>: How many seasons was the opponent Vamos Idaliou Krka Novo Mesto SV Neulengbach? <context>: CREATE TABLE table_27654988_1 (season VARCHAR, opponent VARCHAR) | SELECT COUNT(season) FROM table_27654988_1 WHERE opponent = "Vamos Idaliou Krka Novo Mesto SV Neulengbach" |
8,087 | <question>: Who were the scorers in the game with final score 0–4 7–1 0–3? <context>: CREATE TABLE table_27654988_1 (scorers VARCHAR, result VARCHAR) | SELECT scorers FROM table_27654988_1 WHERE result = "0–4 7–1 0–3" |
8,088 | <question>: Name the kickoff for rheinstadion <context>: CREATE TABLE table_27690037_2 (kickoff VARCHAR, game_site VARCHAR) | SELECT kickoff FROM table_27690037_2 WHERE game_site = "Rheinstadion" |
8,089 | <question>: Who had the high point total on october 20? <context>: CREATE TABLE table_27700530_5 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_27700530_5 WHERE date = "October 20" |
8,090 | <question>: What was the series record at after game 3? <context>: CREATE TABLE table_27700530_15 (series VARCHAR, game VARCHAR) | SELECT series FROM table_27700530_15 WHERE game = 3 |
8,091 | <question>: What was the location and attendance for game 2? <context>: CREATE TABLE table_27700530_15 (location_attendance VARCHAR, game VARCHAR) | SELECT location_attendance FROM table_27700530_15 WHERE game = 2 |
8,092 | <question>: Who had the most points and how many did they have on April 22? <context>: CREATE TABLE table_27700530_15 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_27700530_15 WHERE date = "April 22" |
8,093 | <question>: Who had the most assists and how many did they have on October 5? <context>: CREATE TABLE table_27704187_2 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_27704187_2 WHERE date = "October 5" |
8,094 | <question>: List all artists with choreographer Marcos Aguirre and a simple rating. <context>: CREATE TABLE table_27711947_1 (artist VARCHAR, choreographer VARCHAR, rating VARCHAR) | SELECT artist FROM table_27711947_1 WHERE choreographer = "Marcos Aguirre" AND rating = "Simple" |
8,095 | <question>: How many times was the overall attendance 17807? <context>: CREATE TABLE table_2771237_1 (overall_attendance VARCHAR, average_attendance VARCHAR) | SELECT COUNT(overall_attendance) FROM table_2771237_1 WHERE average_attendance = 17807 |
8,096 | <question>: What is the overall attendance in the places where the average attendance was 17148? <context>: CREATE TABLE table_2771237_1 (overall_attendance VARCHAR, average_attendance VARCHAR) | SELECT overall_attendance FROM table_2771237_1 WHERE average_attendance = 17148 |
8,097 | <question>: What season was the average attendance is 16043? <context>: CREATE TABLE table_2771237_1 (season VARCHAR, average_attendance VARCHAR) | SELECT season FROM table_2771237_1 WHERE average_attendance = 16043 |
8,098 | <question>: What was the overall record in the season where average attendance was 16720? <context>: CREATE TABLE table_2771237_1 (overall_record VARCHAR, average_attendance VARCHAR) | SELECT overall_record FROM table_2771237_1 WHERE average_attendance = 16720 |
8,099 | <question>: Name the high assists for march 14 <context>: CREATE TABLE table_27712451_9 (high_assists VARCHAR, date VARCHAR) | SELECT high_assists FROM table_27712451_9 WHERE date = "March 14" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.