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