Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
59,900 | <question>: How many laps did John Love have on a grid less than 11? <context>: CREATE TABLE table_name_18 (laps VARCHAR, grid VARCHAR, driver VARCHAR) | SELECT laps FROM table_name_18 WHERE grid < 11 AND driver = "john love" |
59,901 | <question>: What is the Builder of Locomotive 2? <context>: CREATE TABLE table_name_6 (builder VARCHAR, locomotive VARCHAR) | SELECT builder FROM table_name_6 WHERE locomotive = "2" |
59,902 | <question>: With a Type of 4-6-4t, what is the sum Withdrawn? <context>: CREATE TABLE table_name_43 (withdrawn INTEGER, type VARCHAR) | SELECT SUM(withdrawn) FROM table_name_43 WHERE type = "4-6-4t" |
59,903 | <question>: What was the score from the game where Dallas played Home and Edmonton was visiting? <context>: CREATE TABLE table_name_41 (score VARCHAR, home VARCHAR, visitor VARCHAR) | SELECT score FROM table_name_41 WHERE home = "dallas" AND visitor = "edmonton" |
59,904 | <question>: What was the mintage when the theme was Santa Claus? <context>: CREATE TABLE table_name_15 (mintage VARCHAR, theme VARCHAR) | SELECT mintage FROM table_name_15 WHERE theme = "santa claus" |
59,905 | <question>: What was the issue price in the year 2008? <context>: CREATE TABLE table_name_29 (issue_price INTEGER, year VARCHAR) | SELECT SUM(issue_price) FROM table_name_29 WHERE year = 2008 |
59,906 | <question>: What is the earliest year when the composition is 99.99% silver and the issue price is $94.95? <context>: CREATE TABLE table_name_66 (year INTEGER, composition VARCHAR, issue_price VARCHAR) | SELECT MIN(year) FROM table_name_66 WHERE composition = "99.99% silver" AND issue_price = "$94.95" |
59,907 | <question>: What year had an issue price of $94.95 and theme of Amethyst crystal? <context>: CREATE TABLE table_name_87 (year INTEGER, issue_price VARCHAR, theme VARCHAR) | SELECT AVG(year) FROM table_name_87 WHERE issue_price = "$94.95" AND theme = "amethyst crystal" |
59,908 | <question>: Name the score for when the opponent in the final is shiho hisamatsu <context>: CREATE TABLE table_name_43 (score VARCHAR, opponent_in_the_final VARCHAR) | SELECT score FROM table_name_43 WHERE opponent_in_the_final = "shiho hisamatsu" |
59,909 | <question>: Name the tournament for april 3, 2005 <context>: CREATE TABLE table_name_79 (tournament VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_79 WHERE date = "april 3, 2005" |
59,910 | <question>: Name th score for may 11, 2003 <context>: CREATE TABLE table_name_1 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_1 WHERE date = "may 11, 2003" |
59,911 | <question>: Who constructed pedro diniz's car? <context>: CREATE TABLE table_name_30 (constructor VARCHAR, driver VARCHAR) | SELECT constructor FROM table_name_30 WHERE driver = "pedro diniz" |
59,912 | <question>: What is the grid total for david coulthard with over 45 laps? <context>: CREATE TABLE table_name_85 (grid VARCHAR, driver VARCHAR, laps VARCHAR) | SELECT COUNT(grid) FROM table_name_85 WHERE driver = "david coulthard" AND laps > 45 |
59,913 | <question>: What is the average for the gymnast with a 9.9 start value and a total of 9.612? <context>: CREATE TABLE table_name_33 (average INTEGER, start_value VARCHAR, total VARCHAR) | SELECT AVG(average) FROM table_name_33 WHERE start_value = 9.9 AND total = 9.612 |
59,914 | <question>: What was the penalty for the gymnast with average above 9.662 and total is more than 9.706? <context>: CREATE TABLE table_name_13 (penalty VARCHAR, average VARCHAR, total VARCHAR) | SELECT penalty FROM table_name_13 WHERE average > 9.662 AND total > 9.706 |
59,915 | <question>: What category was Kasautii Zindagii Kay nominated for after 2005? <context>: CREATE TABLE table_name_20 (category VARCHAR, year VARCHAR, for_the_show VARCHAR) | SELECT category FROM table_name_20 WHERE year > 2005 AND for_the_show = "kasautii zindagii kay" |
59,916 | <question>: What show had a nomination for best actor in a lead role – female (popular) in 2006? <context>: CREATE TABLE table_name_22 (for_the_show VARCHAR, category VARCHAR, year VARCHAR) | SELECT for_the_show FROM table_name_22 WHERE category = "best actor in a lead role – female (popular)" AND year = 2006 |
59,917 | <question>: In what week was the Result L 15-13? <context>: CREATE TABLE table_name_91 (week INTEGER, result VARCHAR) | SELECT AVG(week) FROM table_name_91 WHERE result = "l 15-13" |
59,918 | <question>: What is the Attendance with Opponent Dallas Cowboys in a Week greater than 5? <context>: CREATE TABLE table_name_51 (attendance INTEGER, opponent VARCHAR, week VARCHAR) | SELECT SUM(attendance) FROM table_name_51 WHERE opponent = "dallas cowboys" AND week > 5 |
59,919 | <question>: How many points for maserati v12 engines in 1968? <context>: CREATE TABLE table_name_89 (points VARCHAR, engine VARCHAR, year VARCHAR) | SELECT COUNT(points) FROM table_name_89 WHERE engine = "maserati v12" AND year = 1968 |
59,920 | <question>: What entrant had less than 3 points before 1963? <context>: CREATE TABLE table_name_28 (entrant VARCHAR, year VARCHAR, points VARCHAR) | SELECT entrant FROM table_name_28 WHERE year < 1963 AND points < 3 |
59,921 | <question>: Who had the pole at the French Grand Prix? <context>: CREATE TABLE table_name_86 (pole_position VARCHAR, grand_prix VARCHAR) | SELECT pole_position FROM table_name_86 WHERE grand_prix = "french grand prix" |
59,922 | <question>: Who constructed the car that won the Canadian Grand Prix? <context>: CREATE TABLE table_name_97 (constructor VARCHAR, grand_prix VARCHAR) | SELECT constructor FROM table_name_97 WHERE grand_prix = "canadian grand prix" |
59,923 | <question>: When Michael Schumacher won the race, who had the fastest lap? <context>: CREATE TABLE table_name_18 (fastest_lap VARCHAR, winning_driver VARCHAR) | SELECT fastest_lap FROM table_name_18 WHERE winning_driver = "michael schumacher" |
59,924 | <question>: For the Player playing for the College of Kentucky and a Height of 6-7 what was their corresponding School? <context>: CREATE TABLE table_name_72 (school VARCHAR, college VARCHAR, height VARCHAR) | SELECT school FROM table_name_72 WHERE college = "kentucky" AND height = "6-7" |
59,925 | <question>: What School did Terrence Jones play for? <context>: CREATE TABLE table_name_40 (school VARCHAR, player VARCHAR) | SELECT school FROM table_name_40 WHERE player = "terrence jones" |
59,926 | <question>: What Player(s) have a Height of 6-3? <context>: CREATE TABLE table_name_42 (player VARCHAR, height VARCHAR) | SELECT player FROM table_name_42 WHERE height = "6-3" |
59,927 | <question>: For the player with a Height of 6-9 and College of Kentucky what was their NBA Draft? <context>: CREATE TABLE table_name_41 (nba_draft VARCHAR, height VARCHAR, college VARCHAR) | SELECT nba_draft FROM table_name_41 WHERE height = "6-9" AND college = "kentucky" |
59,928 | <question>: What was the score on February 9? <context>: CREATE TABLE table_name_84 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_84 WHERE date = "february 9" |
59,929 | <question>: What is the average point total for arrows racing team before 1983? <context>: CREATE TABLE table_name_73 (points INTEGER, team VARCHAR, year VARCHAR) | SELECT AVG(points) FROM table_name_73 WHERE team = "arrows racing team" AND year < 1983 |
59,930 | <question>: What team has jordan 193 chassis after 1990? <context>: CREATE TABLE table_name_61 (team VARCHAR, year VARCHAR, chassis VARCHAR) | SELECT team FROM table_name_61 WHERE year > 1990 AND chassis = "jordan 193" |
59,931 | <question>: How many points for the cosworth v8 engine after 1985? <context>: CREATE TABLE table_name_23 (points VARCHAR, year VARCHAR, engine VARCHAR) | SELECT points FROM table_name_23 WHERE year > 1985 AND engine = "cosworth v8" |
59,932 | <question>: What is the constructor for the driver with grid less than 2? <context>: CREATE TABLE table_name_6 (constructor VARCHAR, grid INTEGER) | SELECT constructor FROM table_name_6 WHERE grid < 2 |
59,933 | <question>: What Position did Aaron Williams play? <context>: CREATE TABLE table_name_12 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_12 WHERE player = "aaron williams" |
59,934 | <question>: At Position of guard, from the School/Club Team Notre Dame, how many Years for Jazz did that person play? <context>: CREATE TABLE table_name_43 (years_for_jazz VARCHAR, position VARCHAR, school_club_team VARCHAR) | SELECT years_for_jazz FROM table_name_43 WHERE position = "guard" AND school_club_team = "notre dame" |
59,935 | <question>: Which School/Club Team did Andre Wakefield play for? <context>: CREATE TABLE table_name_34 (school_club_team VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_name_34 WHERE player = "andre wakefield" |
59,936 | <question>: What is the Nationality of the player who had Position of guard from School/Club Team Notre Dame? <context>: CREATE TABLE table_name_59 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR) | SELECT nationality FROM table_name_59 WHERE position = "guard" AND school_club_team = "notre dame" |
59,937 | <question>: What School/Club Team is Player Howard Wood from? <context>: CREATE TABLE table_name_83 (school_club_team VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_name_83 WHERE player = "howard wood" |
59,938 | <question>: What School/Club Team is Player Aaron Williams from? <context>: CREATE TABLE table_name_5 (school_club_team VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_name_5 WHERE player = "aaron williams" |
59,939 | <question>: What is the street address of the building with 5 floors? <context>: CREATE TABLE table_name_9 (street_address VARCHAR, floors VARCHAR) | SELECT street_address FROM table_name_9 WHERE floors = "5" |
59,940 | <question>: What is the street address of the building with 40 floors? <context>: CREATE TABLE table_name_94 (street_address VARCHAR, floors VARCHAR) | SELECT street_address FROM table_name_94 WHERE floors = "40" |
59,941 | <question>: What were the years the building with 44 floors was tallest? <context>: CREATE TABLE table_name_53 (years_as_tallest VARCHAR, floors VARCHAR) | SELECT years_as_tallest FROM table_name_53 WHERE floors = "44" |
59,942 | <question>: What is the street address of Oliver Building? <context>: CREATE TABLE table_name_20 (street_address VARCHAR, name VARCHAR) | SELECT street_address FROM table_name_20 WHERE name = "oliver building" |
59,943 | <question>: Can you tell me the Winning party of 2003 that has the Constituency of aberdeen north? <context>: CREATE TABLE table_name_62 (winning_party_2003 VARCHAR, constituency VARCHAR) | SELECT winning_party_2003 FROM table_name_62 WHERE constituency = "aberdeen north" |
59,944 | <question>: Can you tell me the lowest Rank that has the Constituency of strathkelvin and bearsden? <context>: CREATE TABLE table_name_64 (rank INTEGER, constituency VARCHAR) | SELECT MIN(rank) FROM table_name_64 WHERE constituency = "strathkelvin and bearsden" |
59,945 | <question>: Can you tell me the sum of Swing to gain that has Constituency of caithness, sutherland and easter ross? <context>: CREATE TABLE table_name_48 (swing_to_gain INTEGER, constituency VARCHAR) | SELECT SUM(swing_to_gain) FROM table_name_48 WHERE constituency = "caithness, sutherland and easter ross" |
59,946 | <question>: What's the Time/Retired of Laps of 75? <context>: CREATE TABLE table_name_59 (time_retired VARCHAR, laps VARCHAR) | SELECT time_retired FROM table_name_59 WHERE laps = 75 |
59,947 | <question>: Which Driver has Laps larger than 78, and a Time/Retired of + 1:09.4? <context>: CREATE TABLE table_name_99 (driver VARCHAR, laps VARCHAR, time_retired VARCHAR) | SELECT driver FROM table_name_99 WHERE laps > 78 AND time_retired = "+ 1:09.4" |
59,948 | <question>: Hows many Laps are in a Grid of 4? <context>: CREATE TABLE table_name_72 (laps VARCHAR, grid VARCHAR) | SELECT COUNT(laps) FROM table_name_72 WHERE grid = 4 |
59,949 | <question>: What venue did the away team Collingwood play at? <context>: CREATE TABLE table_name_42 (venue VARCHAR, away_team VARCHAR) | SELECT venue FROM table_name_42 WHERE away_team = "collingwood" |
59,950 | <question>: What is the score of the away team that played at Kardinia Park? <context>: CREATE TABLE table_name_33 (away_team VARCHAR, venue VARCHAR) | SELECT away_team AS score FROM table_name_33 WHERE venue = "kardinia park" |
59,951 | <question>: What is the name of the away team that played at Kardinia Park? <context>: CREATE TABLE table_name_2 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_2 WHERE venue = "kardinia park" |
59,952 | <question>: What is the attendance in the bye week after week 5? <context>: CREATE TABLE table_name_40 (attendance VARCHAR, week VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_40 WHERE week > 5 AND opponent = "bye" |
59,953 | <question>: What location had 1:59:12 in time? <context>: CREATE TABLE table_name_1 (location VARCHAR, time VARCHAR) | SELECT location FROM table_name_1 WHERE time = "1:59:12" |
59,954 | <question>: What is the score for the away team of north melbourne? <context>: CREATE TABLE table_name_79 (away_team VARCHAR) | SELECT away_team AS score FROM table_name_79 WHERE away_team = "north melbourne" |
59,955 | <question>: Which home team plays at victoria park? <context>: CREATE TABLE table_name_46 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_46 WHERE venue = "victoria park" |
59,956 | <question>: what is the competition for the event team all-round in the year before 1913? <context>: CREATE TABLE table_name_38 (competition VARCHAR, event VARCHAR, year VARCHAR) | SELECT competition FROM table_name_38 WHERE event = "team all-round" AND year < 1913 |
59,957 | <question>: what is the event for the year less than 1913 with the position of 2nd? <context>: CREATE TABLE table_name_60 (event VARCHAR, year VARCHAR, position VARCHAR) | SELECT event FROM table_name_60 WHERE year < 1913 AND position = "2nd" |
59,958 | <question>: what is the competition in paris for the parallel bars with a position of 1st? <context>: CREATE TABLE table_name_8 (competition VARCHAR, event VARCHAR, venue VARCHAR, position VARCHAR) | SELECT competition FROM table_name_8 WHERE venue = "paris" AND position = "1st" AND event = "parallel bars" |
59,959 | <question>: what is the competition in a year after 1911 with the position of 1st for the rings? <context>: CREATE TABLE table_name_78 (competition VARCHAR, event VARCHAR, year VARCHAR, position VARCHAR) | SELECT competition FROM table_name_78 WHERE year > 1911 AND position = "1st" AND event = "rings" |
59,960 | <question>: what is the year that the position was 1st in paris? <context>: CREATE TABLE table_name_26 (year VARCHAR, position VARCHAR, venue VARCHAR) | SELECT year FROM table_name_26 WHERE position = "1st" AND venue = "paris" |
59,961 | <question>: Which team plays their home matches at the mcg Venue? <context>: CREATE TABLE table_name_16 (home_team VARCHAR, venue VARCHAR) | SELECT home_team FROM table_name_16 WHERE venue = "mcg" |
59,962 | <question>: What host has an original air date of june 11, 2007? <context>: CREATE TABLE table_name_11 (host VARCHAR, original_airdate VARCHAR) | SELECT host FROM table_name_11 WHERE original_airdate = "june 11, 2007" |
59,963 | <question>: Where is the location of a team with a 3-2 record? <context>: CREATE TABLE table_name_96 (location VARCHAR, record VARCHAR) | SELECT location FROM table_name_96 WHERE record = "3-2" |
59,964 | <question>: What is the result of the team with the 4-2 record? <context>: CREATE TABLE table_name_67 (res VARCHAR, record VARCHAR) | SELECT res FROM table_name_67 WHERE record = "4-2" |
59,965 | <question>: What was St Kilda's away team score? <context>: CREATE TABLE table_name_30 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team AS score FROM table_name_30 WHERE home_team = "st kilda" |
59,966 | <question>: What was the attendance at Moorabbin Oval? <context>: CREATE TABLE table_name_41 (crowd INTEGER, venue VARCHAR) | SELECT AVG(crowd) FROM table_name_41 WHERE venue = "moorabbin oval" |
59,967 | <question>: Who was Melbourne's away team opponent? <context>: CREATE TABLE table_name_48 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_48 WHERE home_team = "melbourne" |
59,968 | <question>: What was the attendance at the Footscray away game? <context>: CREATE TABLE table_name_19 (crowd VARCHAR, away_team VARCHAR) | SELECT crowd FROM table_name_19 WHERE away_team = "footscray" |
59,969 | <question>: Tell me the competition that happened on 14 june 2008 <context>: CREATE TABLE table_name_54 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_54 WHERE date = "14 june 2008" |
59,970 | <question>: Tell me the score for Venue of tanteen recreation ground, st. george's <context>: CREATE TABLE table_name_43 (score VARCHAR, venue VARCHAR) | SELECT score FROM table_name_43 WHERE venue = "tanteen recreation ground, st. george's" |
59,971 | <question>: How many weeks are associated with Season 3 – spring 2008? <context>: CREATE TABLE table_name_74 (_number_of_weeks VARCHAR, season VARCHAR) | SELECT COUNT(_number_of_weeks) FROM table_name_74 WHERE season = "3 – spring 2008" |
59,972 | <question>: Who won when robert kudelski finished with under 13 weeks? <context>: CREATE TABLE table_name_89 (winner VARCHAR, _number_of_weeks VARCHAR, third_place VARCHAR) | SELECT winner FROM table_name_89 WHERE _number_of_weeks < 13 AND third_place = "robert kudelski" |
59,973 | <question>: What is the average attendance when Brewers are the opponent with a score of 6–3? <context>: CREATE TABLE table_name_68 (attendance INTEGER, opponent VARCHAR, score VARCHAR) | SELECT AVG(attendance) FROM table_name_68 WHERE opponent = "brewers" AND score = "6–3" |
59,974 | <question>: What loss occurred on June 10? <context>: CREATE TABLE table_name_81 (loss VARCHAR, date VARCHAR) | SELECT loss FROM table_name_81 WHERE date = "june 10" |
59,975 | <question>: Who is the opponent with a score of 5–4? <context>: CREATE TABLE table_name_36 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_36 WHERE score = "5–4" |
59,976 | <question>: What is the week for Result of w 28-17? <context>: CREATE TABLE table_name_70 (week VARCHAR, result VARCHAR) | SELECT week FROM table_name_70 WHERE result = "w 28-17" |
59,977 | <question>: What is the avarage Attendance for the Date of october 26, 1947? <context>: CREATE TABLE table_name_45 (attendance INTEGER, date VARCHAR) | SELECT AVG(attendance) FROM table_name_45 WHERE date = "october 26, 1947" |
59,978 | <question>: Can you tell me the Years that has the Name of arapohue school? <context>: CREATE TABLE table_name_70 (years VARCHAR, name VARCHAR) | SELECT years FROM table_name_70 WHERE name = "arapohue school" |
59,979 | <question>: Can you tell me the lowest Decile that has the Area of matakohe, and the Roll larger than 86? <context>: CREATE TABLE table_name_52 (decile INTEGER, area VARCHAR, roll VARCHAR) | SELECT MIN(decile) FROM table_name_52 WHERE area = "matakohe" AND roll > 86 |
59,980 | <question>: Can you tell me the total number of Roll that has the Area of aranga? <context>: CREATE TABLE table_name_95 (roll VARCHAR, area VARCHAR) | SELECT COUNT(roll) FROM table_name_95 WHERE area = "aranga" |
59,981 | <question>: Can you tell me the Name that has the Roll larger than 419? <context>: CREATE TABLE table_name_95 (name VARCHAR, roll INTEGER) | SELECT name FROM table_name_95 WHERE roll > 419 |
59,982 | <question>: Which total number of Week has an Opponent of at new orleans saints, and an Attendance larger than 53,448? <context>: CREATE TABLE table_name_17 (week VARCHAR, opponent VARCHAR, attendance VARCHAR) | SELECT COUNT(week) FROM table_name_17 WHERE opponent = "at new orleans saints" AND attendance > 53 OFFSET 448 |
59,983 | <question>: Which Attendance has a Result of w 51-21? <context>: CREATE TABLE table_name_70 (attendance VARCHAR, result VARCHAR) | SELECT attendance FROM table_name_70 WHERE result = "w 51-21" |
59,984 | <question>: Who was the Away team at Arden Street Oval? <context>: CREATE TABLE table_name_98 (away_team VARCHAR, venue VARCHAR) | SELECT away_team FROM table_name_98 WHERE venue = "arden street oval" |
59,985 | <question>: What is the average top-25 value for majors that have more than 0 wins? <context>: CREATE TABLE table_name_27 (top_25 INTEGER, wins INTEGER) | SELECT AVG(top_25) FROM table_name_27 WHERE wins > 0 |
59,986 | <question>: What is the most number of cuts made that had more than 7 events played and more than 2 top-25s? <context>: CREATE TABLE table_name_18 (cuts_made INTEGER, events VARCHAR, top_25 VARCHAR) | SELECT MAX(cuts_made) FROM table_name_18 WHERE events = 7 AND top_25 > 2 |
59,987 | <question>: For top-25 values under 2, what is the average number of cuts made? <context>: CREATE TABLE table_name_54 (cuts_made INTEGER, top_25 INTEGER) | SELECT AVG(cuts_made) FROM table_name_54 WHERE top_25 < 2 |
59,988 | <question>: With a dail of 24th and more than 57 seats, what is the election? <context>: CREATE TABLE table_name_26 (election VARCHAR, seats VARCHAR, dáil VARCHAR) | SELECT election FROM table_name_26 WHERE seats > 57 AND dáil = "24th" |
59,989 | <question>: with shares of 45.3% and total seats less than 166. what is the greatest number of seat? <context>: CREATE TABLE table_name_61 (seats INTEGER, share_of_votes VARCHAR, total_seats VARCHAR) | SELECT MAX(seats) FROM table_name_61 WHERE share_of_votes = "45.3%" AND total_seats < 166 |
59,990 | <question>: with a share of 44.2% and 77 seats, what is the greatest seat total? <context>: CREATE TABLE table_name_82 (total_seats INTEGER, seats VARCHAR, share_of_votes VARCHAR) | SELECT MAX(total_seats) FROM table_name_82 WHERE seats = 77 AND share_of_votes = "44.2%" |
59,991 | <question>: What is the long in 1994? <context>: CREATE TABLE table_name_60 (long VARCHAR, year VARCHAR) | SELECT long FROM table_name_60 WHERE year = "1994" |
59,992 | <question>: Which team has a long of 67? <context>: CREATE TABLE table_name_6 (team VARCHAR, long VARCHAR) | SELECT team FROM table_name_6 WHERE long = "67" |
59,993 | <question>: What is the RAvg of the year with Ratt of 9? <context>: CREATE TABLE table_name_27 (ravg VARCHAR, ratt VARCHAR) | SELECT ravg FROM table_name_27 WHERE ratt = "9" |
59,994 | <question>: What is the Ratt of the year with a 78 long? <context>: CREATE TABLE table_name_97 (ratt VARCHAR, long VARCHAR) | SELECT ratt FROM table_name_97 WHERE long = "78" |
59,995 | <question>: Which team has a Ravg of 1.3? <context>: CREATE TABLE table_name_64 (team VARCHAR, ravg VARCHAR) | SELECT team FROM table_name_64 WHERE ravg = "1.3" |
59,996 | <question>: What is the rate of 17 years? <context>: CREATE TABLE table_name_55 (rate VARCHAR, year VARCHAR) | SELECT rate FROM table_name_55 WHERE year = "17 years" |
59,997 | <question>: Name the samurai for stampede of t. mask <context>: CREATE TABLE table_name_97 (samurai VARCHAR, stampede VARCHAR) | SELECT samurai FROM table_name_97 WHERE stampede = "t. mask" |
59,998 | <question>: Which series is based in Toronto on may 18? <context>: CREATE TABLE table_name_3 (series VARCHAR, home VARCHAR, date VARCHAR) | SELECT series FROM table_name_3 WHERE home = "toronto" AND date = "may 18" |
59,999 | <question>: What is the combined crowd in Vancouver on may 22? <context>: CREATE TABLE table_name_43 (attendance INTEGER, home VARCHAR, date VARCHAR) | SELECT SUM(attendance) FROM table_name_43 WHERE home = "vancouver" AND date = "may 22" |