text
stringlengths 114
1.06k
|
---|
### question: Who was the artist who worked on the stories published in 1966? ### answer: SELECT artist FROM table_23963073_1 WHERE date_of_publication = 1966 ### context: CREATE TABLE table_23963073_1 (artist VARCHAR, date_of_publication VARCHAR)
|
### question: When did series 6 start? ### answer: SELECT start_date FROM table_24057191_2 WHERE series = 6 ### context: CREATE TABLE table_24057191_2 (start_date VARCHAR, series VARCHAR)
|
### question: What series had an average of 3.72 million people watching it? ### answer: SELECT MAX(series) FROM table_24057191_2 WHERE average_viewers__millions_ = "3.72" ### context: CREATE TABLE table_24057191_2 (series INTEGER, average_viewers__millions_ VARCHAR)
|
### question: How many different end dates are there for the series seen by 4.2 million people? ### answer: SELECT COUNT(end_date) FROM table_24057191_2 WHERE average_viewers__millions_ = "4.2" ### context: CREATE TABLE table_24057191_2 (end_date VARCHAR, average_viewers__millions_ VARCHAR)
|
### question: What percentage of the EU's population lives in the country with a population density of 110.8 people per square kilometer? ### answer: SELECT population__percentage_of_eu FROM table_24066938_1 WHERE pop_density_people_km_2 = "110.8" ### context: CREATE TABLE table_24066938_1 (population__percentage_of_eu VARCHAR, pop_density_people_km_2 VARCHAR)
|
### question: What is the area of Austria's territory in square kilometers? ### answer: SELECT area_km_2 FROM table_24066938_1 WHERE member_state = "Austria" ### context: CREATE TABLE table_24066938_1 (area_km_2 VARCHAR, member_state VARCHAR)
|
### question: How many inhabitants does Sweden have per square kilometer? ### answer: SELECT pop_density_people_km_2 FROM table_24066938_1 WHERE member_state = "Sweden" ### context: CREATE TABLE table_24066938_1 (pop_density_people_km_2 VARCHAR, member_state VARCHAR)
|
### question: How many measurements of the Czech Republic's population density are recorded in this table? ### answer: SELECT COUNT(pop_density_people_km_2) FROM table_24066938_1 WHERE member_state = "Czech Republic" ### context: CREATE TABLE table_24066938_1 (pop_density_people_km_2 VARCHAR, member_state VARCHAR)
|
### question: Name the number of number in the season for 11 ### answer: SELECT COUNT(no_in_series) FROM table_2409041_4 WHERE no_in_season = 11 ### context: CREATE TABLE table_2409041_4 (no_in_series VARCHAR, no_in_season VARCHAR)
|
### question: Name the number of airdates for 14 ### answer: SELECT COUNT(original_air_date) FROM table_2409041_4 WHERE no_in_season = 14 ### context: CREATE TABLE table_2409041_4 (original_air_date VARCHAR, no_in_season VARCHAR)
|
### question: Name the title for 446913 ### answer: SELECT title FROM table_2409041_4 WHERE production_code = 446913 ### context: CREATE TABLE table_2409041_4 (title VARCHAR, production_code VARCHAR)
|
### question: What was the Kentucky Oaks attendance the year the Belmont Stakes had 64,949 attendance? ### answer: SELECT kentucky_oaks FROM table_24089503_1 WHERE belmont_stakes = "64,949" ### context: CREATE TABLE table_24089503_1 (kentucky_oaks VARCHAR, belmont_stakes VARCHAR)
|
### question: What was the attendance at the Travers Stakes in 1977? ### answer: SELECT travers_stakes FROM table_24089503_1 WHERE year = 1977 ### context: CREATE TABLE table_24089503_1 (travers_stakes VARCHAR, year VARCHAR)
|
### question: What was the Breeder's Cup Friday attendance for the year the Breeder's Cup Saturday had 52,987? ### answer: SELECT breeders_cup_friday FROM table_24089503_1 WHERE breeders_cup_saturday = "52,987" ### context: CREATE TABLE table_24089503_1 (breeders_cup_friday VARCHAR, breeders_cup_saturday VARCHAR)
|
### question: In what edition is Ungur's opponent David Nalbandian? ### answer: SELECT edition FROM table_24099476_8 WHERE opponent = "David Nalbandian" ### context: CREATE TABLE table_24099476_8 (edition VARCHAR, opponent VARCHAR)
|
### question: When was the win/lose lose and the round a play-off? ### answer: SELECT date FROM table_24099476_8 WHERE win_lose = "Lose" AND round = "Play-off" ### context: CREATE TABLE table_24099476_8 (date VARCHAR, win_lose VARCHAR, round VARCHAR)
|
### question: In what round did he play against Sergiy Stakhovsky? ### answer: SELECT round FROM table_24099476_8 WHERE opponent = "Sergiy Stakhovsky" ### context: CREATE TABLE table_24099476_8 (round VARCHAR, opponent VARCHAR)
|
### question: What municipality had 754 votes for coakley? ### answer: SELECT municipality FROM table_24115349_6 WHERE coakley_votes = 754 ### context: CREATE TABLE table_24115349_6 (municipality VARCHAR, coakley_votes VARCHAR)
|
### question: How many votes for brown in the place that had 84.1% for coakley? ### answer: SELECT MAX(brown_votes) FROM table_24115349_6 WHERE coakley__percentage = "84.1%" ### context: CREATE TABLE table_24115349_6 (brown_votes INTEGER, coakley__percentage VARCHAR)
|
### question: What was the turnout percentage in the place that had 44.6% vote for brown? ### answer: SELECT turnout__percentage FROM table_24115349_6 WHERE brown__percentage = "44.6%" ### context: CREATE TABLE table_24115349_6 (turnout__percentage VARCHAR, brown__percentage VARCHAR)
|
### question: Name the finish top 10 being 8 ### answer: SELECT MAX(finish) FROM table_24119784_1 WHERE top_10 = 8 ### context: CREATE TABLE table_24119784_1 (finish INTEGER, top_10 VARCHAR)
|
### question: What is the finish associated with a 3-2 vote? ### answer: SELECT finish FROM table_24122653_2 WHERE vote = "3-2" ### context: CREATE TABLE table_24122653_2 (finish VARCHAR, vote VARCHAR)
|
### question: What is the reward for the elimination of Peterson? ### answer: SELECT reward FROM table_24122653_2 WHERE eliminated = "Peterson" ### context: CREATE TABLE table_24122653_2 (reward VARCHAR, eliminated VARCHAR)
|
### question: What is the number of finishes associated with an elimination of Adriana? ### answer: SELECT COUNT(finish) FROM table_24122653_2 WHERE eliminated = "Adriana" ### context: CREATE TABLE table_24122653_2 (finish VARCHAR, eliminated VARCHAR)
|
### question: What was the total number of episodes that had a 3-1 vote? ### answer: SELECT COUNT(episode) FROM table_24122653_2 WHERE vote = "3-1" ### context: CREATE TABLE table_24122653_2 (episode VARCHAR, vote VARCHAR)
|
### question: When troy is the regular season winner what is the conference tournament? ### answer: SELECT conference AS Tournament FROM table_24160890_3 WHERE regular_season_winner = "Troy" ### context: CREATE TABLE table_24160890_3 (conference VARCHAR, regular_season_winner VARCHAR)
|
### question: When madison square garden ( new york city, new york ) is the tournament venue (city) what is the conference tournament? ### answer: SELECT conference AS Tournament FROM table_24160890_3 WHERE tournament_venue__city_ = "Madison Square Garden ( New York City, New York )" ### context: CREATE TABLE table_24160890_3 (conference VARCHAR, tournament_venue__city_ VARCHAR)
|
### question: When Cincinnati is the tournament winner how many regular season winners are there? ### answer: SELECT COUNT(regular_season_winner) FROM table_24160890_3 WHERE tournament_winner = "Cincinnati" ### context: CREATE TABLE table_24160890_3 (regular_season_winner VARCHAR, tournament_winner VARCHAR)
|
### question: When western michigan is the tournament winner how many conferences are there? ### answer: SELECT COUNT(conference) FROM table_24160890_3 WHERE tournament_winner = "Western Michigan" ### context: CREATE TABLE table_24160890_3 (conference VARCHAR, tournament_winner VARCHAR)
|
### question: When was successor George E. Harris (R) seated? ### answer: SELECT date_successor_seated FROM table_2417345_4 WHERE successor = "George E. Harris (R)" ### context: CREATE TABLE table_2417345_4 (date_successor_seated VARCHAR, successor VARCHAR)
|
### question: What was the reason for change when the successor was William Milnes, Jr. (C)? ### answer: SELECT reason_for_change FROM table_2417345_4 WHERE successor = "William Milnes, Jr. (C)" ### context: CREATE TABLE table_2417345_4 (reason_for_change VARCHAR, successor VARCHAR)
|
### question: When were the successor/s seated for Ohio 10th? ### answer: SELECT date_successor_seated FROM table_2417345_4 WHERE district = "Ohio 10th" ### context: CREATE TABLE table_2417345_4 (date_successor_seated VARCHAR, district VARCHAR)
|
### question: Name the reason for change when George W. Greene (D) was the vacator. ### answer: SELECT reason_for_change FROM table_2417345_4 WHERE vacator = "George W. Greene (D)" ### context: CREATE TABLE table_2417345_4 (reason_for_change VARCHAR, vacator VARCHAR)
|
### question: When was successor David Atwood (R) seated? ### answer: SELECT date_successor_seated FROM table_2417345_4 WHERE successor = "David Atwood (R)" ### context: CREATE TABLE table_2417345_4 (date_successor_seated VARCHAR, successor VARCHAR)
|
### question: What district was the successor seated in March 28, 1878? ### answer: SELECT district FROM table_2417390_4 WHERE date_successor_seated = "March 28, 1878" ### context: CREATE TABLE table_2417390_4 (district VARCHAR, date_successor_seated VARCHAR)
|
### question: Who was the vacator for the district of Nebraska at-large? ### answer: SELECT vacator FROM table_2417390_4 WHERE district = "Nebraska At-large" ### context: CREATE TABLE table_2417390_4 (vacator VARCHAR, district VARCHAR)
|
### question: Name the enrollment with cougars ### answer: SELECT enrollment FROM table_24216139_2 WHERE nickname = "Cougars" ### context: CREATE TABLE table_24216139_2 (enrollment VARCHAR, nickname VARCHAR)
|
### question: Name the least enrollment for field hockey, men's swimming ### answer: SELECT MIN(enrollment) FROM table_24216139_2 WHERE sport = "Field hockey, men's swimming" ### context: CREATE TABLE table_24216139_2 (enrollment INTEGER, sport VARCHAR)
|
### question: Name the school that is cougars ### answer: SELECT institution FROM table_24216139_2 WHERE nickname = "Cougars" ### context: CREATE TABLE table_24216139_2 (institution VARCHAR, nickname VARCHAR)
|
### question: Name the institution for purple aces ### answer: SELECT institution FROM table_24216139_2 WHERE nickname = "Purple Aces" ### context: CREATE TABLE table_24216139_2 (institution VARCHAR, nickname VARCHAR)
|
### question: Name the title that was directed by john terlesky ### answer: SELECT title FROM table_24222929_2 WHERE directed_by = "John Terlesky" ### context: CREATE TABLE table_24222929_2 (title VARCHAR, directed_by VARCHAR)
|
### question: Name the total number of titles for 3x5655 ### answer: SELECT COUNT(title) FROM table_24222929_2 WHERE production_code = "3X5655" ### context: CREATE TABLE table_24222929_2 (title VARCHAR, production_code VARCHAR)
|
### question: What date did the episode that had 1.023 million u.s. viewers originally air? ### answer: SELECT original_air_date FROM table_24223834_3 WHERE us_viewers__in_millions_ = "1.023" ### context: CREATE TABLE table_24223834_3 (original_air_date VARCHAR, us_viewers__in_millions_ VARCHAR)
|
### question: What episode number in the series had 2.528 million u.s. viewers? ### answer: SELECT no_in_series FROM table_24223834_3 WHERE us_viewers__in_millions_ = "2.528" ### context: CREATE TABLE table_24223834_3 (no_in_series VARCHAR, us_viewers__in_millions_ VARCHAR)
|
### question: How many million U.S. viewers watched the episode that Daniel H. Forer directed? ### answer: SELECT us_viewers__in_millions_ FROM table_24223834_3 WHERE directed_by = "Daniel H. Forer" ### context: CREATE TABLE table_24223834_3 (us_viewers__in_millions_ VARCHAR, directed_by VARCHAR)
|
### question: How may overall episodes had the title "this is what they want"? ### answer: SELECT COUNT(overall) FROM table_24223834_3 WHERE title = "This is What They Want" ### context: CREATE TABLE table_24223834_3 (overall VARCHAR, title VARCHAR)
|
### question: Who was the Tournament Winner when UNC Wilmington won the regular season? ### answer: SELECT tournament_winner FROM table_24248450_3 WHERE regular_season_winner = "UNC Wilmington" ### context: CREATE TABLE table_24248450_3 (tournament_winner VARCHAR, regular_season_winner VARCHAR)
|
### question: Who won the tournament for the Atlantic Sun Conference? ### answer: SELECT tournament_winner FROM table_24248450_3 WHERE conference = "Atlantic Sun conference" ### context: CREATE TABLE table_24248450_3 (tournament_winner VARCHAR, conference VARCHAR)
|
### question: What is the tournament called for the Big Sky Conference? ### answer: SELECT conference AS Tournament FROM table_24248450_3 WHERE conference = "Big Sky conference" ### context: CREATE TABLE table_24248450_3 (conference VARCHAR)
|
### question: How many men had an event 1 medley score of 6 (16.6m)? ### answer: SELECT COUNT(event_2_truck_pull) FROM table_24302700_2 WHERE event_1_medley = "6 (16.6m)" ### context: CREATE TABLE table_24302700_2 (event_2_truck_pull VARCHAR, event_1_medley VARCHAR)
|
### question: How many men from the Ukraine? ### answer: SELECT COUNT(event_4_carwalk) FROM table_24302700_2 WHERE nationality = "Ukraine" ### context: CREATE TABLE table_24302700_2 (event_4_carwalk VARCHAR, nationality VARCHAR)
|
### question: What was the result(s) in the event 3 squatlift for the man from the United states with a result of 1 (42.66s) in the event 2 truck pull? ### answer: SELECT event_3_squat_lift FROM table_24302700_2 WHERE nationality = "United States" AND event_2_truck_pull = "1 (42.66s)" ### context: CREATE TABLE table_24302700_2 (event_3_squat_lift VARCHAR, nationality VARCHAR, event_2_truck_pull VARCHAR)
|
### question: What was the result in the event 1 medley for the man with a 4 (6 in 31.85s) in the event 3 squat lift? ### answer: SELECT event_1_medley FROM table_24302700_2 WHERE event_3_squat_lift = "4 (6 in 31.85s)" ### context: CREATE TABLE table_24302700_2 (event_1_medley VARCHAR, event_3_squat_lift VARCHAR)
|
### question: Name the least series number ### answer: SELECT MIN(series_no) FROM table_2430014_9 ### context: CREATE TABLE table_2430014_9 (series_no INTEGER)
|
### question: Which county has a membership of 1, a franchise type of corporation and a borough of Ennis? ### answer: SELECT county FROM table_24329520_8 WHERE members = 1 AND franchise_type = "Corporation" AND borough = "Ennis" ### context: CREATE TABLE table_24329520_8 (county VARCHAR, borough VARCHAR, members VARCHAR, franchise_type VARCHAR)
|
### question: What is the number of members that have boroughs of Bandon Bridge? ### answer: SELECT COUNT(members) FROM table_24329520_8 WHERE borough = "Bandon Bridge" ### context: CREATE TABLE table_24329520_8 (members VARCHAR, borough VARCHAR)
|
### question: What is the number of voters in 1800 that have boroughs named Drogheda? ### answer: SELECT COUNT(voters_in_1800) FROM table_24329520_8 WHERE borough = "Drogheda" ### context: CREATE TABLE table_24329520_8 (voters_in_1800 VARCHAR, borough VARCHAR)
|
### question: While the original toyko/seoul tour cast included thomas hettrick, who was in the original 1st us tour cast? ### answer: SELECT original_1st_us_tour_cast FROM table_24353141_1 WHERE original_tokyo___seoul_tour_cast = "Thomas Hettrick" ### context: CREATE TABLE table_24353141_1 (original_1st_us_tour_cast VARCHAR, original_tokyo___seoul_tour_cast VARCHAR)
|
### question: How many original 3rd us tour cast were there while the original uk cast was alyssa dipalma? ### answer: SELECT COUNT(original_3rd_us_tour_cast) FROM table_24353141_1 WHERE original_uk_cast = "Alyssa DiPalma" ### context: CREATE TABLE table_24353141_1 (original_3rd_us_tour_cast VARCHAR, original_uk_cast VARCHAR)
|
### question: While the original 1st us tour cast included nicci claspell, who was in the original tokyo/seoul tour cast? ### answer: SELECT original_tokyo___seoul_tour_cast FROM table_24353141_1 WHERE original_1st_us_tour_cast = "Nicci Claspell" ### context: CREATE TABLE table_24353141_1 (original_tokyo___seoul_tour_cast VARCHAR, original_1st_us_tour_cast VARCHAR)
|
### question: Who was in the original berkley cast while stark sands was in the original broadway cast? ### answer: SELECT original_berkeley_cast FROM table_24353141_1 WHERE original_broadway_cast = "Stark Sands" ### context: CREATE TABLE table_24353141_1 (original_berkeley_cast VARCHAR, original_broadway_cast VARCHAR)
|
### question: Who was in the original broadway cast while jake epstein was in the original 1st us tour cast? ### answer: SELECT original_broadway_cast FROM table_24353141_1 WHERE original_1st_us_tour_cast = "Jake Epstein" ### context: CREATE TABLE table_24353141_1 (original_broadway_cast VARCHAR, original_1st_us_tour_cast VARCHAR)
|
### question: Who was in the original 3rd us tour cast while scott j. campbell was in the original 1st us tour cast? ### answer: SELECT original_3rd_us_tour_cast FROM table_24353141_1 WHERE original_1st_us_tour_cast = "Scott J. Campbell" ### context: CREATE TABLE table_24353141_1 (original_3rd_us_tour_cast VARCHAR, original_1st_us_tour_cast VARCHAR)
|
### question: What is the highest cable ranking? ### answer: SELECT MAX(cable_rank) FROM table_24399615_6 ### context: CREATE TABLE table_24399615_6 (cable_rank INTEGER)
|
### question: What is the status of player Philipp Kohlschreiber? ### answer: SELECT status FROM table_24431348_18 WHERE player = "Philipp Kohlschreiber" ### context: CREATE TABLE table_24431348_18 (status VARCHAR, player VARCHAR)
|
### question: What the total amount of points won during seed 25? ### answer: SELECT COUNT(points) AS won FROM table_24431348_18 WHERE seed = 25 ### context: CREATE TABLE table_24431348_18 (points VARCHAR, seed VARCHAR)
|
### question: What was the status of rank 20? ### answer: SELECT status FROM table_24431348_18 WHERE rank = 20 ### context: CREATE TABLE table_24431348_18 (status VARCHAR, rank VARCHAR)
|
### question: List the total number of defense points for caroline wozniacki. ### answer: SELECT points AS defending FROM table_24431264_17 WHERE player = "Caroline Wozniacki" ### context: CREATE TABLE table_24431264_17 (points VARCHAR, player VARCHAR)
|
### question: List the total defensive points for marion bartoli. ### answer: SELECT points AS defending FROM table_24431264_17 WHERE player = "Marion Bartoli" ### context: CREATE TABLE table_24431264_17 (points VARCHAR, player VARCHAR)
|
### question: What is the highest points won when the player is aravane rezaï? ### answer: SELECT MAX(points) AS won FROM table_24431348_20 WHERE player = "Aravane Rezaï" ### context: CREATE TABLE table_24431348_20 (points INTEGER, player VARCHAR)
|
### question: How many times is the new points 2690? ### answer: SELECT COUNT(status) FROM table_24431348_20 WHERE new_points = 2690 ### context: CREATE TABLE table_24431348_20 (status VARCHAR, new_points VARCHAR)
|
### question: List the players with 1285 new points? ### answer: SELECT player FROM table_24431264_18 WHERE new_points = 1285 ### context: CREATE TABLE table_24431264_18 (player VARCHAR, new_points VARCHAR)
|
### question: How many defending points did radek štěpánek have? ### answer: SELECT MAX(points) AS defending FROM table_24431264_18 WHERE player = "Radek Štěpánek" ### context: CREATE TABLE table_24431264_18 (points INTEGER, player VARCHAR)
|
### question: List the rank of the player that left the tournament due to right foot injury ### answer: SELECT COUNT(rank) FROM table_24431264_18 WHERE withdrew_due_to = "right foot injury" ### context: CREATE TABLE table_24431264_18 (rank VARCHAR, withdrew_due_to VARCHAR)
|
### question: List the total number of defensive points for radek štěpánek? ### answer: SELECT MIN(points) AS defending FROM table_24431264_18 WHERE player = "Radek Štěpánek" ### context: CREATE TABLE table_24431264_18 (points INTEGER, player VARCHAR)
|
### question: List the rank of the player that left due to right wrist surgery? ### answer: SELECT rank FROM table_24431264_18 WHERE withdrew_due_to = "right wrist surgery" ### context: CREATE TABLE table_24431264_18 (rank VARCHAR, withdrew_due_to VARCHAR)
|
### question: Name the awardees for best special effects ### answer: SELECT awardee_s_ FROM table_24446718_3 WHERE name_of_award = "Best Special Effects" ### context: CREATE TABLE table_24446718_3 (awardee_s_ VARCHAR, name_of_award VARCHAR)
|
### question: Name the total number of awardees for best screenplay ### answer: SELECT COUNT(awardee_s_) FROM table_24446718_3 WHERE name_of_award = "Best Screenplay" ### context: CREATE TABLE table_24446718_3 (awardee_s_ VARCHAR, name_of_award VARCHAR)
|
### question: Name the name of award for marathi ### answer: SELECT name_of_award FROM table_24446718_3 WHERE language = "Marathi" ### context: CREATE TABLE table_24446718_3 (name_of_award VARCHAR, language VARCHAR)
|
### question: Name the awardee for tingya ### answer: SELECT awardee_s_ FROM table_24446718_3 WHERE name_of_film = "Tingya" ### context: CREATE TABLE table_24446718_3 (awardee_s_ VARCHAR, name_of_film VARCHAR)
|
### question: Name the language for b. ajith kumar ### answer: SELECT language FROM table_24446718_3 WHERE awardee_s_ = "B. Ajith Kumar" ### context: CREATE TABLE table_24446718_3 (language VARCHAR, awardee_s_ VARCHAR)
|
### question: What game date was the game at AOL Arena? ### answer: SELECT date FROM table_24453847_2 WHERE game_site = "AOL Arena" ### context: CREATE TABLE table_24453847_2 (date VARCHAR, game_site VARCHAR)
|
### question: What was the Rhein Fire team record on week 8? ### answer: SELECT team_record FROM table_24453847_2 WHERE week = 8 ### context: CREATE TABLE table_24453847_2 (team_record VARCHAR, week VARCHAR)
|
### question: Name the circuit for france and portugal ### answer: SELECT circuit FROM table_2446333_2 WHERE main_winner = "France" AND country = "Portugal" ### context: CREATE TABLE table_2446333_2 (circuit VARCHAR, main_winner VARCHAR, country VARCHAR)
|
### question: Name the date for sprint winner mexico ### answer: SELECT date FROM table_2446333_2 WHERE sprint_winner = "Mexico" ### context: CREATE TABLE table_2446333_2 (date VARCHAR, sprint_winner VARCHAR)
|
### question: Name the date for eastern creek raceway ### answer: SELECT date FROM table_2446333_2 WHERE circuit = "Eastern Creek Raceway" ### context: CREATE TABLE table_2446333_2 (date VARCHAR, circuit VARCHAR)
|
### question: Name the circuit for united arab emirates ### answer: SELECT circuit FROM table_2446333_2 WHERE country = "United Arab Emirates" ### context: CREATE TABLE table_2446333_2 (circuit VARCHAR, country VARCHAR)
|
### question: Name the total number of date for 10 ### answer: SELECT COUNT(date) FROM table_2446333_2 WHERE round = 10 ### context: CREATE TABLE table_2446333_2 (date VARCHAR, round VARCHAR)
|
### question: What is the number of the first game? ### answer: SELECT MIN(game) FROM table_24464253_1 ### context: CREATE TABLE table_24464253_1 (game INTEGER)
|
### question: Against what opponent did the Wildcats have a record of 5-4? ### answer: SELECT opponent FROM table_24464253_1 WHERE record = "5-4" ### context: CREATE TABLE table_24464253_1 (opponent VARCHAR, record VARCHAR)
|
### question: How many pa were blank ends 7 and 5? ### answer: SELECT COUNT(pa) FROM table_24475186_2 WHERE blank_ends = 7 AND l = 5 ### context: CREATE TABLE table_24475186_2 (pa VARCHAR, blank_ends VARCHAR, l VARCHAR)
|
### question: Who is the conductor on the Multisonic label? ### answer: SELECT conductor FROM table_24521345_1 WHERE record_label = "Multisonic" ### context: CREATE TABLE table_24521345_1 (conductor VARCHAR, record_label VARCHAR)
|
### question: Who is the conductor for Rusalka? ### answer: SELECT conductor FROM table_24521345_1 WHERE work_title = "Rusalka" ### context: CREATE TABLE table_24521345_1 (conductor VARCHAR, work_title VARCHAR)
|
### question: Who composed the work conducted by jaroslav Vogel? ### answer: SELECT composer FROM table_24521345_1 WHERE conductor = "Jaroslav Vogel" ### context: CREATE TABLE table_24521345_1 (composer VARCHAR, conductor VARCHAR)
|
### question: What is the title of the episode with production code 406? ### answer: SELECT title FROM table_2453243_5 WHERE production_code = "406" ### context: CREATE TABLE table_2453243_5 (title VARCHAR, production_code VARCHAR)
|
### question: Who write episode number 48 in the series? ### answer: SELECT written_by FROM table_2453243_5 WHERE no_in_series = "48" ### context: CREATE TABLE table_2453243_5 (written_by VARCHAR, no_in_series VARCHAR)
|
### question: Name the most goals for 1972 – 1975, 1976 – 1982 ### answer: SELECT MAX(goals¹) FROM table_24565004_19 WHERE period = "1972 – 1975, 1976 – 1982" ### context: CREATE TABLE table_24565004_19 (goals¹ INTEGER, period VARCHAR)
|
### question: Name the period for uruguay ### answer: SELECT period FROM table_24565004_19 WHERE nationality² = "Uruguay" ### context: CREATE TABLE table_24565004_19 (period VARCHAR, nationality² VARCHAR)
|
### question: Name the position for 1980 – 1987 ### answer: SELECT position FROM table_24565004_19 WHERE period = "1980 – 1987" ### context: CREATE TABLE table_24565004_19 (position VARCHAR, period VARCHAR)
|
### question: which position did pierre bajoc play? ### answer: SELECT position FROM table_24565004_3 WHERE name = "Pierre Bajoc" ### context: CREATE TABLE table_24565004_3 (position VARCHAR, name VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.