Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
51,500 | <question>: What is the longest weeks on top when the Artist was Bruce Hornsby and the Range? <context>: CREATE TABLE table_name_74 (weeks_on_top INTEGER, artist VARCHAR) | SELECT MAX(weeks_on_top) FROM table_name_74 WHERE artist = "bruce hornsby and the range" |
51,501 | <question>: What is the Score of the game with arsenal win 4-2 on penalties in the attendance field? <context>: CREATE TABLE table_name_85 (score VARCHAR, attendance VARCHAR) | SELECT score FROM table_name_85 WHERE attendance = "arsenal win 4-2 on penalties" |
51,502 | <question>: What team was the Away team when the Tie no was 3? <context>: CREATE TABLE table_name_55 (away_team VARCHAR, tie_no VARCHAR) | SELECT away_team FROM table_name_55 WHERE tie_no = "3" |
51,503 | <question>: What is the Tie no when the away team was Burnley? <context>: CREATE TABLE table_name_30 (tie_no VARCHAR, away_team VARCHAR) | SELECT tie_no FROM table_name_30 WHERE away_team = "burnley" |
51,504 | <question>: What shows for Tie no when Sheffield United was the Away team? <context>: CREATE TABLE table_name_10 (tie_no VARCHAR, away_team VARCHAR) | SELECT tie_no FROM table_name_10 WHERE away_team = "sheffield united" |
51,505 | <question>: What rank is the team with 1 silver, 3 bronze and a total of less than 8 medals? <context>: CREATE TABLE table_name_32 (rank VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR) | SELECT COUNT(rank) FROM table_name_32 WHERE silver = 1 AND bronze = 3 AND total < 8 |
51,506 | <question>: Which Balls Faced has a Average of 39.13 and Runs Scored larger than 313? <context>: CREATE TABLE table_name_4 (balls_faced INTEGER, average VARCHAR, runs_scored VARCHAR) | SELECT SUM(balls_faced) FROM table_name_4 WHERE average = 39.13 AND runs_scored > 313 |
51,507 | <question>: Which Name has an Average of 48.83? <context>: CREATE TABLE table_name_47 (name VARCHAR, average VARCHAR) | SELECT name FROM table_name_47 WHERE average = 48.83 |
51,508 | <question>: Which average S.R. has an Average of 39.13 and Balls Faced larger than 318? <context>: CREATE TABLE table_name_48 (sr INTEGER, average VARCHAR, balls_faced VARCHAR) | SELECT AVG(sr) FROM table_name_48 WHERE average = 39.13 AND balls_faced > 318 |
51,509 | <question>: How many S.R. that has Runs Scored of 161 and an Average larger than 26.83? <context>: CREATE TABLE table_name_35 (sr INTEGER, runs_scored VARCHAR, average VARCHAR) | SELECT SUM(sr) FROM table_name_35 WHERE runs_scored = 161 AND average > 26.83 |
51,510 | <question>: What kind of Average has a S.R. of 70.43 and Runs Scored smaller than 293? <context>: CREATE TABLE table_name_74 (average INTEGER, sr VARCHAR, runs_scored VARCHAR) | SELECT MIN(average) FROM table_name_74 WHERE sr = 70.43 AND runs_scored < 293 |
51,511 | <question>: Which S.R. has a Average smaller than 23.63 Runs Scored of 49? <context>: CREATE TABLE table_name_46 (sr VARCHAR, average VARCHAR, runs_scored VARCHAR) | SELECT sr FROM table_name_46 WHERE average < 23.63 AND runs_scored = 49 |
51,512 | <question>: What is the Acquisition that has less than 22, in the 2002 season? <context>: CREATE TABLE table_name_41 (acquisition_via VARCHAR, number VARCHAR, season VARCHAR) | SELECT acquisition_via FROM table_name_41 WHERE number < 22 AND season = "2002" |
51,513 | <question>: What is the number of the acquisition of import in the 2002 season? <context>: CREATE TABLE table_name_19 (number VARCHAR, acquisition_via VARCHAR, season VARCHAR) | SELECT number FROM table_name_19 WHERE acquisition_via = "import" AND season = "2002" |
51,514 | <question>: What is the name from the 2002 season, and acquired via free agency? <context>: CREATE TABLE table_name_80 (name VARCHAR, season VARCHAR, acquisition_via VARCHAR) | SELECT name FROM table_name_80 WHERE season = "2002" AND acquisition_via = "free agency" |
51,515 | <question>: What is the name of the player acquired via import and larger than 22? <context>: CREATE TABLE table_name_55 (name VARCHAR, acquisition_via VARCHAR, number VARCHAR) | SELECT name FROM table_name_55 WHERE acquisition_via = "import" AND number > 22 |
51,516 | <question>: Who was on the prohibition ticket when Abraham J. Cuddeback was on the Greenback ticket? <context>: CREATE TABLE table_name_39 (prohibition_ticket VARCHAR, greenback_ticket VARCHAR) | SELECT prohibition_ticket FROM table_name_39 WHERE greenback_ticket = "abraham j. cuddeback" |
51,517 | <question>: Which office was Richard M. Griffin vying for on the Greenback ticket? <context>: CREATE TABLE table_name_97 (office VARCHAR, greenback_ticket VARCHAR) | SELECT office FROM table_name_97 WHERE greenback_ticket = "richard m. griffin" |
51,518 | <question>: Who was on the Prohibition ticket when Thomas Armstrong ran on the Greenback ticket? <context>: CREATE TABLE table_name_73 (prohibition_ticket VARCHAR, greenback_ticket VARCHAR) | SELECT prohibition_ticket FROM table_name_73 WHERE greenback_ticket = "thomas armstrong" |
51,519 | <question>: Who was on the prohibition ticket when the Greenback ticket had Thomas Armstrong? <context>: CREATE TABLE table_name_76 (prohibition_ticket VARCHAR, greenback_ticket VARCHAR) | SELECT prohibition_ticket FROM table_name_76 WHERE greenback_ticket = "thomas armstrong" |
51,520 | <question>: Who was on the Republican ticket for the office of Inspector of state prisons? <context>: CREATE TABLE table_name_8 (republican_ticket VARCHAR, office VARCHAR) | SELECT republican_ticket FROM table_name_8 WHERE office = "inspector of state prisons" |
51,521 | <question>: What office did Henry Hagner run for on the prohibition ticket? <context>: CREATE TABLE table_name_31 (office VARCHAR, prohibition_ticket VARCHAR) | SELECT office FROM table_name_31 WHERE prohibition_ticket = "henry hagner" |
51,522 | <question>: What is the home of the team with a 16-8 record? <context>: CREATE TABLE table_name_81 (home VARCHAR, record VARCHAR) | SELECT home FROM table_name_81 WHERE record = "16-8" |
51,523 | <question>: What is the date of the game that ended with a score of 96-89? <context>: CREATE TABLE table_name_92 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_92 WHERE score = "96-89" |
51,524 | <question>: How many people went to the game with Indiana visiting? <context>: CREATE TABLE table_name_68 (attendance VARCHAR, visitor VARCHAR) | SELECT attendance FROM table_name_68 WHERE visitor = "indiana" |
51,525 | <question>: What is the date of the Cleveland home game with a 20-8 record? <context>: CREATE TABLE table_name_74 (date VARCHAR, home VARCHAR, record VARCHAR) | SELECT date FROM table_name_74 WHERE home = "cleveland" AND record = "20-8" |
51,526 | <question>: What is the score of the New Jersey home game? <context>: CREATE TABLE table_name_42 (score VARCHAR, home VARCHAR) | SELECT score FROM table_name_42 WHERE home = "new jersey" |
51,527 | <question>: How many people attended the game with a final score of 75-90? <context>: CREATE TABLE table_name_29 (attendance VARCHAR, score VARCHAR) | SELECT attendance FROM table_name_29 WHERE score = "75-90" |
51,528 | <question>: What is Mike Weir's To par? <context>: CREATE TABLE table_name_79 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_79 WHERE player = "mike weir" |
51,529 | <question>: From Country is Vijay Singh? <context>: CREATE TABLE table_name_48 (country VARCHAR, player VARCHAR) | SELECT country FROM table_name_48 WHERE player = "vijay singh" |
51,530 | <question>: What is the Player in T5 Place? <context>: CREATE TABLE table_name_71 (player VARCHAR, place VARCHAR) | SELECT player FROM table_name_71 WHERE place = "t5" |
51,531 | <question>: What is the Place of the Player with a Score of 73-73-65-73=284? <context>: CREATE TABLE table_name_32 (place VARCHAR, score VARCHAR) | SELECT place FROM table_name_32 WHERE score = 73 - 73 - 65 - 73 = 284 |
51,532 | <question>: Who was the Home captain that played at the venue Oval? <context>: CREATE TABLE table_name_13 (home_captain VARCHAR, venue VARCHAR) | SELECT home_captain FROM table_name_13 WHERE venue = "oval" |
51,533 | <question>: Who was the Away captain that played on 12,13,14 Jun 1902 which resulted in a draw? <context>: CREATE TABLE table_name_83 (away_captain VARCHAR, result VARCHAR, date VARCHAR) | SELECT away_captain FROM table_name_83 WHERE result = "draw" AND date = "12,13,14 jun 1902" |
51,534 | <question>: Who is the Away captain that played on 11,12,13 Aug 1902? <context>: CREATE TABLE table_name_95 (away_captain VARCHAR, date VARCHAR) | SELECT away_captain FROM table_name_95 WHERE date = "11,12,13 aug 1902" |
51,535 | <question>: What was the result of the game that was played on 29,30β31 May 1902? <context>: CREATE TABLE table_name_31 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_31 WHERE date = "29,30β31 may 1902" |
51,536 | <question>: What was the result of the game that was played on 3,4,5 Jul 1902? <context>: CREATE TABLE table_name_61 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_61 WHERE date = "3,4,5 jul 1902" |
51,537 | <question>: What is the number of ends lost when there are 15 blank ends, less than 14 stolen ends? <context>: CREATE TABLE table_name_67 (ends_lost VARCHAR, blank_ends VARCHAR, stolen_ends VARCHAR) | SELECT COUNT(ends_lost) FROM table_name_67 WHERE blank_ends = 15 AND stolen_ends < 14 |
51,538 | <question>: What is the number of blank ends when the stolen ends were 17 and Jennifer Jones was skipped with a more than 83 shot pct? <context>: CREATE TABLE table_name_57 (blank_ends VARCHAR, shot_pct VARCHAR, stolen_ends VARCHAR, skip VARCHAR) | SELECT COUNT(blank_ends) FROM table_name_57 WHERE stolen_ends = 17 AND skip = "jennifer jones" AND shot_pct > 83 |
51,539 | <question>: What is the average Wins, when F/Laps is greater than 1, and when Points is 80? <context>: CREATE TABLE table_name_18 (wins INTEGER, f_laps VARCHAR, points VARCHAR) | SELECT AVG(wins) FROM table_name_18 WHERE f_laps > 1 AND points = "80" |
51,540 | <question>: What is the sum of Races, when Podiums is less than 3, when Wins is 0, when Season is after 2001, and when Points is 32? <context>: CREATE TABLE table_name_82 (races INTEGER, points VARCHAR, season VARCHAR, podiums VARCHAR, wins VARCHAR) | SELECT SUM(races) FROM table_name_82 WHERE podiums < 3 AND wins = 0 AND season > 2001 AND points = "32" |
51,541 | <question>: What is the average Season, when F/Laps is 1, and when Poles is less than 0? <context>: CREATE TABLE table_name_14 (season INTEGER, f_laps VARCHAR, poles VARCHAR) | SELECT AVG(season) FROM table_name_14 WHERE f_laps = 1 AND poles < 0 |
51,542 | <question>: What is the highest Poles, when Series is Ginetta Championship, and when Season is before 2007? <context>: CREATE TABLE table_name_56 (poles INTEGER, series VARCHAR, season VARCHAR) | SELECT MAX(poles) FROM table_name_56 WHERE series = "ginetta championship" AND season < 2007 |
51,543 | <question>: What is the lowest wk 7 with a wk 3 value of 12, a wk 4 less than 9, and a wk 2 greater than 11? <context>: CREATE TABLE table_name_1 (wk_7 INTEGER, wk_2 VARCHAR, wk_3 VARCHAR, wk_4 VARCHAR) | SELECT MIN(wk_7) FROM table_name_1 WHERE wk_3 = 12 AND wk_4 < 9 AND wk_2 > 11 |
51,544 | <question>: What is the lowest wk 3 value with an n/r in wk 14, a wk 2 value of 7, and a wk 11 value greater than 18? <context>: CREATE TABLE table_name_11 (wk_3 INTEGER, wk_11 VARCHAR, wk_14 VARCHAR, wk_2 VARCHAR) | SELECT MIN(wk_3) FROM table_name_11 WHERE wk_14 = "n/r" AND wk_2 = 7 AND wk_11 > 18 |
51,545 | <question>: What is the Date for the actual title archie bunker's place? <context>: CREATE TABLE table_name_42 (date VARCHAR, actual_title VARCHAR) | SELECT date FROM table_name_42 WHERE actual_title = "archie bunker's place" |
51,546 | <question>: What is the name of the Artist for the Spoofed Title of the moron downer jr. show? <context>: CREATE TABLE table_name_13 (artist VARCHAR, spoofed_title VARCHAR) | SELECT artist FROM table_name_13 WHERE spoofed_title = "the moron downer jr. show" |
51,547 | <question>: What issue was the Spoofed Title of the crockford files in? <context>: CREATE TABLE table_name_50 (issue VARCHAR, spoofed_title VARCHAR) | SELECT issue FROM table_name_50 WHERE spoofed_title = "the crockford files" |
51,548 | <question>: What is the name of the writer for issue 224? <context>: CREATE TABLE table_name_21 (writer VARCHAR, issue VARCHAR) | SELECT writer FROM table_name_21 WHERE issue = 224 |
51,549 | <question>: What is the smallest amount of points had a lost number of 2 when the position was less than 1? <context>: CREATE TABLE table_name_67 (points INTEGER, lost VARCHAR, position VARCHAR) | SELECT MIN(points) FROM table_name_67 WHERE lost = 2 AND position < 1 |
51,550 | <question>: What is the mean number of against when the position is less than 1? <context>: CREATE TABLE table_name_92 (against INTEGER, position INTEGER) | SELECT AVG(against) FROM table_name_92 WHERE position < 1 |
51,551 | <question>: What is the mean number of played when there are less than 18 points and the position is less than 8? <context>: CREATE TABLE table_name_45 (played INTEGER, points VARCHAR, position VARCHAR) | SELECT AVG(played) FROM table_name_45 WHERE points < 18 AND position < 8 |
51,552 | <question>: What is the sum of lost when against is less than 37, drawn is more than 2, and played is more than 20? <context>: CREATE TABLE table_name_93 (lost VARCHAR, played VARCHAR, against VARCHAR, drawn VARCHAR) | SELECT COUNT(lost) FROM table_name_93 WHERE against < 37 AND drawn > 2 AND played > 20 |
51,553 | <question>: What is the total area of drakenstein and a population less than 251,262? <context>: CREATE TABLE table_name_32 (area__km_2__ VARCHAR, name VARCHAR, population__2011_ VARCHAR) | SELECT COUNT(area__km_2__) FROM table_name_32 WHERE name = "drakenstein" AND population__2011_ < 251 OFFSET 262 |
51,554 | <question>: For Stellenbosch, which has a population larger than 155,733, what is the average area? <context>: CREATE TABLE table_name_38 (area__km_2__ INTEGER, name VARCHAR, population__2011_ VARCHAR) | SELECT AVG(area__km_2__) FROM table_name_38 WHERE name = "stellenbosch" AND population__2011_ > 155 OFFSET 733 |
51,555 | <question>: What is the lowest population for the area that has a density of 36.7? <context>: CREATE TABLE table_name_89 (population__2011_ INTEGER, density__inhabitants_km_2__ VARCHAR) | SELECT MIN(population__2011_) FROM table_name_89 WHERE density__inhabitants_km_2__ = 36.7 |
51,556 | <question>: How many points against has team Cardiff had when there were less than 7 tries? <context>: CREATE TABLE table_name_97 (points_against VARCHAR, team VARCHAR, tries_against VARCHAR) | SELECT COUNT(points_against) FROM table_name_97 WHERE team = "cardiff" AND tries_against < 7 |
51,557 | <question>: What is the amount of fog where the rain is 1 109? <context>: CREATE TABLE table_name_50 (fog__days_year_ INTEGER, rain__mm_year_ VARCHAR) | SELECT SUM(fog__days_year_) FROM table_name_50 WHERE rain__mm_year_ = "1 109" |
51,558 | <question>: What is the amount of snow where the days for storms are 31? <context>: CREATE TABLE table_name_61 (snow__days_year_ INTEGER, storms__days_year_ VARCHAR) | SELECT SUM(snow__days_year_) FROM table_name_61 WHERE storms__days_year_ = 31 |
51,559 | <question>: What is the amount of snow where the sunshine is 1 633, and storms are lower than 29? <context>: CREATE TABLE table_name_23 (snow__days_year_ INTEGER, sunshine__hrs_year_ VARCHAR, storms__days_year_ VARCHAR) | SELECT AVG(snow__days_year_) FROM table_name_23 WHERE sunshine__hrs_year_ = "1 633" AND storms__days_year_ < 29 |
51,560 | <question>: What are the number of storms where fog is lower than 74, and sunshine is 2 668? <context>: CREATE TABLE table_name_74 (storms__days_year_ VARCHAR, fog__days_year_ VARCHAR, sunshine__hrs_year_ VARCHAR) | SELECT COUNT(storms__days_year_) FROM table_name_74 WHERE fog__days_year_ < 74 AND sunshine__hrs_year_ = "2 668" |
51,561 | <question>: Who is the away team for the tome team Leeds United, at the League Cup Competition? <context>: CREATE TABLE table_name_12 (away_team VARCHAR, home_team VARCHAR, competition VARCHAR) | SELECT away_team FROM table_name_12 WHERE home_team = "leeds united" AND competition = "league cup" |
51,562 | <question>: What chassis has patrick racing as an entrant, with a start greater than 6? <context>: CREATE TABLE table_name_69 (chassis VARCHAR, entrant VARCHAR, start VARCHAR) | SELECT chassis FROM table_name_69 WHERE entrant = "patrick racing" AND start > 6 |
51,563 | <question>: What is the average finish that has 24 as the start, with a year after 1987? <context>: CREATE TABLE table_name_89 (finish INTEGER, start VARCHAR, year VARCHAR) | SELECT AVG(finish) FROM table_name_89 WHERE start = 24 AND year > 1987 |
51,564 | <question>: What is the lowest year that has lola t93/00 as the chassis with a start leas than 14? <context>: CREATE TABLE table_name_59 (year INTEGER, chassis VARCHAR, start VARCHAR) | SELECT MIN(year) FROM table_name_59 WHERE chassis = "lola t93/00" AND start < 14 |
51,565 | <question>: What is the lowest finish that has a start greater than 27, with a year after 1985? <context>: CREATE TABLE table_name_62 (finish INTEGER, start VARCHAR, year VARCHAR) | SELECT MIN(finish) FROM table_name_62 WHERE start > 27 AND year > 1985 |
51,566 | <question>: What start has a ford cosworth dfx as the engine, a year later than 1981, and kraco enterprises as the entrant? <context>: CREATE TABLE table_name_22 (start VARCHAR, entrant VARCHAR, engine VARCHAR, year VARCHAR) | SELECT start FROM table_name_22 WHERE engine = "ford cosworth dfx" AND year > 1981 AND entrant = "kraco enterprises" |
51,567 | <question>: What is the Date, when the Team Record is 2-0? <context>: CREATE TABLE table_name_3 (date VARCHAR, team_record VARCHAR) | SELECT date FROM table_name_3 WHERE team_record = "2-0" |
51,568 | <question>: What is the Team Record, when the Result is l 0β24? <context>: CREATE TABLE table_name_52 (team_record VARCHAR, result VARCHAR) | SELECT team_record FROM table_name_52 WHERE result = "l 0β24" |
51,569 | <question>: What is Team Record, when Attendance is 16,151? <context>: CREATE TABLE table_name_34 (team_record VARCHAR, attendance VARCHAR) | SELECT team_record FROM table_name_34 WHERE attendance = "16,151" |
51,570 | <question>: What is the highest draw that has points greater than 4, with a match greater than 5? <context>: CREATE TABLE table_name_92 (draw INTEGER, points VARCHAR, match VARCHAR) | SELECT MAX(draw) FROM table_name_92 WHERE points > 4 AND match > 5 |
51,571 | <question>: What is the average draw that has a lost less than 4, gwardia bydgoszcz as the team, with a match greater than 5? <context>: CREATE TABLE table_name_14 (draw INTEGER, match VARCHAR, lost VARCHAR, team VARCHAR) | SELECT AVG(draw) FROM table_name_14 WHERE lost < 4 AND team = "gwardia bydgoszcz" AND match > 5 |
51,572 | <question>: What is the lowest match that has a lost greater than 3, and kolejarz rawicz as the team? <context>: CREATE TABLE table_name_99 (match INTEGER, lost VARCHAR, team VARCHAR) | SELECT MIN(match) FROM table_name_99 WHERE lost > 3 AND team = "kolejarz rawicz" |
51,573 | <question>: How many matches have 0 as the lost? <context>: CREATE TABLE table_name_32 (match VARCHAR, lost VARCHAR) | SELECT COUNT(match) FROM table_name_32 WHERE lost = 0 |
51,574 | <question>: What is the sum of Game with a Score that is w 104β90 (ot)? <context>: CREATE TABLE table_name_44 (game INTEGER, score VARCHAR) | SELECT SUM(game) FROM table_name_44 WHERE score = "w 104β90 (ot)" |
51,575 | <question>: What is the High rebounds of a Game with 56? <context>: CREATE TABLE table_name_70 (high_rebounds VARCHAR, game VARCHAR) | SELECT high_rebounds FROM table_name_70 WHERE game = 56 |
51,576 | <question>: What was the option from Italy with general television content, and the Cielo television service? <context>: CREATE TABLE table_name_84 (package_option VARCHAR, television_service VARCHAR, country VARCHAR, content VARCHAR) | SELECT package_option FROM table_name_84 WHERE country = "italy" AND content = "general television" AND television_service = "cielo" |
51,577 | <question>: What country has Tematico Content, and a package with sky TV and the Lei television service? <context>: CREATE TABLE table_name_91 (country VARCHAR, television_service VARCHAR, content VARCHAR, package_option VARCHAR) | SELECT country FROM table_name_91 WHERE content = "tematico" AND package_option = "sky tv" AND television_service = "lei" |
51,578 | <question>: What is the television service that has package with sky tv, and it in Italian English? <context>: CREATE TABLE table_name_30 (television_service VARCHAR, package_option VARCHAR, language VARCHAR) | SELECT television_service FROM table_name_30 WHERE package_option = "sky tv" AND language = "italian english" |
51,579 | <question>: What language is the Tematico content with a sky tv package, and Fox Crime television service? <context>: CREATE TABLE table_name_55 (language VARCHAR, television_service VARCHAR, content VARCHAR, package_option VARCHAR) | SELECT language FROM table_name_55 WHERE content = "tematico" AND package_option = "sky tv" AND television_service = "fox crime" |
51,580 | <question>: What country has a television service with Cartello Promozionale sky hd? <context>: CREATE TABLE table_name_95 (country VARCHAR, television_service VARCHAR) | SELECT country FROM table_name_95 WHERE television_service = "cartello promozionale sky hd" |
51,581 | <question>: What country has a Fox television service? <context>: CREATE TABLE table_name_7 (country VARCHAR, television_service VARCHAR) | SELECT country FROM table_name_7 WHERE television_service = "fox" |
51,582 | <question>: Who drove for Mathiasen Motorsports with dane cameron as pole position? <context>: CREATE TABLE table_name_62 (winning_driver VARCHAR, winning_team VARCHAR, pole_position VARCHAR) | SELECT winning_driver FROM table_name_62 WHERE winning_team = "mathiasen motorsports" AND pole_position = "dane cameron" |
51,583 | <question>: What winning team did Jonathan bomarito drive for when jonathan summerton had the fastest lap? <context>: CREATE TABLE table_name_84 (winning_team VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR) | SELECT winning_team FROM table_name_84 WHERE winning_driver = "jonathan bomarito" AND fastest_lap = "jonathan summerton" |
51,584 | <question>: When Douglas Soares had the fastest lap, what was the report? <context>: CREATE TABLE table_name_39 (report VARCHAR, fastest_lap VARCHAR) | SELECT report FROM table_name_39 WHERE fastest_lap = "douglas soares" |
51,585 | <question>: When the winning team of mathiasen motorsports has a pole position of jonathan bomarito, who has the fastest lap? <context>: CREATE TABLE table_name_97 (fastest_lap VARCHAR, winning_team VARCHAR, pole_position VARCHAR) | SELECT fastest_lap FROM table_name_97 WHERE winning_team = "mathiasen motorsports" AND pole_position = "jonathan bomarito" |
51,586 | <question>: When the driver jonathan summerton won and dane cameron had the fastest lap, what was the report? <context>: CREATE TABLE table_name_42 (report VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR) | SELECT report FROM table_name_42 WHERE winning_driver = "jonathan summerton" AND fastest_lap = "dane cameron" |
51,587 | <question>: Which Year has a Competition of olympic games, and a Venue of atlanta, united states? <context>: CREATE TABLE table_name_93 (year INTEGER, competition VARCHAR, venue VARCHAR) | SELECT AVG(year) FROM table_name_93 WHERE competition = "olympic games" AND venue = "atlanta, united states" |
51,588 | <question>: Which Competition has a Year of 1993? <context>: CREATE TABLE table_name_30 (competition VARCHAR, year VARCHAR) | SELECT competition FROM table_name_30 WHERE year = 1993 |
51,589 | <question>: Which Notes has a Competition of venice marathon? <context>: CREATE TABLE table_name_78 (notes VARCHAR, competition VARCHAR) | SELECT notes FROM table_name_78 WHERE competition = "venice marathon" |
51,590 | <question>: Which Year has a Venue of atlanta, united states? <context>: CREATE TABLE table_name_13 (year VARCHAR, venue VARCHAR) | SELECT year FROM table_name_13 WHERE venue = "atlanta, united states" |
51,591 | <question>: Which Notes has a Venue of barcelona, spain? <context>: CREATE TABLE table_name_89 (notes VARCHAR, venue VARCHAR) | SELECT notes FROM table_name_89 WHERE venue = "barcelona, spain" |
51,592 | <question>: Which Event has a Year of 1986? <context>: CREATE TABLE table_name_36 (event VARCHAR, year VARCHAR) | SELECT event FROM table_name_36 WHERE year = 1986 |
51,593 | <question>: What is the average share for episodes with over 7.82 viewers, ranks of 3 and a weekly rank of 54? <context>: CREATE TABLE table_name_56 (share INTEGER, rank__week_ VARCHAR, viewers__millions_ VARCHAR, rank__timeslot_ VARCHAR) | SELECT AVG(share) FROM table_name_56 WHERE viewers__millions_ > 7.82 AND rank__timeslot_ = "3" AND rank__week_ = "54" |
51,594 | <question>: What is the weekly rank for the episode with a share over 7 and a rating/share of 2.3/7? <context>: CREATE TABLE table_name_77 (rank__week_ VARCHAR, share VARCHAR, rating VARCHAR) | SELECT rank__week_ FROM table_name_77 WHERE share > 7 AND rating / SHARE(18 - 49) = 2.3 / 7 |
51,595 | <question>: What is the weekly rank of the episode with more than 7.14mil viewers, a nightly rank of 5, and a rating/share of 2.9/10? <context>: CREATE TABLE table_name_73 (rank__week_ VARCHAR, viewers__millions_ VARCHAR, rank__night_ VARCHAR, rating VARCHAR) | SELECT rank__week_ FROM table_name_73 WHERE viewers__millions_ > 7.14 AND rank__night_ = "5" AND rating / SHARE(18 - 49) = 2.9 / 10 |
51,596 | <question>: What is the total gain for Brandon Mcrae with a loss less than 4, and an Avg/g less than -0.1? <context>: CREATE TABLE table_name_90 (gain VARCHAR, avg_g VARCHAR, long VARCHAR, name VARCHAR) | SELECT COUNT(gain) FROM table_name_90 WHERE long < 4 AND name = "brandon mcrae" AND avg_g < -0.1 |
51,597 | <question>: What is the lowest long with a Gp-GS of 11-8, and a gain less than 228? <context>: CREATE TABLE table_name_16 (long INTEGER, gp_gs VARCHAR, gain VARCHAR) | SELECT MIN(long) FROM table_name_16 WHERE gp_gs = "11-8" AND gain < 228 |
51,598 | <question>: What is the lowest gain with an 18 long, and a loss less than 191? <context>: CREATE TABLE table_name_40 (gain INTEGER, long VARCHAR, loss VARCHAR) | SELECT MIN(gain) FROM table_name_40 WHERE long = 18 AND loss < 191 |
51,599 | <question>: What is the sum of 1938 values where 1933 values are under 68.3 and 1940 valures are under 4.02? <context>: CREATE TABLE table_name_8 (Id VARCHAR) | SELECT SUM(1938) FROM table_name_8 WHERE 1933 < 68.3 AND 1940 < 4.02 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.