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