question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
what is the time/retired when the driver is toulo de graffenried? | CREATE TABLE table_name_51 (time_retired VARCHAR, driver VARCHAR) | {
"SQL_Query": "SELECT time_retired FROM table_name_51 WHERE driver = \"toulo de graffenried\""
} |
what is the laps when the driver is tony rolt and the grid is less than 10? | CREATE TABLE table_name_99 (laps INTEGER, driver VARCHAR, grid VARCHAR) | {
"SQL_Query": "SELECT SUM(laps) FROM table_name_99 WHERE driver = \"tony rolt\" AND grid < 10"
} |
what is the time/retired when the constructor is maserati and the laps is 90? | CREATE TABLE table_name_74 (time_retired VARCHAR, constructor VARCHAR, laps VARCHAR) | {
"SQL_Query": "SELECT time_retired FROM table_name_74 WHERE constructor = \"maserati\" AND laps = 90"
} |
What is the average Attendance at Venue A on 16 October 2004? | CREATE TABLE table_name_57 (attendance INTEGER, venue VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT AVG(attendance) FROM table_name_57 WHERE venue = \"a\" AND date = \"16 october 2004\""
} |
What is the lowest Attendance when Middlesbrough played at Venue A? | CREATE TABLE table_name_34 (attendance INTEGER, opponent VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT MIN(attendance) FROM table_name_34 WHERE opponent = \"middlesbrough\" AND venue = \"a\""
} |
Who was the sponsor for the bill introduced February 28, 2005 with cosponsors less than 200? | CREATE TABLE table_name_18 (sponsor_s_ VARCHAR, _number_of_cosponsors VARCHAR, date_introduced VARCHAR) | {
"SQL_Query": "SELECT sponsor_s_ FROM table_name_18 WHERE _number_of_cosponsors < 200 AND date_introduced = \"february 28, 2005\""
} |
What year was Herself nominated at the MTV Movie Awards? | CREATE TABLE table_name_68 (year INTEGER, nominated_work VARCHAR, event VARCHAR) | {
"SQL_Query": "SELECT MAX(year) FROM table_name_68 WHERE nominated_work = \"herself\" AND event = \"mtv movie awards\""
} |
What is the average amount of spectators when Essendon played as the home team? | CREATE TABLE table_name_84 (crowd INTEGER, home_team VARCHAR) | {
"SQL_Query": "SELECT AVG(crowd) FROM table_name_84 WHERE home_team = \"essendon\""
} |
What did the away team score at MCG? | CREATE TABLE table_name_96 (away_team VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT away_team AS score FROM table_name_96 WHERE venue = \"mcg\""
} |
Where was the game when Geelong was the away team? | CREATE TABLE table_name_28 (venue VARCHAR, away_team VARCHAR) | {
"SQL_Query": "SELECT venue FROM table_name_28 WHERE away_team = \"geelong\""
} |
What team was the away team at Arden Street Oval? | CREATE TABLE table_name_72 (away_team VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT away_team FROM table_name_72 WHERE venue = \"arden street oval\""
} |
What in Xenia's Diameter in km, with a latitude of 14 and a longitude of 249.4? | CREATE TABLE table_name_71 (diameter__km_ VARCHAR, longitude VARCHAR, latitude VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT COUNT(diameter__km_) FROM table_name_71 WHERE latitude < 14 AND name = \"xenia\" AND longitude > 249.4"
} |
What is the latitude for a crater with a diameter of 12.8 km and a longitude of 208? | CREATE TABLE table_name_18 (latitude INTEGER, diameter__km_ VARCHAR, longitude VARCHAR) | {
"SQL_Query": "SELECT AVG(latitude) FROM table_name_18 WHERE diameter__km_ < 12.8 AND longitude < 208"
} |
Who was the Runner(s)-up in the race with a winning score of 67-66-65-69=267? | CREATE TABLE table_name_75 (runner_s__up VARCHAR, winning_score VARCHAR) | {
"SQL_Query": "SELECT runner_s__up FROM table_name_75 WHERE winning_score = 67 - 66 - 65 - 69 = 267"
} |
When was the Masters Tournament? | CREATE TABLE table_name_9 (date VARCHAR, tournament VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_9 WHERE tournament = \"masters tournament\""
} |
What is the margin of victory in the race where Justin Rose was the runner-up? | CREATE TABLE table_name_48 (margin_of_victory VARCHAR, runner_s__up VARCHAR) | {
"SQL_Query": "SELECT margin_of_victory FROM table_name_48 WHERE runner_s__up = \"justin rose\""
} |
What tournament took place on 7 Aug 2011? | CREATE TABLE table_name_87 (tournament VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT tournament FROM table_name_87 WHERE date = \"7 aug 2011\""
} |
For the team that had 4:05.096, what was their day 2? | CREATE TABLE table_name_23 (day_2 VARCHAR, day_1 VARCHAR) | {
"SQL_Query": "SELECT day_2 FROM table_name_23 WHERE day_1 = \"4:05.096\""
} |
Which team had 3:18.513 on day 1? | CREATE TABLE table_name_34 (team VARCHAR, day_1 VARCHAR) | {
"SQL_Query": "SELECT team FROM table_name_34 WHERE day_1 = \"3:18.513\""
} |
For the team with a class of gt2 and 3:59.820 on day 2, what was the behind? | CREATE TABLE table_name_26 (behind VARCHAR, class VARCHAR, day_2 VARCHAR) | {
"SQL_Query": "SELECT behind FROM table_name_26 WHERE class = \"gt2\" AND day_2 = \"3:59.820\""
} |
Which team was 3:47.761 on day 2? | CREATE TABLE table_name_78 (team VARCHAR, day_2 VARCHAR) | {
"SQL_Query": "SELECT team FROM table_name_78 WHERE day_2 = \"3:47.761\""
} |
What is the class of the team that has a behind of +44.780? | CREATE TABLE table_name_18 (class VARCHAR, behind VARCHAR) | {
"SQL_Query": "SELECT class FROM table_name_18 WHERE behind = \"+44.780\""
} |
For the team with 3:42.162 on day 2, what was the behind? | CREATE TABLE table_name_72 (behind VARCHAR, day_2 VARCHAR) | {
"SQL_Query": "SELECT behind FROM table_name_72 WHERE day_2 = \"3:42.162\""
} |
Which one of the tournaments had a QF in 1996? | CREATE TABLE table_name_42 (tournament VARCHAR) | {
"SQL_Query": "SELECT tournament FROM table_name_42 WHERE 1996 = \"qf\""
} |
What is the value for the Wimbledon tournament in 1996? | CREATE TABLE table_name_92 (tournament VARCHAR) | {
"SQL_Query": "SELECT 1996 FROM table_name_92 WHERE tournament = \"wimbledon\""
} |
What year is center Ann Wauters? | CREATE TABLE table_name_26 (year INTEGER, position VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT SUM(year) FROM table_name_26 WHERE position = \"center\" AND player = \"ann wauters\""
} |
What is the earliest year that includes a Seattle Storm guard? | CREATE TABLE table_name_54 (year INTEGER, position VARCHAR, wnba_team VARCHAR) | {
"SQL_Query": "SELECT MIN(year) FROM table_name_54 WHERE position = \"guard\" AND wnba_team = \"seattle storm\""
} |
Regarding players before 2000, what is the USC player's position? | CREATE TABLE table_name_31 (position VARCHAR, year VARCHAR, college_country VARCHAR) | {
"SQL_Query": "SELECT position FROM table_name_31 WHERE year < 2000 AND college_country = \"usc\""
} |
What is the earliest year a Baylor player made the list? | CREATE TABLE table_name_79 (year INTEGER, college_country VARCHAR) | {
"SQL_Query": "SELECT MIN(year) FROM table_name_79 WHERE college_country = \"baylor\""
} |
What is Sue Bird's position? | CREATE TABLE table_name_93 (position VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT position FROM table_name_93 WHERE player = \"sue bird\""
} |
Which Builder has a Class of Terrier? | CREATE TABLE table_name_52 (builder VARCHAR, class VARCHAR) | {
"SQL_Query": "SELECT builder FROM table_name_52 WHERE class = \"terrier\""
} |
who is the constructor when the laps is less than 68, the grid is more than 20 and the driver is thierry boutsen? | CREATE TABLE table_name_62 (constructor VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR) | {
"SQL_Query": "SELECT constructor FROM table_name_62 WHERE laps < 68 AND grid > 20 AND driver = \"thierry boutsen\""
} |
what is the laps when the time/retired is turbo and the grid is less than 14? | CREATE TABLE table_name_29 (laps VARCHAR, time_retired VARCHAR, grid VARCHAR) | {
"SQL_Query": "SELECT laps FROM table_name_29 WHERE time_retired = \"turbo\" AND grid < 14"
} |
what is the time/retired when the laps is less than 4? | CREATE TABLE table_name_23 (time_retired VARCHAR, laps INTEGER) | {
"SQL_Query": "SELECT time_retired FROM table_name_23 WHERE laps < 4"
} |
Name the most goals for total club and apps less than 120 | CREATE TABLE table_name_34 (goals INTEGER, club VARCHAR, apps VARCHAR) | {
"SQL_Query": "SELECT MAX(goals) FROM table_name_34 WHERE club = \"total\" AND apps < 120"
} |
How many goals are associated with 75 games? | CREATE TABLE table_name_51 (goals INTEGER, games VARCHAR) | {
"SQL_Query": "SELECT MAX(goals) FROM table_name_51 WHERE games = 75"
} |
What is the position for the Rockets years of 2004-05? | CREATE TABLE table_name_75 (position VARCHAR, years_for_rockets VARCHAR) | {
"SQL_Query": "SELECT position FROM table_name_75 WHERE years_for_rockets = \"2004-05\""
} |
What is the average number of years for the Houston Rockets 2004-05? | CREATE TABLE table_name_14 (no_s_ INTEGER, years_for_rockets VARCHAR) | {
"SQL_Query": "SELECT AVG(no_s_) FROM table_name_14 WHERE years_for_rockets = \"2004-05\""
} |
For the years 1992-93, what position did he play for the Houston Rockets? | CREATE TABLE table_name_4 (position VARCHAR, years_for_rockets VARCHAR) | {
"SQL_Query": "SELECT position FROM table_name_4 WHERE years_for_rockets = \"1992-93\""
} |
What is the total number of years did he play the forward position and what school/club/team/country of Oregon State did he play? | CREATE TABLE table_name_92 (no_s_ INTEGER, position VARCHAR, school_club_team_country VARCHAR) | {
"SQL_Query": "SELECT SUM(no_s_) FROM table_name_92 WHERE position = \"forward\" AND school_club_team_country = \"oregon state\""
} |
How many wins for bruce fleisher with over 31 events? | CREATE TABLE table_name_16 (wins INTEGER, player VARCHAR, events VARCHAR) | {
"SQL_Query": "SELECT AVG(wins) FROM table_name_16 WHERE player = \"bruce fleisher\" AND events > 31"
} |
What is the average rank for players with under 26 events and less than 2 wins? | CREATE TABLE table_name_74 (rank INTEGER, events VARCHAR, wins VARCHAR) | {
"SQL_Query": "SELECT AVG(rank) FROM table_name_74 WHERE events < 26 AND wins < 2"
} |
What is the high earnings for players with 34 events and over 2 wins? | CREATE TABLE table_name_90 (earnings___ INTEGER, events VARCHAR, wins VARCHAR) | {
"SQL_Query": "SELECT MAX(earnings___) AS $__ FROM table_name_90 WHERE events = 34 AND wins > 2"
} |
Which tournament had a 2R categorization in 2009 and SF in 2010? | CREATE TABLE table_name_83 (tournament VARCHAR) | {
"SQL_Query": "SELECT tournament FROM table_name_83 WHERE 2009 = \"2r\" AND 2010 = \"sf\""
} |
What is the categorization in 2009 when it was 2R in 2008 and 2011? | CREATE TABLE table_name_14 (Id VARCHAR) | {
"SQL_Query": "SELECT 2009 FROM table_name_14 WHERE 2008 = \"2r\" AND 2011 = \"2r\""
} |
What is the categorization in 2012 when it was A in 2008 and 1R in 2011? | CREATE TABLE table_name_13 (Id VARCHAR) | {
"SQL_Query": "SELECT 2012 FROM table_name_13 WHERE 2008 = \"a\" AND 2011 = \"1r\""
} |
What is the categorization in 2010 when it was A in 2008 and 20011 while being QF in 2012? | CREATE TABLE table_name_10 (Id VARCHAR) | {
"SQL_Query": "SELECT 2010 FROM table_name_10 WHERE 2008 = \"a\" AND 2011 = \"a\" AND 2012 = \"qf\""
} |
What was the score against home team, Richmond? | CREATE TABLE table_name_28 (away_team VARCHAR, home_team VARCHAR) | {
"SQL_Query": "SELECT away_team AS score FROM table_name_28 WHERE home_team = \"richmond\""
} |
What is Fitzroy's smallest crowd size? | CREATE TABLE table_name_3 (crowd INTEGER, home_team VARCHAR) | {
"SQL_Query": "SELECT MIN(crowd) FROM table_name_3 WHERE home_team = \"fitzroy\""
} |
When was naomi cavaday the opponent? | CREATE TABLE table_name_19 (date VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_19 WHERE opponent = \"naomi cavaday\""
} |
When was andrea gámiz the opponent? | CREATE TABLE table_name_97 (date VARCHAR, opponent VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_97 WHERE opponent = \"andrea gámiz\""
} |
Who is the opponent when the score was 6–4, 6–2 and the surface was clay? | CREATE TABLE table_name_94 (opponent VARCHAR, score VARCHAR, surface VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_94 WHERE score = \"6–4, 6–2\" AND surface = \"clay\""
} |
What was the smallest crowd at a home game for essendon? | CREATE TABLE table_name_97 (crowd INTEGER, home_team VARCHAR) | {
"SQL_Query": "SELECT MIN(crowd) FROM table_name_97 WHERE home_team = \"essendon\""
} |
Tell me the time/retired for riccardo patrese | CREATE TABLE table_name_70 (time_retired VARCHAR, driver VARCHAR) | {
"SQL_Query": "SELECT time_retired FROM table_name_70 WHERE driver = \"riccardo patrese\""
} |
I want the time/retired for grid of 24 | CREATE TABLE table_name_12 (time_retired VARCHAR, grid VARCHAR) | {
"SQL_Query": "SELECT time_retired FROM table_name_12 WHERE grid = 24"
} |
I want the driver for ferrari who made Laps less than 26 and grids more than 9 | CREATE TABLE table_name_69 (driver VARCHAR, constructor VARCHAR, grid VARCHAR, laps VARCHAR) | {
"SQL_Query": "SELECT driver FROM table_name_69 WHERE grid > 9 AND laps < 26 AND constructor = \"ferrari\""
} |
Tell me the total number of grid for laps of 52 | CREATE TABLE table_name_60 (grid VARCHAR, laps VARCHAR) | {
"SQL_Query": "SELECT COUNT(grid) FROM table_name_60 WHERE laps = 52"
} |
What's the record for january 10? | CREATE TABLE table_name_48 (record VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT record FROM table_name_48 WHERE date = \"january 10\""
} |
What's the score on january 5 with a hasek decision? | CREATE TABLE table_name_28 (score VARCHAR, decision VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_28 WHERE decision = \"hasek\" AND date = \"january 5\""
} |
What Club team has an average of 8, plays kaj linna, and has an overall larger than 131? | CREATE TABLE table_name_97 (club_team VARCHAR, player VARCHAR, overall VARCHAR, round VARCHAR) | {
"SQL_Query": "SELECT club_team FROM table_name_97 WHERE overall > 131 AND round = 8 AND player = \"kaj linna\""
} |
What round does Bryan Berard do? | CREATE TABLE table_name_64 (round VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT round FROM table_name_64 WHERE player = \"bryan berard\""
} |
Tell me the average gross tonnage for april 1919 entered service | CREATE TABLE table_name_57 (gross_tonnage INTEGER, entered_service VARCHAR) | {
"SQL_Query": "SELECT AVG(gross_tonnage) FROM table_name_57 WHERE entered_service = \"april 1919\""
} |
I want the total number of gross tonnage when entered service was 1903 | CREATE TABLE table_name_51 (gross_tonnage VARCHAR, entered_service VARCHAR) | {
"SQL_Query": "SELECT COUNT(gross_tonnage) FROM table_name_51 WHERE entered_service = \"1903\""
} |
what is the rank when the player is henry shefflin and the matches is higher than 4? | CREATE TABLE table_name_9 (rank INTEGER, player VARCHAR, matches VARCHAR) | {
"SQL_Query": "SELECT SUM(rank) FROM table_name_9 WHERE player = \"henry shefflin\" AND matches > 4"
} |
what is the rank when the total is 39 in the county of dublin and the matches is less than 4? | CREATE TABLE table_name_31 (rank INTEGER, matches VARCHAR, total VARCHAR, county VARCHAR) | {
"SQL_Query": "SELECT AVG(rank) FROM table_name_31 WHERE total = 39 AND county = \"dublin\" AND matches < 4"
} |
Who was the opponent on November 12, 1972? | CREATE TABLE table_name_19 (opponent VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_19 WHERE date = \"november 12, 1972\""
} |
Who built the train in 1966 with over 40 produced? | CREATE TABLE table_name_83 (builder’s_model VARCHAR, total_produced VARCHAR, build_date VARCHAR) | {
"SQL_Query": "SELECT builder’s_model FROM table_name_83 WHERE total_produced > 40 AND build_date = \"1966\""
} |
What is the PRR class of the freight train built in 1967 with a b-b wheel arrangement? | CREATE TABLE table_name_4 (prr_class VARCHAR, build_date VARCHAR, wheel_arrangement VARCHAR, service VARCHAR) | {
"SQL_Query": "SELECT prr_class FROM table_name_4 WHERE wheel_arrangement = \"b-b\" AND service = \"freight\" AND build_date = \"1967\""
} |
What PRR class has a Wheel arrangement of a1a-a1a? | CREATE TABLE table_name_33 (prr_class VARCHAR, wheel_arrangement VARCHAR) | {
"SQL_Query": "SELECT prr_class FROM table_name_33 WHERE wheel_arrangement = \"a1a-a1a\""
} |
Which Zone is the lowest when Managed By Southern and has Platforms under 2? | CREATE TABLE table_name_88 (zone INTEGER, managed_by VARCHAR, platforms VARCHAR) | {
"SQL_Query": "SELECT MIN(zone) FROM table_name_88 WHERE managed_by = \"southern\" AND platforms < 2"
} |
What would be the highest Platforms for the Centrale Tram Stop Stations? | CREATE TABLE table_name_15 (platforms INTEGER, stations VARCHAR) | {
"SQL_Query": "SELECT MAX(platforms) FROM table_name_15 WHERE stations = \"centrale tram stop\""
} |
How many grids had more than 61 laps? | CREATE TABLE table_name_9 (grid INTEGER, laps INTEGER) | {
"SQL_Query": "SELECT SUM(grid) FROM table_name_9 WHERE laps > 61"
} |
When parnell dickinson was the player and the rounds were under 7, what's the highest pick? | CREATE TABLE table_name_57 (pick INTEGER, player VARCHAR, round VARCHAR) | {
"SQL_Query": "SELECT MAX(pick) FROM table_name_57 WHERE player = \"parnell dickinson\" AND round < 7"
} |
When the school picking is utah state for the position of linebacker, what's the sum of those rounds? | CREATE TABLE table_name_51 (round INTEGER, position VARCHAR, school VARCHAR) | {
"SQL_Query": "SELECT SUM(round) FROM table_name_51 WHERE position = \"linebacker\" AND school = \"utah state\""
} |
what is the laps when the grid is less than 2? | CREATE TABLE table_name_38 (laps VARCHAR, grid INTEGER) | {
"SQL_Query": "SELECT laps FROM table_name_38 WHERE grid < 2"
} |
who is the constructor when the grid is more than 23 and the driver is piercarlo ghinzani? | CREATE TABLE table_name_66 (constructor VARCHAR, grid VARCHAR, driver VARCHAR) | {
"SQL_Query": "SELECT constructor FROM table_name_66 WHERE grid > 23 AND driver = \"piercarlo ghinzani\""
} |
When is the latest year the venue is in gothenburg, sweden? | CREATE TABLE table_name_36 (year INTEGER, venue VARCHAR) | {
"SQL_Query": "SELECT MAX(year) FROM table_name_36 WHERE venue = \"gothenburg, sweden\""
} |
When is the earliest year the venue is in gothenburg, sweden? | CREATE TABLE table_name_69 (year INTEGER, venue VARCHAR) | {
"SQL_Query": "SELECT MIN(year) FROM table_name_69 WHERE venue = \"gothenburg, sweden\""
} |
What is the result of the european indoor championships after 1974? | CREATE TABLE table_name_41 (result VARCHAR, tournament VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_41 WHERE tournament = \"european indoor championships\" AND year > 1974"
} |
In Western Oval, what was the away team score? | CREATE TABLE table_name_33 (away_team VARCHAR, venue VARCHAR) | {
"SQL_Query": "SELECT away_team AS score FROM table_name_33 WHERE venue = \"western oval\""
} |
What is the place number for adrian vasile with less than 127.74 points? | CREATE TABLE table_name_14 (places INTEGER, name VARCHAR, points VARCHAR) | {
"SQL_Query": "SELECT SUM(places) FROM table_name_14 WHERE name = \"adrian vasile\" AND points < 127.74"
} |
What is the highest SP+FS that has 131.02 Points, and a Rank larger than 15? | CREATE TABLE table_name_84 (fs VARCHAR, sp INTEGER, points VARCHAR, rank VARCHAR) | {
"SQL_Query": "SELECT MAX(sp) + fs FROM table_name_84 WHERE points = 131.02 AND rank > 15"
} |
What is the highest evening gown score of the contestant from Tennessee with an interview score larger than 9.36 and an average larger than 9.75 have? | CREATE TABLE table_name_31 (evening_gown INTEGER, average VARCHAR, interview VARCHAR, country VARCHAR) | {
"SQL_Query": "SELECT MAX(evening_gown) FROM table_name_31 WHERE interview > 9.36 AND country = \"tennessee\" AND average > 9.75"
} |
What is the average of the contestant with a swimsuit less than 9.32? | CREATE TABLE table_name_86 (average INTEGER, swimsuit INTEGER) | {
"SQL_Query": "SELECT SUM(average) FROM table_name_86 WHERE swimsuit < 9.32"
} |
What is the highest swimsuit score of the contestant with a higher than 9.55 interview score, and evening gown of 9.75, and an average higher than 9.67? | CREATE TABLE table_name_63 (swimsuit INTEGER, average VARCHAR, interview VARCHAR, evening_gown VARCHAR) | {
"SQL_Query": "SELECT MAX(swimsuit) FROM table_name_63 WHERE interview > 9.55 AND evening_gown = 9.75 AND average > 9.67"
} |
What is the country of the contestant with a swimsuit of 9.46? | CREATE TABLE table_name_19 (country VARCHAR, swimsuit VARCHAR) | {
"SQL_Query": "SELECT country FROM table_name_19 WHERE swimsuit = 9.46"
} |
On what date did Goal 24 take place? | CREATE TABLE table_name_76 (date VARCHAR, goal VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_76 WHERE goal = 24"
} |
What is the team 2 for team 1 of Valletta? | CREATE TABLE table_name_60 (team_2 VARCHAR, team_1 VARCHAR) | {
"SQL_Query": "SELECT team_2 FROM table_name_60 WHERE team_1 = \"valletta\""
} |
Who played defensive when the rookie Craig Point was playing during week 6? | CREATE TABLE table_name_97 (defensive VARCHAR, rookie VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT defensive FROM table_name_97 WHERE rookie = \"craig point\" AND week = 6"
} |
What was the first week that had a transition with Pat Mccready? | CREATE TABLE table_name_6 (week INTEGER, transition VARCHAR) | {
"SQL_Query": "SELECT MIN(week) FROM table_name_6 WHERE transition = \"pat mccready\""
} |
Who was the rookie who played when Matt Vinc was defensive and Pat Maddalena was offensive? | CREATE TABLE table_name_6 (rookie VARCHAR, defensive VARCHAR, offensive VARCHAR) | {
"SQL_Query": "SELECT rookie FROM table_name_6 WHERE defensive = \"matt vinc\" AND offensive = \"pat maddalena\""
} |
Who played as overall when Josh Sims was transition? | CREATE TABLE table_name_16 (overall VARCHAR, transition VARCHAR) | {
"SQL_Query": "SELECT overall FROM table_name_16 WHERE transition = \"josh sims\""
} |
How large was the crowd at Glenferrie Oval? | CREATE TABLE table_name_98 (crowd INTEGER, venue VARCHAR) | {
"SQL_Query": "SELECT SUM(crowd) FROM table_name_98 WHERE venue = \"glenferrie oval\""
} |
who is the actor of the character ariadne oliver? | CREATE TABLE table_name_62 (actor VARCHAR, character VARCHAR) | {
"SQL_Query": "SELECT actor FROM table_name_62 WHERE character = \"ariadne oliver\""
} |
What is the largest grid with a Driver of ralph firman, and a Lap smaller than 18? | CREATE TABLE table_name_15 (grid INTEGER, driver VARCHAR, laps VARCHAR) | {
"SQL_Query": "SELECT MAX(grid) FROM table_name_15 WHERE driver = \"ralph firman\" AND laps < 18"
} |
What time/retired has a Grid larger than 3, and a Driver of kimi räikkönen? | CREATE TABLE table_name_65 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR) | {
"SQL_Query": "SELECT time_retired FROM table_name_65 WHERE grid > 3 AND driver = \"kimi räikkönen\""
} |
What is the score on December 31? | CREATE TABLE table_name_13 (score VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_13 WHERE date = \"december 31\""
} |
What's the lowest team 1 number that had asolo fonte (veneto b) as the Agg.? | CREATE TABLE table_name_89 (team_1 INTEGER, agg VARCHAR) | {
"SQL_Query": "SELECT MIN(team_1) FROM table_name_89 WHERE agg = \"asolo fonte (veneto b)\""
} |
What is the grid total for kazuyoshi hoshino with under 71 laps? | CREATE TABLE table_name_22 (grid INTEGER, driver VARCHAR, laps VARCHAR) | {
"SQL_Query": "SELECT SUM(grid) FROM table_name_22 WHERE driver = \"kazuyoshi hoshino\" AND laps < 71"
} |
What driver has grid 2 and over 72 laps? | CREATE TABLE table_name_35 (driver VARCHAR, laps VARCHAR, grid VARCHAR) | {
"SQL_Query": "SELECT driver FROM table_name_35 WHERE laps > 72 AND grid = 2"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.