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