answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT record FROM table_name_95 WHERE score = "w 100-99"
CREATE TABLE table_name_95 (record VARCHAR, score VARCHAR)
What is the record for the w 100-99 score?
SELECT location FROM table_name_67 WHERE record = "23-17"
CREATE TABLE table_name_67 (location VARCHAR, record VARCHAR)
What is the location for the 23-17 record?
SELECT location FROM table_name_10 WHERE game < 44 AND record = "20-16"
CREATE TABLE table_name_10 (location VARCHAR, game VARCHAR, record VARCHAR)
What is the location before game 44, and a 20-16 record?
SELECT result FROM table_name_69 WHERE match = "match reports"
CREATE TABLE table_name_69 (result VARCHAR, match VARCHAR)
What was the result for the match with entry Match Reports?
SELECT location FROM table_name_13 WHERE result = "3-3"
CREATE TABLE table_name_13 (location VARCHAR, result VARCHAR)
What was the location of the match that had a result of 3-3?
SELECT lineup FROM table_name_65 WHERE competition = "group stage" AND match = "12"
CREATE TABLE table_name_65 (lineup VARCHAR, competition VARCHAR, match VARCHAR)
What was the lineup for match 12 that had a competition of Group Stage?
SELECT result FROM table_name_97 WHERE location = "boston"
CREATE TABLE table_name_97 (result VARCHAR, location VARCHAR)
What was the result for the match held in Boston?
SELECT SUM(game) FROM table_name_42 WHERE opponent = "@ st. louis hawks"
CREATE TABLE table_name_42 (game INTEGER, opponent VARCHAR)
How many total games were played against @ St. Louis Hawks this season?
SELECT date FROM table_name_39 WHERE game = 48
CREATE TABLE table_name_39 (date VARCHAR, game VARCHAR)
On what day was Game 48 played?
SELECT AVG(pick) FROM table_name_17 WHERE round > 1 AND player = "reyshawn terry"
CREATE TABLE table_name_17 (pick INTEGER, round VARCHAR, player VARCHAR)
What is the pick number later than round 1, for Reyshawn Terry?
SELECT AVG(round) FROM table_name_90 WHERE player = "ty lawson" AND pick < 18
CREATE TABLE table_name_90 (round INTEGER, player VARCHAR, pick VARCHAR)
What round was the player Ty Lawson with a pick earlier than 18?
SELECT COUNT(pick) FROM table_name_21 WHERE player = "danny green" AND round < 2
CREATE TABLE table_name_21 (pick VARCHAR, player VARCHAR, round VARCHAR)
What is the pick number for Danny Green in a round less than 2?
SELECT COUNT(pick) FROM table_name_60 WHERE year < 2009 AND round > 1
CREATE TABLE table_name_60 (pick VARCHAR, year VARCHAR, round VARCHAR)
What is the pick number in a year earlier than 2009, with a round higher than 1?
SELECT notes FROM table_name_40 WHERE year < 2013 AND language = "mandarin chinese" AND network = "ctv"
CREATE TABLE table_name_40 (notes VARCHAR, network VARCHAR, year VARCHAR, language VARCHAR)
What are the notes for the Mandarin Chinese program on CTV earlier than 2013?
SELECT language FROM table_name_64 WHERE title = "strong heart"
CREATE TABLE table_name_64 (language VARCHAR, title VARCHAR)
What is the language for Strong Heart?
SELECT title FROM table_name_96 WHERE language = "korean" AND network = "kbs2"
CREATE TABLE table_name_96 (title VARCHAR, language VARCHAR, network VARCHAR)
What is the title for the Korean progran on KBS2?
SELECT network FROM table_name_70 WHERE year < 2011 AND title = "star king"
CREATE TABLE table_name_70 (network VARCHAR, year VARCHAR, title VARCHAR)
What is the network that aired Star King prior to 2011?
SELECT notes FROM table_name_79 WHERE title = "happy camp"
CREATE TABLE table_name_79 (notes VARCHAR, title VARCHAR)
What are the notes for Happy Camp?
SELECT MIN(pick) FROM table_name_22 WHERE college = "ohio state"
CREATE TABLE table_name_22 (pick INTEGER, college VARCHAR)
Which Pick has a College of ohio state?
SELECT COUNT(round) FROM table_name_3 WHERE position = "lb" AND pick < 25
CREATE TABLE table_name_3 (round VARCHAR, position VARCHAR, pick VARCHAR)
Which Round has a Position of lb, and a Pick smaller than 25?
SELECT AVG(week) FROM table_name_93 WHERE result = "l 56-3"
CREATE TABLE table_name_93 (week INTEGER, result VARCHAR)
Which week has a result L 56-3?
SELECT place FROM table_name_47 WHERE player = "raymond floyd"
CREATE TABLE table_name_47 (place VARCHAR, player VARCHAR)
Where is the player Raymond Floyd?
SELECT country FROM table_name_44 WHERE score = 71 - 72 - 73 - 69 = 285
CREATE TABLE table_name_44 (country VARCHAR, score VARCHAR)
Which country has a score of 71-72-73-69=285?
SELECT MAX(money___) AS $__ FROM table_name_65 WHERE score = 69 - 71 - 70 - 74 = 284
CREATE TABLE table_name_65 (money___ INTEGER, score VARCHAR)
What is the highest Money ( $ ), when Score is "69-71-70-74=284"?
SELECT place FROM table_name_3 WHERE score = 71 - 71 - 69 - 71 = 282
CREATE TABLE table_name_3 (place VARCHAR, score VARCHAR)
What is Place, when Score is "71-71-69-71=282"?
SELECT score FROM table_name_76 WHERE player = "dow finsterwald"
CREATE TABLE table_name_76 (score VARCHAR, player VARCHAR)
What is Score, when Player is "Dow Finsterwald"?
SELECT venue FROM table_name_58 WHERE notes = "1:23:07"
CREATE TABLE table_name_58 (venue VARCHAR, notes VARCHAR)
Which venue did the runner have a note of 1:23:07?
SELECT notes FROM table_name_94 WHERE year = 2008 AND position = "19th"
CREATE TABLE table_name_94 (notes VARCHAR, year VARCHAR, position VARCHAR)
What is the note result when the runner finished 19th in 2008?
SELECT points_1 FROM table_name_93 WHERE position < 13 AND goal_difference = "+16"
CREATE TABLE table_name_93 (points_1 VARCHAR, position VARCHAR, goal_difference VARCHAR)
What are the points 1 for the team with position less than 13 and goal difference of +16?
SELECT goal_difference FROM table_name_29 WHERE goals_against < 54 AND goals_for > 51 AND points_1 = "63"
CREATE TABLE table_name_29 (goal_difference VARCHAR, points_1 VARCHAR, goals_against VARCHAR, goals_for VARCHAR)
What is the goal difference where the goals against is less than 54, goals for is greater than 51 and points 1 is 63?
SELECT COUNT(lost) FROM table_name_65 WHERE goal_difference = "+13" AND drawn > 12
CREATE TABLE table_name_65 (lost VARCHAR, goal_difference VARCHAR, drawn VARCHAR)
What is the number of games lost when goal difference is +13 and draws are more than 12?
SELECT fin_pos FROM table_name_21 WHERE grid = "6"
CREATE TABLE table_name_21 (fin_pos VARCHAR, grid VARCHAR)
What was the finishing position for the car that started in grid 6?
SELECT team FROM table_name_2 WHERE grid = "11"
CREATE TABLE table_name_2 (team VARCHAR, grid VARCHAR)
What team started in grid 11?
SELECT time_retired FROM table_name_93 WHERE car_no = "6"
CREATE TABLE table_name_93 (time_retired VARCHAR, car_no VARCHAR)
What was the time/retired of car number 6.
SELECT grid FROM table_name_9 WHERE points = "14"
CREATE TABLE table_name_9 (grid VARCHAR, points VARCHAR)
What was the grid number of the team and driver with 14 points?
SELECT opponent FROM table_name_73 WHERE outcome = "runner-up" AND surface = "clay"
CREATE TABLE table_name_73 (opponent VARCHAR, outcome VARCHAR, surface VARCHAR)
Who did Thomaz Bellucci play against when he became runner-up on a clay surface?
SELECT tournament FROM table_name_82 WHERE outcome = "runner-up" AND surface = "clay"
CREATE TABLE table_name_82 (tournament VARCHAR, outcome VARCHAR, surface VARCHAR)
What tournament did Thomaz Bellucci become runner-up on a clay surface?
SELECT surface FROM table_name_66 WHERE opponent = "tommy robredo"
CREATE TABLE table_name_66 (surface VARCHAR, opponent VARCHAR)
What type of surface did Thomaz Bellucci play against tommy robredo?
SELECT res FROM table_name_12 WHERE opponent = "ryan schultz"
CREATE TABLE table_name_12 (res VARCHAR, opponent VARCHAR)
What is the result of the match against Ryan Schultz?
SELECT round FROM table_name_39 WHERE opponent = "cedric marks"
CREATE TABLE table_name_39 (round VARCHAR, opponent VARCHAR)
What round was the game against Cedric Marks?
SELECT record FROM table_name_96 WHERE opponent = "chris mounce"
CREATE TABLE table_name_96 (record VARCHAR, opponent VARCHAR)
What was the record of the match against Chris Mounce?
SELECT method FROM table_name_75 WHERE round = "2" AND res = "win" AND opponent = "nick gilardi"
CREATE TABLE table_name_75 (method VARCHAR, opponent VARCHAR, round VARCHAR, res VARCHAR)
What is the method in the round 2 win over Nick Gilardi?
SELECT no_7 FROM table_name_70 WHERE no_3 = "sophia" AND no_10 = "abigail"
CREATE TABLE table_name_70 (no_7 VARCHAR, no_3 VARCHAR, no_10 VARCHAR)
Who is number 7 when Sophia is number 3 and Abigail is number 10?
SELECT region__year_ FROM table_name_12 WHERE no_7 = "abigail" AND no_1 = "sophia" AND no_5 = "aaliyah"
CREATE TABLE table_name_12 (region__year_ VARCHAR, no_5 VARCHAR, no_7 VARCHAR, no_1 VARCHAR)
Which region (year) has Abigail at number 7, Sophia at number 1 and Aaliyah at number 5?
SELECT no_4 FROM table_name_24 WHERE no_10 = "harper" AND no_5 = "abigail"
CREATE TABLE table_name_24 (no_4 VARCHAR, no_10 VARCHAR, no_5 VARCHAR)
Who is number 4 when Harper is number 10 and Abigail is number 5?
SELECT player FROM table_name_32 WHERE to_par = "+1" AND score = 75 - 68 = 143
CREATE TABLE table_name_32 (player VARCHAR, to_par VARCHAR, score VARCHAR)
What is Player, when To Par is "+1", and when Score is "75-68=143"?
SELECT score FROM table_name_12 WHERE player = "andy north"
CREATE TABLE table_name_12 (score VARCHAR, player VARCHAR)
What is Score, when Player is "Andy North"?
SELECT to_par FROM table_name_31 WHERE score = 69 - 72 = 141
CREATE TABLE table_name_31 (to_par VARCHAR, score VARCHAR)
What is To Par, when Score is "69-72=141"
SELECT place FROM table_name_66 WHERE score = 73 - 71 = 144 AND player = "scott simpson"
CREATE TABLE table_name_66 (place VARCHAR, player VARCHAR, score VARCHAR)
What is Place, when Score is "73-71=144", and when Player is "Scott Simpson"?
SELECT score FROM table_name_13 WHERE country = "united states" AND player = "john mahaffey"
CREATE TABLE table_name_13 (score VARCHAR, country VARCHAR, player VARCHAR)
What is Score, when Country is "United States", and when Player is "John Mahaffey"?
SELECT to_par FROM table_name_6 WHERE place = "t1" AND player = "joey rassett"
CREATE TABLE table_name_6 (to_par VARCHAR, place VARCHAR, player VARCHAR)
What is To Par, when Place is "T1", and when Player is "Joey Rassett"?
SELECT score FROM table_name_21 WHERE away_team = "brighton & hove albion"
CREATE TABLE table_name_21 (score VARCHAR, away_team VARCHAR)
What was the score when the away team was brighton & hove albion?
SELECT date FROM table_name_31 WHERE away_team = "burnley"
CREATE TABLE table_name_31 (date VARCHAR, away_team VARCHAR)
When was the away team burnley?
SELECT home_team FROM table_name_37 WHERE away_team = "reading"
CREATE TABLE table_name_37 (home_team VARCHAR, away_team VARCHAR)
Which home team had an away team of Reading?
SELECT year FROM table_name_83 WHERE accolade = "scottish albums of the decade"
CREATE TABLE table_name_83 (year VARCHAR, accolade VARCHAR)
What year was the accolade for Scottish albums of the decade?
SELECT country FROM table_name_22 WHERE publication = "drowned in sound"
CREATE TABLE table_name_22 (country VARCHAR, publication VARCHAR)
What country had the publication, Drowned in Sound?
SELECT ground FROM table_name_93 WHERE home_team = "brisbane lions"
CREATE TABLE table_name_93 (ground VARCHAR, home_team VARCHAR)
What is the name of the home stadium of Brisbane Lions?
SELECT crowd FROM table_name_9 WHERE ground = "colonial stadium" AND home_team = "hawthorn"
CREATE TABLE table_name_9 (crowd VARCHAR, ground VARCHAR, home_team VARCHAR)
How much is the crowd attending at colonial stadium where Hawthorn plays?
SELECT 2 AS nd_leg FROM table_name_47 WHERE team__number2 = "žalgiris kaunas"
CREATE TABLE table_name_47 (team__number2 VARCHAR)
what is the 2nd leg when team #2 is žalgiris kaunas?
SELECT 2 AS nd_leg FROM table_name_67 WHERE team__number2 = "žalgiris kaunas"
CREATE TABLE table_name_67 (team__number2 VARCHAR)
what is the 2nd leg when team #2 is žalgiris kaunas?
SELECT opponent FROM table_name_30 WHERE week = 6
CREATE TABLE table_name_30 (opponent VARCHAR, week VARCHAR)
Who was the opponent in week 6?
SELECT SUM(week) FROM table_name_42 WHERE attendance = "55,158"
CREATE TABLE table_name_42 (week INTEGER, attendance VARCHAR)
Which week had an attendance of 55,158?
SELECT MIN(game) FROM table_name_66 WHERE date = "february 10"
CREATE TABLE table_name_66 (game INTEGER, date VARCHAR)
What is the lowest game on February 10?
SELECT player FROM table_name_1 WHERE round > 5 AND position = "(g)"
CREATE TABLE table_name_1 (player VARCHAR, round VARCHAR, position VARCHAR)
Which Player has a Round larger than 5, and a Position of (g)?
SELECT MAX(round) FROM table_name_34 WHERE nationality = "united states" AND player = "jimmy hayes"
CREATE TABLE table_name_34 (round INTEGER, nationality VARCHAR, player VARCHAR)
Which Round has a Nationality of united states, and a Player of jimmy hayes?
SELECT pick FROM table_name_98 WHERE nationality = "canada" AND round = 5
CREATE TABLE table_name_98 (pick VARCHAR, nationality VARCHAR, round VARCHAR)
Which Pick has a Nationality of canada, and a Round of 5?
SELECT club_team FROM table_name_7 WHERE position = "(d)" AND nationality = "canada" AND player = "andrew macwilliam"
CREATE TABLE table_name_7 (club_team VARCHAR, player VARCHAR, position VARCHAR, nationality VARCHAR)
Which Club Team has a Position of (d), a Nationality of canada, and a Player of andrew macwilliam?
SELECT money___$__ FROM table_name_1 WHERE player = "jodie mudd"
CREATE TABLE table_name_1 (money___$__ VARCHAR, player VARCHAR)
How much money did jodie mudd get?
SELECT score FROM table_name_85 WHERE country = "australia"
CREATE TABLE table_name_85 (score VARCHAR, country VARCHAR)
What score did Australia get?
SELECT sort_restore FROM table_name_64 WHERE deaths = "71"
CREATE TABLE table_name_64 (sort_restore VARCHAR, deaths VARCHAR)
What is the sort value that had deaths of 71?
SELECT month FROM table_name_73 WHERE sort_restore < 39 AND deaths = "2"
CREATE TABLE table_name_73 (month VARCHAR, sort_restore VARCHAR, deaths VARCHAR)
Which month had a sort value under 39 and 2 deaths?
SELECT COUNT(sort_restore) FROM table_name_27 WHERE births = "389"
CREATE TABLE table_name_27 (sort_restore VARCHAR, births VARCHAR)
What is the number of sort values associated with 389 births?
SELECT manufacturer FROM table_name_1 WHERE rider = "colin edwards"
CREATE TABLE table_name_1 (manufacturer VARCHAR, rider VARCHAR)
Who was the Manufacturer for the Rider Colin Edwards?
SELECT MAX(laps) FROM table_name_86 WHERE grid < 15 AND time = "+52.833"
CREATE TABLE table_name_86 (laps INTEGER, grid VARCHAR, time VARCHAR)
With a Grid less than 15, and a Time of +52.833, what is the highest number of Laps?
SELECT AVG(grid) FROM table_name_62 WHERE rider = "toni elias" AND laps > 30
CREATE TABLE table_name_62 (grid INTEGER, rider VARCHAR, laps VARCHAR)
What is the average Grid for the Rider Toni Elias with Laps more than 30?
SELECT MIN(grid) FROM table_name_84 WHERE time = "+1:37.055"
CREATE TABLE table_name_84 (grid INTEGER, time VARCHAR)
With a Time of +1:37.055, which has the lowest Grid?
SELECT MAX(silver) FROM table_name_71 WHERE rank = "19" AND gold > 0
CREATE TABLE table_name_71 (silver INTEGER, rank VARCHAR, gold VARCHAR)
Which Silver is the highest one that has a Rank of 19, and a Gold larger than 0?
SELECT MAX(bronze) FROM table_name_48 WHERE rank = "26" AND total > 1
CREATE TABLE table_name_48 (bronze INTEGER, rank VARCHAR, total VARCHAR)
Which Bronze is the highest one that has a Rank of 26, and a Total larger than 1?
SELECT AVG(gold) FROM table_name_84 WHERE nation = "india" AND bronze < 0
CREATE TABLE table_name_84 (gold INTEGER, nation VARCHAR, bronze VARCHAR)
Which Gold has a Nation of india, and a Bronze smaller than 0?
SELECT nation FROM table_name_96 WHERE gold > 0 AND bronze < 2 AND total > 3 AND silver > 1
CREATE TABLE table_name_96 (nation VARCHAR, silver VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR)
Which Nation has a Gold larger than 0, and a Bronze smaller than 2, and a Total larger than 3, and a Silver larger than 1?
SELECT COUNT(round) FROM table_name_68 WHERE record = "15–7–1"
CREATE TABLE table_name_68 (round VARCHAR, record VARCHAR)
What is the round number when the record is 15–7–1?
SELECT method FROM table_name_3 WHERE time = "5:00" AND record = "14–6–1"
CREATE TABLE table_name_3 (method VARCHAR, time VARCHAR, record VARCHAR)
What is the method when the time is 5:00, and the record is 14–6–1?
SELECT home FROM table_name_51 WHERE decision = "price" AND visitor = "new jersey devils"
CREATE TABLE table_name_51 (home VARCHAR, decision VARCHAR, visitor VARCHAR)
What is the home team of the game with a price decision and the new jersey devils as the visitor team?
SELECT transfer_fee FROM table_name_4 WHERE ends = "30 june 2010" AND moving_from = "birmingham city"
CREATE TABLE table_name_4 (transfer_fee VARCHAR, ends VARCHAR, moving_from VARCHAR)
What transfer fee did Birmingham City get on 30 June 2010?
SELECT type FROM table_name_28 WHERE country = "eng" AND name = "elding"
CREATE TABLE table_name_28 (type VARCHAR, country VARCHAR, name VARCHAR)
What type of move was Elding from ENG?
SELECT ends FROM table_name_34 WHERE name = "donaldson"
CREATE TABLE table_name_34 (ends VARCHAR, name VARCHAR)
When does Donaldson's move end?
SELECT AVG(silver) FROM table_name_10 WHERE total = 7 AND gold > 1
CREATE TABLE table_name_10 (silver INTEGER, total VARCHAR, gold VARCHAR)
Which Silver has a Total of 7, and a Gold larger than 1?
SELECT AVG(bronze) FROM table_name_97 WHERE gold < 16 AND rank = "10" AND nation = "italy"
CREATE TABLE table_name_97 (bronze INTEGER, nation VARCHAR, gold VARCHAR, rank VARCHAR)
Which Bronze has a Gold smaller than 16, a Rank of 10, and a Nation of italy?
SELECT AVG(total) FROM table_name_27 WHERE bronze > 2 AND gold < 16 AND silver = 0 AND rank = "13"
CREATE TABLE table_name_27 (total INTEGER, rank VARCHAR, silver VARCHAR, bronze VARCHAR, gold VARCHAR)
Which Total has a Bronze larger than 2, a Gold smaller than 16, a Silver of 0, and a Rank of 13?
SELECT MIN(gold) FROM table_name_47 WHERE nation = "malaysia" AND silver < 0
CREATE TABLE table_name_47 (gold INTEGER, nation VARCHAR, silver VARCHAR)
Which Gold has a Nation of malaysia, and a Silver smaller than 0?
SELECT SUM(population__2005_) FROM table_name_14 WHERE literacy__2003_ = "90%" AND infant_mortality__2002_ = "18.3‰"
CREATE TABLE table_name_14 (population__2005_ INTEGER, literacy__2003_ VARCHAR, infant_mortality__2002_ VARCHAR)
Which Population (2005) has a Literacy (2003) of 90%, and an Infant Mortality (2002) of 18.3‰?
SELECT SUM(density__2005_) FROM table_name_25 WHERE area__km²_ = 340086.7 AND population__2005_ < 5926300
CREATE TABLE table_name_25 (density__2005_ INTEGER, area__km²_ VARCHAR, population__2005_ VARCHAR)
Which Density (2005) has an Area (km²) of 340086.7, and a Population (2005) smaller than 5926300?
SELECT MAX(gdp_per_capita__us) AS $___2004_ FROM table_name_37 WHERE area__km²_ > 148825.6 AND state = "roraima"
CREATE TABLE table_name_37 (gdp_per_capita__us INTEGER, area__km²_ VARCHAR, state VARCHAR)
Which GDP per capita (US$) (2004) is the highest one that has an Area (km²) larger than 148825.6, and a State of roraima?
SELECT literacy__2003_ FROM table_name_8 WHERE hdi__2005_ < 0.718 AND gdp_per_capita__us$___2004_ < 3877 AND state = "maranhão"
CREATE TABLE table_name_8 (literacy__2003_ VARCHAR, state VARCHAR, hdi__2005_ VARCHAR, gdp_per_capita__us$___2004_ VARCHAR)
Which Literacy (2003) has an HDI (2005) smaller than 0.718, and a GDP per capita (US$) (2004) smaller than 3877, and a State of maranhão?
SELECT AVG(gdp_per_capita__us) AS $___2004_ FROM table_name_53 WHERE literacy__2003_ = "90%" AND area__km²_ = 1247689.5
CREATE TABLE table_name_53 (gdp_per_capita__us INTEGER, literacy__2003_ VARCHAR, area__km²_ VARCHAR)
Which GDP per capita (US$) (2004) has a Literacy (2003) of 90%, and an Area (km²) of 1247689.5?
SELECT date_and_opponent FROM table_name_4 WHERE position = "f" AND career_games = "123 games"
CREATE TABLE table_name_4 (date_and_opponent VARCHAR, position VARCHAR, career_games VARCHAR)
Name the Date and an Opponent which has a f Position and Career Games of 123 games?
SELECT name FROM table_name_34 WHERE years_played = "2004–2008" AND date_and_opponent = "2/17/07 vs. purdue"
CREATE TABLE table_name_34 (name VARCHAR, years_played VARCHAR, date_and_opponent VARCHAR)
Which Name has a Years Played of 2004–2008, and a Date and Opponent of 2/17/07 vs. purdue?
SELECT career_games FROM table_name_58 WHERE date_and_opponent = "12/15/92 vs. uw–milwaukee"
CREATE TABLE table_name_58 (career_games VARCHAR, date_and_opponent VARCHAR)
Which Career Games has a Date and Opponent of 12/15/92 vs. uw–milwaukee?
SELECT scored_1, 500 AS _points FROM table_name_34 WHERE years_played = "2004–2008" AND name = "jolene anderson"
CREATE TABLE table_name_34 (scored_1 VARCHAR, years_played VARCHAR, name VARCHAR)
WHich Scored 1,500 Points has a Years Played of 2004–2008 and a Name of jolene anderson?
SELECT time FROM table_name_11 WHERE round < 3 AND opponent = "bao quach"
CREATE TABLE table_name_11 (time VARCHAR, round VARCHAR, opponent VARCHAR)
Which Time has a Round smaller than 3, and an Opponent of bao quach?