Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
59,400 | <question>: On which week was the opponent the oakland raiders? <context>: CREATE TABLE table_name_91 (week INTEGER, opponent VARCHAR) | SELECT SUM(week) FROM table_name_91 WHERE opponent = "oakland raiders" |
59,401 | <question>: What was the attendance at the game where the opponent was the denver broncos? <context>: CREATE TABLE table_name_85 (attendance VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_85 WHERE opponent = "denver broncos" |
59,402 | <question>: How many people are enrolled in platteville, wi? <context>: CREATE TABLE table_name_38 (enrollment INTEGER, location VARCHAR) | SELECT SUM(enrollment) FROM table_name_38 WHERE location = "platteville, wi" |
59,403 | <question>: What is the team nickname of university of wisconsin-platteville? <context>: CREATE TABLE table_name_93 (nickname VARCHAR, institution VARCHAR) | SELECT nickname FROM table_name_93 WHERE institution = "university of wisconsin-platteville" |
59,404 | <question>: What is To Par, when Place is 3? <context>: CREATE TABLE table_name_43 (to_par VARCHAR, place VARCHAR) | SELECT to_par FROM table_name_43 WHERE place = "3" |
59,405 | <question>: What is Country, when Player is "Rives McBee"? <context>: CREATE TABLE table_name_89 (country VARCHAR, player VARCHAR) | SELECT country FROM table_name_89 WHERE player = "rives mcbee" |
59,406 | <question>: What is Place, when Player is "Tony Lema"? <context>: CREATE TABLE table_name_93 (place VARCHAR, player VARCHAR) | SELECT place FROM table_name_93 WHERE player = "tony lema" |
59,407 | <question>: What is Score, when To Par is "E"? <context>: CREATE TABLE table_name_8 (score VARCHAR, to_par VARCHAR) | SELECT score FROM table_name_8 WHERE to_par = "e" |
59,408 | <question>: What is Country, when Score is 71-71-69=211? <context>: CREATE TABLE table_name_26 (country VARCHAR, score VARCHAR) | SELECT country FROM table_name_26 WHERE score = 71 - 71 - 69 = 211 |
59,409 | <question>: What is Country, when Score is 71-74-70=215? <context>: CREATE TABLE table_name_13 (country VARCHAR, score VARCHAR) | SELECT country FROM table_name_13 WHERE score = 71 - 74 - 70 = 215 |
59,410 | <question>: what is the lost when played is less than 42? <context>: CREATE TABLE table_name_71 (lost INTEGER, played INTEGER) | SELECT SUM(lost) FROM table_name_71 WHERE played < 42 |
59,411 | <question>: what is the goal difference when drawn is more than 11, goals against is less than 63, goals for is less than 87 and lost is more than 16? <context>: CREATE TABLE table_name_82 (goal_difference VARCHAR, lost VARCHAR, goals_for VARCHAR, drawn VARCHAR, goals_against VARCHAR) | SELECT goal_difference FROM table_name_82 WHERE drawn > 11 AND goals_against < 63 AND goals_for < 87 AND lost > 16 |
59,412 | <question>: how many times is lost less than 7 and the position 2? <context>: CREATE TABLE table_name_10 (goals_for VARCHAR, lost VARCHAR, position VARCHAR) | SELECT COUNT(goals_for) FROM table_name_10 WHERE lost < 7 AND position = 2 |
59,413 | <question>: what is the position when the points 1 is less than 36, goals for is less than 40 and drawn is less than 9? <context>: CREATE TABLE table_name_31 (position INTEGER, drawn VARCHAR, points_1 VARCHAR, goals_for VARCHAR) | SELECT SUM(position) FROM table_name_31 WHERE points_1 < 36 AND goals_for < 40 AND drawn < 9 |
59,414 | <question>: How many executions in persona have a number with known sentences of 2 (1543–1544)? <context>: CREATE TABLE table_name_92 (executions_in_persona VARCHAR, number_of_autos_da_fé_with_known_sentences VARCHAR) | SELECT executions_in_persona FROM table_name_92 WHERE number_of_autos_da_fé_with_known_sentences = "2 (1543–1544)" |
59,415 | <question>: How many were penanced when the number with known sentences was 71 (1600–1773)? <context>: CREATE TABLE table_name_3 (penanced VARCHAR, number_of_autos_da_fé_with_known_sentences VARCHAR) | SELECT penanced FROM table_name_3 WHERE number_of_autos_da_fé_with_known_sentences = "71 (1600–1773)" |
59,416 | <question>: How many were penanced for a total of 7666? <context>: CREATE TABLE table_name_48 (penanced VARCHAR, total VARCHAR) | SELECT penanced FROM table_name_48 WHERE total = "7666" |
59,417 | <question>: How man executions in effigie took place at the Lamego tribunal? <context>: CREATE TABLE table_name_26 (executions_in_effigie VARCHAR, tribunal VARCHAR) | SELECT executions_in_effigie FROM table_name_26 WHERE tribunal = "lamego" |
59,418 | <question>: How many were penanced with 0 executions in effigie for a total of 21? <context>: CREATE TABLE table_name_65 (penanced VARCHAR, executions_in_effigie VARCHAR, total VARCHAR) | SELECT penanced FROM table_name_65 WHERE executions_in_effigie = "0" AND total = "21" |
59,419 | <question>: Which tribunal had a total of 4167? <context>: CREATE TABLE table_name_34 (tribunal VARCHAR, total VARCHAR) | SELECT tribunal FROM table_name_34 WHERE total = "4167" |
59,420 | <question>: What is the Opponent of the Game on October 20? <context>: CREATE TABLE table_name_50 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_50 WHERE date = "october 20" |
59,421 | <question>: Which institution is located in Reading, PA? <context>: CREATE TABLE table_name_44 (institution VARCHAR, location VARCHAR) | SELECT institution FROM table_name_44 WHERE location = "reading, pa" |
59,422 | <question>: What was the nick name for the school established in 1958? <context>: CREATE TABLE table_name_71 (nickname VARCHAR, established VARCHAR) | SELECT nickname FROM table_name_71 WHERE established = 1958 |
59,423 | <question>: When the grid is under 5 and justin wilson is driving for the team mi-jack conquest racing, what's the highest number of laps driven? <context>: CREATE TABLE table_name_65 (laps INTEGER, grid VARCHAR, team VARCHAR, driver VARCHAR) | SELECT MAX(laps) FROM table_name_65 WHERE team = "mi-jack conquest racing" AND driver = "justin wilson" AND grid < 5 |
59,424 | <question>: When the team is newman/haas racing and the grid size is 3, what's the time/retired? <context>: CREATE TABLE table_name_8 (time_retired VARCHAR, team VARCHAR, grid VARCHAR) | SELECT time_retired FROM table_name_8 WHERE team = "newman/haas racing" AND grid = 3 |
59,425 | <question>: What tournament took place on Ground A with 8 rounds? <context>: CREATE TABLE table_name_80 (tournament VARCHAR, ground VARCHAR, round VARCHAR) | SELECT tournament FROM table_name_80 WHERE ground = "a" AND round = "8" |
59,426 | <question>: What series had the title rank of various? <context>: CREATE TABLE table_name_20 (series VARCHAR, title_rank VARCHAR) | SELECT series FROM table_name_20 WHERE title_rank = "various" |
59,427 | <question>: What is the title rank of the actor who played the character of arthur hastings during series 1-8, 13? <context>: CREATE TABLE table_name_7 (title_rank VARCHAR, series VARCHAR, character VARCHAR) | SELECT title_rank FROM table_name_7 WHERE series = "1-8, 13" AND character = "arthur hastings" |
59,428 | <question>: What is the title rank of the actor who played the character of arthur hastings during series 1-8, 13? <context>: CREATE TABLE table_name_24 (title_rank VARCHAR, series VARCHAR, character VARCHAR) | SELECT title_rank FROM table_name_24 WHERE series = "1-8, 13" AND character = "arthur hastings" |
59,429 | <question>: What is the title rank of actor pauline moran? <context>: CREATE TABLE table_name_93 (title_rank VARCHAR, actor VARCHAR) | SELECT title_rank FROM table_name_93 WHERE actor = "pauline moran" |
59,430 | <question>: Which character had a title rank of various? <context>: CREATE TABLE table_name_4 (character VARCHAR, title_rank VARCHAR) | SELECT character FROM table_name_4 WHERE title_rank = "various" |
59,431 | <question>: Who had the highest rebounds of the game with a game number higher than 65 on March 28? <context>: CREATE TABLE table_name_73 (high_rebounds VARCHAR, game VARCHAR, date VARCHAR) | SELECT high_rebounds FROM table_name_73 WHERE game > 65 AND date = "march 28" |
59,432 | <question>: WHAT DATE HAD A GAME SMALLER THAN 58, AND FROM BOSTON? <context>: CREATE TABLE table_name_57 (date VARCHAR, game VARCHAR, team VARCHAR) | SELECT date FROM table_name_57 WHERE game < 58 AND team = "boston" |
59,433 | <question>: Original airdate for #6 with 1.246 viewers? <context>: CREATE TABLE table_name_73 (original_airdate VARCHAR, nightly_rank VARCHAR, viewers__millions_ VARCHAR) | SELECT original_airdate FROM table_name_73 WHERE nightly_rank = "#6" AND viewers__millions_ = 1.246 |
59,434 | <question>: Rank for viewers larger than 1.244? <context>: CREATE TABLE table_name_21 (nightly_rank VARCHAR, viewers__millions_ INTEGER) | SELECT nightly_rank FROM table_name_21 WHERE viewers__millions_ > 1.244 |
59,435 | <question>: How many weeks had a Result of w 20–6? <context>: CREATE TABLE table_name_24 (week INTEGER, result VARCHAR) | SELECT SUM(week) FROM table_name_24 WHERE result = "w 20–6" |
59,436 | <question>: Which Opponent has an Attendance of bye? <context>: CREATE TABLE table_name_76 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_76 WHERE attendance = "bye" |
59,437 | <question>: WHAT IS THE FLAPS WITH PODIUMS OF 24 AND RACES BIGGER THAN 143? <context>: CREATE TABLE table_name_2 (flaps INTEGER, podiums VARCHAR, races VARCHAR) | SELECT MAX(flaps) FROM table_name_2 WHERE podiums = 24 AND races > 143 |
59,438 | <question>: WHAT ARE THE RACES WHEN FLAPS ARE ZERO, PODIUMS ARE LARGER THAN 0, SEASON IS 2008, AND POLE SMALLER THAN 1? <context>: CREATE TABLE table_name_93 (races INTEGER, pole VARCHAR, season VARCHAR, flaps VARCHAR, podiums VARCHAR) | SELECT SUM(races) FROM table_name_93 WHERE flaps = 0 AND podiums > 0 AND season = "2008" AND pole < 1 |
59,439 | <question>: WHAT ARE THE RACES WITH A POLE SMALLER THAN 2 IN 2007? <context>: CREATE TABLE table_name_93 (races INTEGER, pole VARCHAR, season VARCHAR) | SELECT MIN(races) FROM table_name_93 WHERE pole < 2 AND season = "2007" |
59,440 | <question>: WHAT ARE THE RACES FOR 2010 WITH FLAPS LARGER THAN 6? <context>: CREATE TABLE table_name_27 (races INTEGER, season VARCHAR, flaps VARCHAR) | SELECT MAX(races) FROM table_name_27 WHERE season = "2010" AND flaps > 6 |
59,441 | <question>: What T20 Match has a total of 23? <context>: CREATE TABLE table_name_18 (t20_matches VARCHAR, total VARCHAR) | SELECT t20_matches FROM table_name_18 WHERE total = "23" |
59,442 | <question>: What FC Match was played in Darlington? <context>: CREATE TABLE table_name_52 (fc_matches VARCHAR, location VARCHAR) | SELECT fc_matches FROM table_name_52 WHERE location = "darlington" |
59,443 | <question>: What T20 match was played in 1979? <context>: CREATE TABLE table_name_33 (t20_matches VARCHAR, year VARCHAR) | SELECT t20_matches FROM table_name_33 WHERE year = "1979" |
59,444 | <question>: Which FC match has a total of 24? <context>: CREATE TABLE table_name_18 (fc_matches VARCHAR, total VARCHAR) | SELECT fc_matches FROM table_name_18 WHERE total = "24" |
59,445 | <question>: Where was the FC match with a score of 12 played? <context>: CREATE TABLE table_name_45 (location VARCHAR, fc_matches VARCHAR) | SELECT location FROM table_name_45 WHERE fc_matches = "12" |
59,446 | <question>: How many oricon's have a romaji title of rakuen -memorial tracks- (maxi-single)? <context>: CREATE TABLE table_name_13 (oricon VARCHAR, romaji_title VARCHAR) | SELECT COUNT(oricon) FROM table_name_13 WHERE romaji_title = "rakuen -memorial tracks- (maxi-single)" |
59,447 | <question>: What reference is used with the title アイシテル? <context>: CREATE TABLE table_name_39 (reference VARCHAR, japanese_title VARCHAR) | SELECT reference FROM table_name_39 WHERE japanese_title = "アイシテル" |
59,448 | <question>: What is the reference for the romani title da.i.su.ki? <context>: CREATE TABLE table_name_4 (reference VARCHAR, romaji_title VARCHAR) | SELECT reference FROM table_name_4 WHERE romaji_title = "da.i.su.ki" |
59,449 | <question>: What title to the japanese give the romani title ashita wa ashita no kaze ga fuku? <context>: CREATE TABLE table_name_88 (japanese_title VARCHAR, romaji_title VARCHAR) | SELECT japanese_title FROM table_name_88 WHERE romaji_title = "ashita wa ashita no kaze ga fuku" |
59,450 | <question>: Which club was founded after 1998? <context>: CREATE TABLE table_name_49 (club VARCHAR, founded INTEGER) | SELECT club FROM table_name_49 WHERE founded > 1998 |
59,451 | <question>: Which Tries has a Goal smaller than 0? <context>: CREATE TABLE table_name_5 (tries INTEGER, goals INTEGER) | SELECT MIN(tries) FROM table_name_5 WHERE goals < 0 |
59,452 | <question>: What was the issue price for the Trumpeter Swan set? <context>: CREATE TABLE table_name_44 (issue_price VARCHAR, theme VARCHAR) | SELECT issue_price FROM table_name_44 WHERE theme = "trumpeter swan" |
59,453 | <question>: Who was the artist with a mintage of 40,000 and an issue price of $45.95? <context>: CREATE TABLE table_name_87 (artist VARCHAR, mintage VARCHAR, issue_price VARCHAR) | SELECT artist FROM table_name_87 WHERE mintage = "40,000" AND issue_price = "45.95" |
59,454 | <question>: What is the highest number of points a player got during the game on May 25? <context>: CREATE TABLE table_name_85 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_name_85 WHERE date = "may 25" |
59,455 | <question>: What is the position of the player who has ongoing first-team goals and currently plays for the Aston Villa club? <context>: CREATE TABLE table_name_79 (position VARCHAR, first_team_goals VARCHAR, current_club VARCHAR) | SELECT position FROM table_name_79 WHERE first_team_goals = "ongoing" AND current_club = "aston villa" |
59,456 | <question>: Who is the player who has had 7 first team appearances? <context>: CREATE TABLE table_name_79 (player VARCHAR, first_team_appearances VARCHAR) | SELECT player FROM table_name_79 WHERE first_team_appearances = "7" |
59,457 | <question>: What is the name of the club that has ongoing first-team appearances, a midfielder, and whose player is Samir Carruthers? <context>: CREATE TABLE table_name_28 (current_club VARCHAR, player VARCHAR, first_team_appearances VARCHAR, position VARCHAR) | SELECT current_club FROM table_name_28 WHERE first_team_appearances = "ongoing" AND position = "midfielder" AND player = "samir carruthers" |
59,458 | <question>: How many first-team goals does the team have whose player is Samir Carruthers? <context>: CREATE TABLE table_name_73 (first_team_goals VARCHAR, player VARCHAR) | SELECT first_team_goals FROM table_name_73 WHERE player = "samir carruthers" |
59,459 | <question>: What position has ongoing first-team appearances, Graham Burke for a player, and whose club is Aston Villa? <context>: CREATE TABLE table_name_47 (position VARCHAR, player VARCHAR, first_team_appearances VARCHAR, current_club VARCHAR) | SELECT position FROM table_name_47 WHERE first_team_appearances = "ongoing" AND current_club = "aston villa" AND player = "graham burke" |
59,460 | <question>: Which position has had 7 first-team appearances? <context>: CREATE TABLE table_name_7 (position VARCHAR, first_team_appearances VARCHAR) | SELECT position FROM table_name_7 WHERE first_team_appearances = "7" |
59,461 | <question>: What was the theme when the issue price was $508.95? <context>: CREATE TABLE table_name_72 (theme VARCHAR, issue_price VARCHAR) | SELECT theme FROM table_name_72 WHERE issue_price = "$508.95" |
59,462 | <question>: What's the mintage when the theme was year of the rabbit? <context>: CREATE TABLE table_name_18 (mintage VARCHAR, theme VARCHAR) | SELECT mintage FROM table_name_18 WHERE theme = "year of the rabbit" |
59,463 | <question>: What year was the year of the pig theme? <context>: CREATE TABLE table_name_43 (year VARCHAR, theme VARCHAR) | SELECT year FROM table_name_43 WHERE theme = "year of the pig" |
59,464 | <question>: Who was the artist for the year of the snake? <context>: CREATE TABLE table_name_76 (artist VARCHAR, theme VARCHAR) | SELECT artist FROM table_name_76 WHERE theme = "year of the snake" |
59,465 | <question>: What is the total Frequency MHz Port Charlotte, Florida, which has an ERP W larger than 10, has? <context>: CREATE TABLE table_name_41 (frequency_mhz VARCHAR, city_of_license VARCHAR, erp_w VARCHAR) | SELECT COUNT(frequency_mhz) FROM table_name_41 WHERE city_of_license = "port charlotte, florida" AND erp_w > 10 |
59,466 | <question>: What is the call sign for the translator with an ERP W larger than 10? <context>: CREATE TABLE table_name_38 (call_sign VARCHAR, erp_w INTEGER) | SELECT call_sign FROM table_name_38 WHERE erp_w > 10 |
59,467 | <question>: What is the highest ERP W of the translator with a call sign of w284av? <context>: CREATE TABLE table_name_94 (erp_w INTEGER, call_sign VARCHAR) | SELECT MAX(erp_w) FROM table_name_94 WHERE call_sign = "w284av" |
59,468 | <question>: How big was the crowd of the Home team of Collingwood? <context>: CREATE TABLE table_name_92 (crowd INTEGER, home_team VARCHAR) | SELECT MAX(crowd) FROM table_name_92 WHERE home_team = "collingwood" |
59,469 | <question>: What was the away team when the home team was south melbourne? <context>: CREATE TABLE table_name_85 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_85 WHERE home_team = "south melbourne" |
59,470 | <question>: Who was recruited from Calgary? <context>: CREATE TABLE table_name_34 (player VARCHAR, college VARCHAR) | SELECT player FROM table_name_34 WHERE college = "calgary" |
59,471 | <question>: What number of wins was ranked higher than 5? <context>: CREATE TABLE table_name_43 (wins INTEGER, rank INTEGER) | SELECT SUM(wins) FROM table_name_43 WHERE rank > 5 |
59,472 | <question>: What rank is Miller Barber with more than 11 wins? <context>: CREATE TABLE table_name_35 (rank VARCHAR, wins VARCHAR, player VARCHAR) | SELECT rank FROM table_name_35 WHERE wins > 11 AND player = "miller barber" |
59,473 | <question>: What was the venue when Collingwood was the home team? <context>: CREATE TABLE table_name_34 (venue VARCHAR, home_team VARCHAR) | SELECT venue FROM table_name_34 WHERE home_team = "collingwood" |
59,474 | <question>: What was the largest crowd at vfl park? <context>: CREATE TABLE table_name_75 (crowd INTEGER, venue VARCHAR) | SELECT MAX(crowd) FROM table_name_75 WHERE venue = "vfl park" |
59,475 | <question>: How many people were at the game where the home team was South Melbourne? <context>: CREATE TABLE table_name_16 (crowd VARCHAR, home_team VARCHAR) | SELECT crowd FROM table_name_16 WHERE home_team = "south melbourne" |
59,476 | <question>: What was the score when the away team was Footscray? <context>: CREATE TABLE table_name_25 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_25 WHERE away_team = "footscray" |
59,477 | <question>: What was the score when the away team was Collingwood? <context>: CREATE TABLE table_name_56 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_56 WHERE away_team = "collingwood" |
59,478 | <question>: What was the home team that played at Corio Oval? <context>: CREATE TABLE table_name_15 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_15 WHERE venue = "corio oval" |
59,479 | <question>: How many goals were scored on November 22, 1994? <context>: CREATE TABLE table_name_13 (goal INTEGER, date VARCHAR) | SELECT SUM(goal) FROM table_name_13 WHERE date = "november 22, 1994" |
59,480 | <question>: What was the result of the game with 9 goals? <context>: CREATE TABLE table_name_49 (result VARCHAR, goal VARCHAR) | SELECT result FROM table_name_49 WHERE goal = 9 |
59,481 | <question>: What is the highest number supporting prohibition in British Columbia when the percent opposing is more than 10.8, the percent supporting is less than 72.2, number against is less than 4,756? <context>: CREATE TABLE table_name_43 (for_prohibition INTEGER, against_prohibition VARCHAR, jurisdiction VARCHAR, percent_against VARCHAR, percent_for VARCHAR) | SELECT MAX(for_prohibition) FROM table_name_43 WHERE percent_against > 10.8 AND percent_for < 72.2 AND jurisdiction = "british columbia" AND against_prohibition < 4 OFFSET 756 |
59,482 | <question>: what is the apparent magnitude of the constellation sculptor <context>: CREATE TABLE table_name_24 (apparent_magnitude VARCHAR, constellation VARCHAR) | SELECT COUNT(apparent_magnitude) FROM table_name_24 WHERE constellation = "sculptor" |
59,483 | <question>: What is the Right ascension of the Object type spiral galaxy that has an Apparent magnitude larger that 12.2 <context>: CREATE TABLE table_name_15 (right_ascension___j2000__ VARCHAR, object_type VARCHAR, apparent_magnitude VARCHAR) | SELECT right_ascension___j2000__ FROM table_name_15 WHERE object_type = "spiral galaxy" AND apparent_magnitude > 12.2 |
59,484 | <question>: Which Constellation has an Apparent magnitude larger that 7.7, and an NGC number of 7777 <context>: CREATE TABLE table_name_60 (constellation VARCHAR, apparent_magnitude VARCHAR, ngc_number VARCHAR) | SELECT constellation FROM table_name_60 WHERE apparent_magnitude > 7.7 AND ngc_number = 7777 |
59,485 | <question>: What is the name of the Chassis of Diver Maria Teresa de Filippis in round 1? <context>: CREATE TABLE table_name_62 (chassis VARCHAR, rounds VARCHAR, driver VARCHAR) | SELECT chassis FROM table_name_62 WHERE rounds = "1" AND driver = "maria teresa de filippis" |
59,486 | <question>: How many yards have a Player of james macpherson, and a Long smaller than 1? <context>: CREATE TABLE table_name_6 (yards VARCHAR, player VARCHAR, long VARCHAR) | SELECT COUNT(yards) FROM table_name_6 WHERE player = "james macpherson" AND long < 1 |
59,487 | <question>: What is the lowest car with more than 122 yards? <context>: CREATE TABLE table_name_37 (car INTEGER, yards INTEGER) | SELECT MIN(car) FROM table_name_37 WHERE yards > 122 |
59,488 | <question>: What round was Ryan Thang drafted in? <context>: CREATE TABLE table_name_7 (round INTEGER, player VARCHAR) | SELECT MIN(round) FROM table_name_7 WHERE player = "ryan thang" |
59,489 | <question>: How many laps did Jeff Burton have when he drove car with a # over 9 and more than 118 points? <context>: CREATE TABLE table_name_82 (laps VARCHAR, points VARCHAR, car__number VARCHAR, driver VARCHAR) | SELECT COUNT(laps) FROM table_name_82 WHERE car__number > 9 AND driver = "jeff burton" AND points > 118 |
59,490 | <question>: What was Scott Riggs points when he had more than 400 laps? <context>: CREATE TABLE table_name_28 (points INTEGER, driver VARCHAR, laps VARCHAR) | SELECT SUM(points) FROM table_name_28 WHERE driver = "scott riggs" AND laps > 400 |
59,491 | <question>: Who drove the dodge with a car # less than 5? <context>: CREATE TABLE table_name_42 (driver VARCHAR, car__number VARCHAR, make VARCHAR) | SELECT driver FROM table_name_42 WHERE car__number < 5 AND make = "dodge" |
59,492 | <question>: What team had a high rebound of perkins (9) and a game smaller than 78? <context>: CREATE TABLE table_name_39 (team VARCHAR, game VARCHAR, high_rebounds VARCHAR) | SELECT team FROM table_name_39 WHERE game < 78 AND high_rebounds = "perkins (9)" |
59,493 | <question>: What date were the high assists rondo (5) and the high rebounds rondo (10)? <context>: CREATE TABLE table_name_18 (date VARCHAR, high_assists VARCHAR, high_rebounds VARCHAR) | SELECT date FROM table_name_18 WHERE high_assists = "rondo (5)" AND high_rebounds = "rondo (10)" |
59,494 | <question>: On the date April 11, what were the high points? <context>: CREATE TABLE table_name_71 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_name_71 WHERE date = "april 11" |
59,495 | <question>: On the date April 11, what is the total game number? <context>: CREATE TABLE table_name_4 (game VARCHAR, date VARCHAR) | SELECT COUNT(game) FROM table_name_4 WHERE date = "april 11" |
59,496 | <question>: What actor made a film in 1957? <context>: CREATE TABLE table_name_30 (name VARCHAR, year VARCHAR) | SELECT name FROM table_name_30 WHERE year = "1957" |
59,497 | <question>: What year did Miyoshi Umeki make a film? <context>: CREATE TABLE table_name_25 (year VARCHAR, name VARCHAR) | SELECT year FROM table_name_25 WHERE name = "miyoshi umeki" |
59,498 | <question>: What status has a role? <context>: CREATE TABLE table_name_56 (status VARCHAR) | SELECT status FROM table_name_56 WHERE "role" = "role" |
59,499 | <question>: what is the earliest round for nominee david mundy? <context>: CREATE TABLE table_name_98 (round INTEGER, nominees VARCHAR) | SELECT MIN(round) FROM table_name_98 WHERE nominees = "david mundy" |