question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
The game that had a record of 39-25, what was the score?
CREATE TABLE table_name_77 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_77 WHERE record = "39-25"
What is every score when date is November 10?
CREATE TABLE table_23248940_6 (score VARCHAR, date VARCHAR)
SELECT score FROM table_23248940_6 WHERE date = "November 10"
When was tony parker (guard) born?
CREATE TABLE table_name_31 (year_born INTEGER, position VARCHAR, player VARCHAR)
SELECT MAX(year_born) FROM table_name_31 WHERE position = "guard" AND player = "tony parker"
In district Pennsylvania 11, what was the total numbers of results?
CREATE TABLE table_1805191_39 (results VARCHAR, district VARCHAR)
SELECT COUNT(results) FROM table_1805191_39 WHERE district = "Pennsylvania 11"
What is the average attendance that has april 12 as the date?
CREATE TABLE table_name_14 (attendance INTEGER, date VARCHAR)
SELECT AVG(attendance) FROM table_name_14 WHERE date = "april 12"
How many high points were there in the game 67?
CREATE TABLE table_11960944_7 (high_points VARCHAR, game VARCHAR)
SELECT COUNT(high_points) FROM table_11960944_7 WHERE game = 67
If second is Sergey Sirotkin, what is the third name?
CREATE TABLE table_25563779_4 (third VARCHAR, second VARCHAR)
SELECT third FROM table_25563779_4 WHERE second = "Sergey Sirotkin"
How many Atts that have Yards of 43 and a Long larger than 43?
CREATE TABLE table_name_65 (att INTEGER, yards VARCHAR, long VARCHAR)
SELECT SUM(att) FROM table_name_65 WHERE yards = 43 AND long > 43
What's the number of users in the Nisibon-Yuma within the Del Este district?
CREATE TABLE table_20018310_1 (users___number_ VARCHAR, irrigation_district VARCHAR, juntas_de_regantes__wub_ VARCHAR)
SELECT users___number_ FROM table_20018310_1 WHERE irrigation_district = "Del Este" AND juntas_de_regantes__wub_ = "Nisibon-Yuma"
What location had 25/25 fatalities?
CREATE TABLE table_name_15 (location VARCHAR, fatalities VARCHAR)
SELECT location FROM table_name_15 WHERE fatalities = "25/25"
What is the least amount of silver when there is less than 0 bronze?
CREATE TABLE table_name_83 (silver INTEGER, bronze INTEGER)
SELECT MIN(silver) FROM table_name_83 WHERE bronze < 0
What was the away teams score at Princes Park?
CREATE TABLE table_name_27 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_27 WHERE venue = "princes park"
What's the tournament when 1992 is A?
CREATE TABLE table_name_6 (tournament VARCHAR)
SELECT tournament FROM table_name_6 WHERE 1992 = "a"
WHich Venue is in 1994?
CREATE TABLE table_name_60 (venue VARCHAR, year VARCHAR)
SELECT venue FROM table_name_60 WHERE year = 1994
What's the score of the game with 31-29 record?
CREATE TABLE table_22669044_10 (score VARCHAR, record VARCHAR)
SELECT score FROM table_22669044_10 WHERE record = "31-29"
What is the 1st leg that has hapoel jerusalem?
CREATE TABLE table_name_75 (team__number1 VARCHAR)
SELECT 1 AS st_leg FROM table_name_75 WHERE team__number1 = "hapoel jerusalem"
List the name and phone number of all suppliers in the alphabetical order of their addresses.
CREATE TABLE addresses (address_id VARCHAR, address_details VARCHAR); CREATE TABLE supplier_addresses (supplier_id VARCHAR, address_id VARCHAR); CREATE TABLE Suppliers (supplier_name VARCHAR, supplier_phone VARCHAR, supplier_id VARCHAR)
SELECT T1.supplier_name, T1.supplier_phone FROM Suppliers AS T1 JOIN supplier_addresses AS T2 ON T1.supplier_id = T2.supplier_id JOIN addresses AS T3 ON T2.address_id = T3.address_id ORDER BY T3.address_details
When was successor David Atwood (R) seated?
CREATE TABLE table_2417345_4 (date_successor_seated VARCHAR, successor VARCHAR)
SELECT date_successor_seated FROM table_2417345_4 WHERE successor = "David Atwood (R)"
what is the type when the bie recognised is yes, festival name is floriade and the year(s) is 2002?
CREATE TABLE table_name_45 (type VARCHAR, year_s_ VARCHAR, bie_recognised VARCHAR, festival_name VARCHAR)
SELECT type FROM table_name_45 WHERE bie_recognised = "yes" AND festival_name = "floriade" AND year_s_ = "2002"
What was the score for the To par of +1?
CREATE TABLE table_name_53 (score VARCHAR, to_par VARCHAR)
SELECT score FROM table_name_53 WHERE to_par = "+1"
Who is the home team that played at MCG?
CREATE TABLE table_name_43 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_43 WHERE venue = "mcg"
What is the Time of the Belarus Player with a Rank larger than 2 and Notes of FB?
CREATE TABLE table_name_98 (time VARCHAR, country VARCHAR, rank VARCHAR, notes VARCHAR)
SELECT time FROM table_name_98 WHERE rank > 2 AND notes = "fb" AND country = "belarus"
What was the result of Game 3 of this searson?
CREATE TABLE table_name_95 (result VARCHAR, game VARCHAR)
SELECT result FROM table_name_95 WHERE game = "game 3"
Which NFL team has a pick# less than 200 for Travis Davis?
CREATE TABLE table_name_23 (nfl_team VARCHAR, pick__number VARCHAR, player VARCHAR)
SELECT nfl_team FROM table_name_23 WHERE pick__number < 200 AND player = "travis davis"
Show the card type codes and the number of transactions.
CREATE TABLE Financial_transactions (card_id VARCHAR); CREATE TABLE Customers_cards (card_type_code VARCHAR, card_id VARCHAR)
SELECT T2.card_type_code, COUNT(*) FROM Financial_transactions AS T1 JOIN Customers_cards AS T2 ON T1.card_id = T2.card_id GROUP BY T2.card_type_code
Name the total episode for runtime of 24:11
CREATE TABLE table_2105721_1 (episode VARCHAR, run_time VARCHAR)
SELECT COUNT(episode) FROM table_2105721_1 WHERE run_time = "24:11"
who is the winner when the score is 71-62?
CREATE TABLE table_name_64 (winner VARCHAR, score VARCHAR)
SELECT winner FROM table_name_64 WHERE score = "71-62"
What was the prize won by Sebastian Ruthenberg?
CREATE TABLE table_name_88 (prize VARCHAR, name VARCHAR)
SELECT prize FROM table_name_88 WHERE name = "sebastian ruthenberg"
What is the Name of the Player with a Rank of 23 or less, Heat of 4 and Result of 55.91?
CREATE TABLE table_name_84 (name VARCHAR, result VARCHAR, heat VARCHAR, rank VARCHAR)
SELECT name FROM table_name_84 WHERE heat = 4 AND rank < 23 AND result = "55.91"
how many times was total considered when hancock # was 1394
CREATE TABLE table_19681738_1 (total VARCHAR, hancock__number VARCHAR)
SELECT COUNT(total) FROM table_19681738_1 WHERE hancock__number = 1394
What is the lowest ERP W of the 67829 Facility ID?
CREATE TABLE table_name_54 (erp_w INTEGER, facility_id VARCHAR)
SELECT MIN(erp_w) FROM table_name_54 WHERE facility_id = 67829
Find all the female members of club "Bootup Baltimore". Show the first name and last name.
CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE student (fname VARCHAR, lname VARCHAR, stuid VARCHAR, sex VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR)
SELECT t3.fname, t3.lname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Bootup Baltimore" AND t3.sex = "F"
What's the Korean word for Pohang?
CREATE TABLE table_name_89 (korean VARCHAR, city VARCHAR)
SELECT korean FROM table_name_89 WHERE city = "pohang"
How many episodes were numbered 5?
CREATE TABLE table_2501754_2 (production_count VARCHAR, episode__number VARCHAR)
SELECT COUNT(production_count) FROM table_2501754_2 WHERE episode__number = 5
Bldr of mcw&f, and a Year smaller than 1927, and a LT Nos of 9820-9821 has what type?
CREATE TABLE table_name_19 (type VARCHAR, lt_nos VARCHAR, bldr VARCHAR, year VARCHAR)
SELECT type FROM table_name_19 WHERE bldr = "mcw&f" AND year < 1927 AND lt_nos = "9820-9821"
What average game has January 30 as the date?
CREATE TABLE table_name_45 (game INTEGER, date VARCHAR)
SELECT AVG(game) FROM table_name_45 WHERE date = "january 30"
WHICH Venue IS after 1992 with a Score of 1 – 0 and a Winners of us chaouia?
CREATE TABLE table_name_93 (venue VARCHAR, winners VARCHAR, year VARCHAR, score VARCHAR)
SELECT venue FROM table_name_93 WHERE year > 1992 AND score = "1 – 0" AND winners = "us chaouia"
List the director and producer when Nick Hewer and Saira Khan were starring.
CREATE TABLE table_24725951_1 (directed_and_produced_by VARCHAR, celebrities VARCHAR)
SELECT directed_and_produced_by FROM table_24725951_1 WHERE celebrities = "Nick Hewer and Saira Khan"
WHO WROTE THE STORY WITH THE PRODUCTION CODE OF 1ADK-03
CREATE TABLE table_12033013_1 (written_by VARCHAR, production_code VARCHAR)
SELECT written_by FROM table_12033013_1 WHERE production_code = "1ADK-03"
Name the replaced by where date of vacancy is 31 december 2008 where position in table is 1st
CREATE TABLE table_17039232_3 (replaced_by VARCHAR, date_of_vacancy VARCHAR, position_in_table VARCHAR)
SELECT replaced_by FROM table_17039232_3 WHERE date_of_vacancy = "31 December 2008" AND position_in_table = "1st"
What is the total number of laps done by Massimo Roccoli when his grid was smaller than 4?
CREATE TABLE table_name_45 (laps VARCHAR, rider VARCHAR, grid VARCHAR)
SELECT COUNT(laps) FROM table_name_45 WHERE rider = "massimo roccoli" AND grid < 4
What was the name of the episode with a production code of 3ajn20?
CREATE TABLE table_23242968_1 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_23242968_1 WHERE production_code = "3AJN20"
how many player with no being 12
CREATE TABLE table_12962773_5 (player VARCHAR, no VARCHAR)
SELECT COUNT(player) FROM table_12962773_5 WHERE no = 12
What team operates car 11?
CREATE TABLE table_name_28 (team VARCHAR, car_no VARCHAR)
SELECT team FROM table_name_28 WHERE car_no = "11"
What is the Final Four with a win percentage of .750?
CREATE TABLE table_name_32 (final_four VARCHAR, win__percentage VARCHAR)
SELECT final_four FROM table_name_32 WHERE win__percentage = ".750"
What is Power HP (kW), when First Year is greater than 1965, when Distribution is "International", when Engine is V6 Biturbo, and when Model is "425"?
CREATE TABLE table_name_60 (power_hp__kw_ VARCHAR, model VARCHAR, engine VARCHAR, first_year VARCHAR, distribution VARCHAR)
SELECT power_hp__kw_ FROM table_name_60 WHERE first_year > 1965 AND distribution = "international" AND engine = "v6 biturbo" AND model = "425"
What is the team when the date of appointment is 23 march 2011?
CREATE TABLE table_26914854_3 (team VARCHAR, date_of_appointment VARCHAR)
SELECT team FROM table_26914854_3 WHERE date_of_appointment = "23 March 2011"
On what Date is Carlton the Away Team?
CREATE TABLE table_name_98 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_98 WHERE away_team = "carlton"
WHAT IS THE PLAYER WITH A PICK OF 219?
CREATE TABLE table_name_1 (player VARCHAR, pick VARCHAR)
SELECT player FROM table_name_1 WHERE pick = 219
What is Position/ Eliminated, when Age¹ is less than 22, and when Full Name is "Muhammad Fairul Azreen Bin Mohd Zahid"?
CREATE TABLE table_name_29 (position__eliminated VARCHAR, age¹ VARCHAR, full_name VARCHAR)
SELECT position__eliminated FROM table_name_29 WHERE age¹ < 22 AND full_name = "muhammad fairul azreen bin mohd zahid"
Who won the stage when Mark Cavendish led the points classification, Rinaldo Nocentini led the general classification, and the stage was less than 11.0?
CREATE TABLE table_14395920_2 (winner VARCHAR, stage VARCHAR, points_classification VARCHAR, general_classification VARCHAR)
SELECT winner FROM table_14395920_2 WHERE points_classification = "Mark Cavendish" AND general_classification = "Rinaldo Nocentini" AND stage < 11.0
I want to know the player with tries more than 1 and position of hooker with points less than 54
CREATE TABLE table_name_18 (player VARCHAR, position VARCHAR, tries VARCHAR, points VARCHAR)
SELECT player FROM table_name_18 WHERE tries > 1 AND points < 54 AND position = "hooker"
Name the appearance for independence bowl
CREATE TABLE table_2517159_1 (appearances VARCHAR, name_of_bowl VARCHAR)
SELECT COUNT(appearances) FROM table_2517159_1 WHERE name_of_bowl = "Independence Bowl"
What is the birth date of the duchess who married on 1 May 1844?
CREATE TABLE table_name_16 (birth VARCHAR, marriage VARCHAR)
SELECT birth FROM table_name_16 WHERE marriage = "1 may 1844"
What was the score of essendon when they were the away team?
CREATE TABLE table_name_15 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_15 WHERE away_team = "essendon"
Name the location that was founded 1798
CREATE TABLE table_2293402_2 (location VARCHAR, founded VARCHAR)
SELECT location FROM table_2293402_2 WHERE founded = 1798
What was the passenger fare for Lansing, when the passenger fare for Kalamazoo was $599.39?
CREATE TABLE table_name_60 (lansing__lan_ VARCHAR, kalamazoo__azo_ VARCHAR)
SELECT lansing__lan_ FROM table_name_60 WHERE kalamazoo__azo_ = "$599.39"
What's the lowest February for less than 57 points?
CREATE TABLE table_name_32 (february INTEGER, points INTEGER)
SELECT MIN(february) FROM table_name_32 WHERE points < 57
Which Tries for has Points against larger than 87, and Tries against smaller than 28, and Points diff of +63?
CREATE TABLE table_name_69 (tries_for INTEGER, points_diff VARCHAR, points_against VARCHAR, tries_against VARCHAR)
SELECT AVG(tries_for) FROM table_name_69 WHERE points_against > 87 AND tries_against < 28 AND points_diff = "+63"
What is the party affiliation of New York 26?
CREATE TABLE table_1805191_33 (party VARCHAR, district VARCHAR)
SELECT party FROM table_1805191_33 WHERE district = "New York 26"
What is the sum of the lap with a finish of 24?
CREATE TABLE table_name_60 (laps INTEGER, finish VARCHAR)
SELECT SUM(laps) FROM table_name_60 WHERE finish = "24"
In the tournament of HSBC Champions, what was the sum of the Starts with Wins lower than 0?
CREATE TABLE table_name_52 (starts INTEGER, tournament VARCHAR, wins VARCHAR)
SELECT SUM(starts) FROM table_name_52 WHERE tournament = "hsbc champions" AND wins < 0
Who was South Melbourne's away team opponent?
CREATE TABLE table_name_8 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_8 WHERE home_team = "south melbourne"
What was the final score for the game played against the New York Knicks?
CREATE TABLE table_name_11 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_11 WHERE opponent = "new york knicks"
What's China's heat for Zhang Lin in a lane after 6?
CREATE TABLE table_name_61 (heat INTEGER, lane VARCHAR, nationality VARCHAR, name VARCHAR)
SELECT SUM(heat) FROM table_name_61 WHERE nationality = "china" AND name = "zhang lin" AND lane > 6
What is the highest number listed?
CREATE TABLE table_12113888_1 (number INTEGER)
SELECT MAX(number) FROM table_12113888_1
What is the average number of rounds that Lance Gibson fought when his record was 1-1?
CREATE TABLE table_name_52 (round INTEGER, record VARCHAR)
SELECT AVG(round) FROM table_name_52 WHERE record = "1-1"
Which Office has a Republican ticket of daniel h. conway?
CREATE TABLE table_name_63 (office VARCHAR, republican_ticket VARCHAR)
SELECT office FROM table_name_63 WHERE republican_ticket = "daniel h. conway"
Who directed An Egg Scramble?
CREATE TABLE table_name_53 (director VARCHAR, title VARCHAR)
SELECT director FROM table_name_53 WHERE title = "an egg scramble"
What are the miles when the Carvill Hurricane Index (CHI) is equal to 9.9?
CREATE TABLE table_15416002_1 (r_miles_ VARCHAR, chi VARCHAR)
SELECT r_miles_ FROM table_15416002_1 WHERE chi = "9.9"
Which Round has an Opponent of ryan bixler?
CREATE TABLE table_name_6 (round VARCHAR, opponent VARCHAR)
SELECT round FROM table_name_6 WHERE opponent = "ryan bixler"
With 4645 as the production number what was the title?
CREATE TABLE table_name_4 (title VARCHAR, production_num VARCHAR)
SELECT title FROM table_name_4 WHERE production_num = 4645
Which Year is the highest one that has a Reg Season of 3rd, western, and a Division larger than 2?
CREATE TABLE table_name_30 (year INTEGER, reg_season VARCHAR, division VARCHAR)
SELECT MAX(year) FROM table_name_30 WHERE reg_season = "3rd, western" AND division > 2
Was it a win or loss for Wanganui in round 3?
CREATE TABLE table_26847237_1 (win_loss VARCHAR, round__number VARCHAR)
SELECT win_loss FROM table_26847237_1 WHERE round__number = "Round 3"
Show the student IDs and numbers of friends corresponding to each.
CREATE TABLE Friend (student_id VARCHAR)
SELECT student_id, COUNT(*) FROM Friend GROUP BY student_id
What country has a time of 8:03.61?
CREATE TABLE table_name_61 (country VARCHAR, time VARCHAR)
SELECT country FROM table_name_61 WHERE time = "8:03.61"
Who is team 1 when team 2 is koper?
CREATE TABLE table_19294812_2 (team_1 VARCHAR, team_2 VARCHAR)
SELECT team_1 FROM table_19294812_2 WHERE team_2 = "Koper"
Name the stage for 08:46
CREATE TABLE table_name_85 (stage VARCHAR, time__eest_ VARCHAR)
SELECT stage FROM table_name_85 WHERE time__eest_ = "08:46"
What is the Series with a High rebounds with gasol (10)?
CREATE TABLE table_name_54 (series VARCHAR, high_rebounds VARCHAR)
SELECT series FROM table_name_54 WHERE high_rebounds = "gasol (10)"
How many championships are there when there are 6 points
CREATE TABLE table_26223231_1 (series VARCHAR, points VARCHAR)
SELECT series FROM table_26223231_1 WHERE points = "6"
When Anchero Pantaleone was the elector what is under nationality?
CREATE TABLE table_name_11 (nationality VARCHAR, elector VARCHAR)
SELECT nationality FROM table_name_11 WHERE elector = "anchero pantaleone"
Which movie originated in Bulgaria?
CREATE TABLE table_name_9 (film_title_used_in_nomination VARCHAR, country VARCHAR)
SELECT film_title_used_in_nomination FROM table_name_9 WHERE country = "bulgaria"
Find the student first and last names and grade points of all enrollments.
CREATE TABLE ENROLLED_IN (Grade VARCHAR, StuID VARCHAR); CREATE TABLE STUDENT (Fname VARCHAR, LName VARCHAR, StuID VARCHAR); CREATE TABLE GRADECONVERSION (gradepoint VARCHAR, lettergrade VARCHAR)
SELECT T3.Fname, T3.LName, T2.gradepoint FROM ENROLLED_IN AS T1 JOIN GRADECONVERSION AS T2 JOIN STUDENT AS T3 ON T1.Grade = T2.lettergrade AND T1.StuID = T3.StuID
Name the birth date for estonia for spiker and height of 189
CREATE TABLE table_25058562_2 (birth_date VARCHAR, height VARCHAR, nationality VARCHAR, position VARCHAR)
SELECT birth_date FROM table_25058562_2 WHERE nationality = "Estonia" AND position = "Spiker" AND height = 189
How many players scored the most points when the opposing team was New Orleans/Oklahoma City?
CREATE TABLE table_13762472_3 (high_points VARCHAR, team VARCHAR)
SELECT COUNT(high_points) FROM table_13762472_3 WHERE team = "New Orleans/Oklahoma City"
What is the mascot with the colors green and navy?
CREATE TABLE table_15873547_1 (mascot VARCHAR, colors VARCHAR)
SELECT mascot FROM table_15873547_1 WHERE colors = "Green and Navy"
What day did Bernhard Langer (2) win?
CREATE TABLE table_15346009_1 (date VARCHAR, winner VARCHAR)
SELECT date FROM table_15346009_1 WHERE winner = "Bernhard Langer (2)"
Which Goals For has a Position larger than 2, a Lost larger than 18, a Team of matlock town, and a Goals Against larger than 79?
CREATE TABLE table_name_74 (goals_for INTEGER, goals_against VARCHAR, team VARCHAR, position VARCHAR, lost VARCHAR)
SELECT MAX(goals_for) FROM table_name_74 WHERE position > 2 AND lost > 18 AND team = "matlock town" AND goals_against > 79
Name the rank with laps of 200 and qual of 148.374
CREATE TABLE table_name_5 (rank VARCHAR, laps VARCHAR, qual VARCHAR)
SELECT rank FROM table_name_5 WHERE laps = 200 AND qual = "148.374"
what is the name and age of the youngest winning pilot?
CREATE TABLE pilot (name VARCHAR, age VARCHAR, pilot_id VARCHAR); CREATE TABLE MATCH (winning_pilot VARCHAR)
SELECT t1.name, t1.age FROM pilot AS t1 JOIN MATCH AS t2 ON t1.pilot_id = t2.winning_pilot ORDER BY t1.age LIMIT 1
What is the date of the game with an attendance larger than 62,491?
CREATE TABLE table_name_55 (date VARCHAR, attendance INTEGER)
SELECT date FROM table_name_55 WHERE attendance > 62 OFFSET 491
what is the report where the location is kyalami?
CREATE TABLE table_1140085_2 (report VARCHAR, location VARCHAR)
SELECT report FROM table_1140085_2 WHERE location = "Kyalami"
When was the Election of 1953?
CREATE TABLE table_name_46 (date VARCHAR, election VARCHAR)
SELECT date FROM table_name_46 WHERE election = "1953"
What's the highest amount of Games recorded that have more than 10 assists?
CREATE TABLE table_name_64 (games INTEGER, assists INTEGER)
SELECT MAX(games) FROM table_name_64 WHERE assists > 10
How many wins did Ayr United have?
CREATE TABLE table_name_79 (wins VARCHAR, club VARCHAR)
SELECT wins FROM table_name_79 WHERE club = "ayr united"
List the dates of games by the home team name in descending order.
CREATE TABLE game (Date VARCHAR, home_team VARCHAR)
SELECT Date FROM game ORDER BY home_team DESC
What's the name of the song by afro-dite that had a points total greater than 100?
CREATE TABLE table_name_31 (song VARCHAR, points VARCHAR, artist VARCHAR)
SELECT song FROM table_name_31 WHERE points > 100 AND artist = "afro-dite"
What's the highest number of silver for 9 bronze and less than 27 total?
CREATE TABLE table_name_43 (silver INTEGER, bronze VARCHAR, total VARCHAR)
SELECT MAX(silver) FROM table_name_43 WHERE bronze = 9 AND total < 27
What is the latest Date, when Label is Captain Oi! Records?
CREATE TABLE table_name_58 (date INTEGER, label VARCHAR)
SELECT MAX(date) FROM table_name_58 WHERE label = "captain oi! records"
Which Time/Retired has a Grid of 2?
CREATE TABLE table_name_21 (time_retired VARCHAR, grid VARCHAR)
SELECT time_retired FROM table_name_21 WHERE grid = 2