question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
Who was the opponent in the 2011 event with less than 113 players? | CREATE TABLE table_name_72 (opponent VARCHAR, player VARCHAR, event VARCHAR) | SELECT opponent FROM table_name_72 WHERE player < 113 AND event = 2011 |
What is the highest number of players during 1r year with a clay set and more than 4 aces? | CREATE TABLE table_name_63 (player INTEGER, year VARCHAR, sets VARCHAR, aces VARCHAR) | SELECT MAX(player) FROM table_name_63 WHERE year = "1r" AND sets = "clay" AND NOT aces > 4 |
Who played as Team 2 against Team 1 SC Gagnoa? | CREATE TABLE table_name_73 (team_2 VARCHAR, team_1 VARCHAR) | SELECT team_2 FROM table_name_73 WHERE team_1 = "sc gagnoa" |
What was the 1st leg score when Mufulira Wanderers played as Team 2? | CREATE TABLE table_name_6 (team_2 VARCHAR) | SELECT 1 AS st_leg FROM table_name_6 WHERE team_2 = "mufulira wanderers" |
What's the score of the 1st leg when Water Corporation was Team 1? | CREATE TABLE table_name_8 (team_1 VARCHAR) | SELECT 1 AS st_leg FROM table_name_8 WHERE team_1 = "water corporation" |
What's the 1st leg score when Team 1 was Gor Mahia? | CREATE TABLE table_name_1 (team_1 VARCHAR) | SELECT 1 AS st_leg FROM table_name_1 WHERE team_1 = "gor mahia" |
Who played as Team 1 against Lomé i? | CREATE TABLE table_name_8 (team_1 VARCHAR, team_2 VARCHAR) | SELECT team_1 FROM table_name_8 WHERE team_2 = "lomé i" |
Name the entrant for year of 1952 | CREATE TABLE table_name_39 (entrant VARCHAR, year VARCHAR) | SELECT entrant FROM table_name_39 WHERE year = 1952 |
Name the total number of points for 1952 | CREATE TABLE table_name_89 (points VARCHAR, year VARCHAR) | SELECT COUNT(points) FROM table_name_89 WHERE year = 1952 |
Name the total number of years for talbot-lago t26c and points less than 3 | CREATE TABLE table_name_52 (year VARCHAR, chassis VARCHAR, points VARCHAR) | SELECT COUNT(year) FROM table_name_52 WHERE chassis = "talbot-lago t26c" AND points < 3 |
What episode featured entrepreneur Richard Ernest? | CREATE TABLE table_name_15 (first_aired VARCHAR, entrepreneur_s_ VARCHAR) | SELECT first_aired FROM table_name_15 WHERE entrepreneur_s_ = "richard ernest" |
What Investing Dragons had a request of £100,000? | CREATE TABLE table_name_87 (investing_dragon_s_ VARCHAR, money_requested__£_ VARCHAR) | SELECT investing_dragon_s_ FROM table_name_87 WHERE money_requested__£_ = "100,000" |
What Entrepreneurs requested £60,000? | CREATE TABLE table_name_27 (entrepreneur_s_ VARCHAR, money_requested__£_ VARCHAR) | SELECT entrepreneur_s_ FROM table_name_27 WHERE money_requested__£_ = "60,000" |
How much was requested from Investing Dragon Peter Jones request in episode 2? | CREATE TABLE table_name_92 (money_requested__£_ VARCHAR, investing_dragon_s_ VARCHAR, episode VARCHAR) | SELECT money_requested__£_ FROM table_name_92 WHERE investing_dragon_s_ = "peter jones" AND episode = "episode 2" |
Name the investing dragon for razzamataz | CREATE TABLE table_name_5 (investing_dragon_s_ VARCHAR, company_or_product_name VARCHAR) | SELECT investing_dragon_s_ FROM table_name_5 WHERE company_or_product_name = "razzamataz" |
Name the first aired with money requested more than 85,000 | CREATE TABLE table_name_86 (first_aired VARCHAR, money_requested__£_ INTEGER) | SELECT first_aired FROM table_name_86 WHERE money_requested__£_ > 85 OFFSET 000 |
What is the competition type of the event with a result of 3-2 and a score of 2-1? | CREATE TABLE table_name_36 (competition VARCHAR, result VARCHAR, score VARCHAR) | SELECT competition FROM table_name_36 WHERE result = "3-2" AND score = "2-1" |
Which date has a competition type of friendly and a score of 2-1? | CREATE TABLE table_name_3 (date VARCHAR, competition VARCHAR, score VARCHAR) | SELECT date FROM table_name_3 WHERE competition = "friendly" AND score = "2-1" |
What is the score of the event with a competition type of friendly and a result of 4-5? | CREATE TABLE table_name_94 (score VARCHAR, competition VARCHAR, result VARCHAR) | SELECT score FROM table_name_94 WHERE competition = "friendly" AND result = "4-5" |
Which date has a score of 2-1? | CREATE TABLE table_name_6 (date VARCHAR, score VARCHAR) | SELECT date FROM table_name_6 WHERE score = "2-1" |
Which date has a competition type of British home championship? | CREATE TABLE table_name_81 (date VARCHAR, competition VARCHAR) | SELECT date FROM table_name_81 WHERE competition = "british home championship" |
what date was mallala motor sport park the circuit? | CREATE TABLE table_name_76 (date VARCHAR, circuit VARCHAR) | SELECT date FROM table_name_76 WHERE circuit = "mallala motor sport park" |
what date did the m3 motorsport team compete at winton motor raceway? | CREATE TABLE table_name_38 (date VARCHAR, team VARCHAR, circuit VARCHAR) | SELECT date FROM table_name_38 WHERE team = "m3 motorsport" AND circuit = "winton motor raceway" |
Name the agg for team 2 of asl sport guyanais. | CREATE TABLE table_name_34 (agg VARCHAR, team_2 VARCHAR) | SELECT agg FROM table_name_34 WHERE team_2 = "asl sport guyanais" |
Name the agg for seba united | CREATE TABLE table_name_12 (agg VARCHAR, team_1 VARCHAR) | SELECT agg FROM table_name_12 WHERE team_1 = "seba united" |
Name the 2nd leg for defence force | CREATE TABLE table_name_61 (team_2 VARCHAR) | SELECT 2 AS nd_leg FROM table_name_61 WHERE team_2 = "defence force" |
Which country does FC Atyrau represent after the 2006 season? | CREATE TABLE table_name_67 (country VARCHAR, season VARCHAR, team VARCHAR) | SELECT country FROM table_name_67 WHERE season > 2006 AND team = "fc atyrau" |
In which season did Fc Pakhtakor Tashkent represent the country of Uzbekistan with more than 6 apps? | CREATE TABLE table_name_72 (season INTEGER, apps VARCHAR, country VARCHAR, team VARCHAR) | SELECT MAX(season) FROM table_name_72 WHERE country = "uzbekistan" AND team = "fc pakhtakor tashkent" AND apps > 6 |
How many seasons have 1 goals and more than 11 apps? | CREATE TABLE table_name_89 (season VARCHAR, goals VARCHAR, apps VARCHAR) | SELECT COUNT(season) FROM table_name_89 WHERE goals = 1 AND apps > 11 |
What game that had a record of 39-44 had the lowest attendance? | CREATE TABLE table_name_44 (attendance INTEGER, record VARCHAR) | SELECT MIN(attendance) FROM table_name_44 WHERE record = "39-44" |
Who was the opponent at the game that had a loss of Saarloos (7-7)? | CREATE TABLE table_name_7 (opponent VARCHAR, loss VARCHAR) | SELECT opponent FROM table_name_7 WHERE loss = "saarloos (7-7)" |
What was the score of the game with a record of 81-60? | CREATE TABLE table_name_71 (score VARCHAR, record VARCHAR) | SELECT score FROM table_name_71 WHERE record = "81-60" |
What was the lowest attendance at a game that had a score of 5-4 and a loss of Williams (2-4)? | CREATE TABLE table_name_29 (attendance INTEGER, score VARCHAR, loss VARCHAR) | SELECT MIN(attendance) FROM table_name_29 WHERE score = "5-4" AND loss = "williams (2-4)" |
What year did the 11th place play 26 games? | CREATE TABLE table_name_96 (year VARCHAR, place VARCHAR, played VARCHAR) | SELECT year FROM table_name_96 WHERE place = "11th" AND played = 26 |
What is the total played games of a 22 G.A.? | CREATE TABLE table_name_24 (played VARCHAR, ga VARCHAR) | SELECT COUNT(played) FROM table_name_24 WHERE ga = "22" |
Name the winner for genoa to livorno | CREATE TABLE table_name_39 (winner VARCHAR, course VARCHAR) | SELECT winner FROM table_name_39 WHERE course = "genoa to livorno" |
Name the winner for 5 june | CREATE TABLE table_name_80 (winner VARCHAR, date VARCHAR) | SELECT winner FROM table_name_80 WHERE date = "5 june" |
Name the winner for rest day race leader | CREATE TABLE table_name_97 (winner VARCHAR, race_leader VARCHAR) | SELECT winner FROM table_name_97 WHERE race_leader = "rest day" |
Name the least rank for lane less than 5 for germany and sandra völker | CREATE TABLE table_name_22 (rank INTEGER, name VARCHAR, lane VARCHAR, nationality VARCHAR) | SELECT MIN(rank) FROM table_name_22 WHERE lane < 5 AND nationality = "germany" AND name = "sandra völker" |
Name the total number of rank for lane 7 | CREATE TABLE table_name_69 (rank VARCHAR, lane VARCHAR) | SELECT COUNT(rank) FROM table_name_69 WHERE lane = 7 |
Name the most time for katrin meißner and rank less than 5 | CREATE TABLE table_name_71 (time INTEGER, name VARCHAR, rank VARCHAR) | SELECT MAX(time) FROM table_name_71 WHERE name = "katrin meißner" AND rank < 5 |
Tell me the name for time of 25.74 | CREATE TABLE table_name_2 (name VARCHAR, time VARCHAR) | SELECT name FROM table_name_2 WHERE time = 25.74 |
Was the University of Southern California Signed? | CREATE TABLE table_name_50 (signed VARCHAR, school VARCHAR) | SELECT signed FROM table_name_50 WHERE school = "university of southern california" |
Was the University of Michigan Signed? | CREATE TABLE table_name_13 (signed VARCHAR, school VARCHAR) | SELECT signed FROM table_name_13 WHERE school = "university of michigan" |
What is the University of Southern California's highest Round? | CREATE TABLE table_name_92 (round INTEGER, school VARCHAR) | SELECT MAX(round) FROM table_name_92 WHERE school = "university of southern california" |
Who was the home captain at Sabina Park? | CREATE TABLE table_name_89 (home_captain VARCHAR, venue VARCHAR) | SELECT home_captain FROM table_name_89 WHERE venue = "sabina park" |
What was the result of the game hosted at Queen's Park Oval? | CREATE TABLE table_name_30 (result VARCHAR, venue VARCHAR) | SELECT result FROM table_name_30 WHERE venue = "queen's park oval" |
Name the genre for release-year of first charted record of 1988 | CREATE TABLE table_name_98 (genre VARCHAR, release_year_of_first_charted_record VARCHAR) | SELECT genre FROM table_name_98 WHERE release_year_of_first_charted_record = 1988 |
What was the loss of the game with a record of 77-65? | CREATE TABLE table_name_96 (loss VARCHAR, record VARCHAR) | SELECT loss FROM table_name_96 WHERE record = "77-65" |
What was the loss of the game with a record of 84-71? | CREATE TABLE table_name_29 (loss VARCHAR, record VARCHAR) | SELECT loss FROM table_name_29 WHERE record = "84-71" |
What date was the record 34-41? | CREATE TABLE table_name_11 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_11 WHERE record = "34-41" |
What type had a course of Grosseto To Rieti? | CREATE TABLE table_name_18 (type VARCHAR, course VARCHAR) | SELECT type FROM table_name_18 WHERE course = "grosseto to rieti" |
In what Season were there 86 Assists in the WCJHL League? | CREATE TABLE table_name_53 (season VARCHAR, league VARCHAR, assists VARCHAR) | SELECT season FROM table_name_53 WHERE league = "wcjhl" AND assists = 86 |
In the WCHL League, what is the last Assists with less than 65 Goals? | CREATE TABLE table_name_37 (assists INTEGER, league VARCHAR, goals VARCHAR) | SELECT MIN(assists) FROM table_name_37 WHERE league = "wchl" AND goals < 65 |
What are the most Points with an Assist of 46? | CREATE TABLE table_name_53 (points INTEGER, assists VARCHAR) | SELECT MAX(points) FROM table_name_53 WHERE assists = 46 |
What compound is yellow? | CREATE TABLE table_name_2 (compound_name VARCHAR, colour VARCHAR) | SELECT compound_name FROM table_name_2 WHERE colour = "yellow" |
What color is the super-soft compound? | CREATE TABLE table_name_31 (colour VARCHAR, compound_name VARCHAR) | SELECT colour FROM table_name_31 WHERE compound_name = "super-soft" |
Which venue has Tickets Sold/ Available with a Gross Revenue (1979) of $665,232? | CREATE TABLE table_name_26 (tickets_sold___available VARCHAR, gross_revenue__1979_ VARCHAR) | SELECT tickets_sold___available FROM table_name_26 WHERE gross_revenue__1979_ = "$665,232" |
What is the Gross Revenue (1979) of the Venue, lyceum theatre? | CREATE TABLE table_name_83 (gross_revenue__1979_ VARCHAR, venue VARCHAR) | SELECT gross_revenue__1979_ FROM table_name_83 WHERE venue = "lyceum theatre" |
What is the amount of Tickets Sold/ Available at the Venue of hippodrome? | CREATE TABLE table_name_44 (tickets_sold___available VARCHAR, venue VARCHAR) | SELECT tickets_sold___available FROM table_name_44 WHERE venue = "hippodrome" |
Which Venue has a Gross Revenue (2012) of $179,712? | CREATE TABLE table_name_41 (venue VARCHAR, gross_revenue__2012_ VARCHAR) | SELECT venue FROM table_name_41 WHERE gross_revenue__2012_ = "$179,712" |
Which Venue has an amount of Tickets Sold/ Available of 4,700 / 4,700 (100%)? | CREATE TABLE table_name_21 (venue VARCHAR, tickets_sold___available VARCHAR) | SELECT venue FROM table_name_21 WHERE tickets_sold___available = "4,700 / 4,700 (100%)" |
What was the date of the game that had a loss of Willis (0–1)? | CREATE TABLE table_name_32 (date VARCHAR, loss VARCHAR) | SELECT date FROM table_name_32 WHERE loss = "willis (0–1)" |
What was the opponent at the game that had a loss of Travers (0–2)? | CREATE TABLE table_name_9 (opponent VARCHAR, loss VARCHAR) | SELECT opponent FROM table_name_9 WHERE loss = "travers (0–2)" |
What was the Loss when the Record was 50-54? | CREATE TABLE table_name_46 (loss VARCHAR, record VARCHAR) | SELECT loss FROM table_name_46 WHERE record = "50-54" |
Who was the opponent when the loss was Wells (4-7)? | CREATE TABLE table_name_35 (opponent VARCHAR, loss VARCHAR) | SELECT opponent FROM table_name_35 WHERE loss = "wells (4-7)" |
What shows for shoots for craig peacock a? | CREATE TABLE table_name_62 (shoots VARCHAR, player VARCHAR) | SELECT shoots FROM table_name_62 WHERE player = "craig peacock a" |
What is the average Acquired when the Number shows as 7? | CREATE TABLE table_name_73 (acquired INTEGER, number VARCHAR) | SELECT AVG(acquired) FROM table_name_73 WHERE number = 7 |
What is the total of 2013 with 6th? | CREATE TABLE table_name_87 (total INTEGER) | SELECT MAX(total) FROM table_name_87 WHERE 2013 = "6th" |
Which 2009 year has a total of 1, and 2004 year of 7th? | CREATE TABLE table_name_45 (total VARCHAR) | SELECT 2009 FROM table_name_45 WHERE total = 1 AND 2004 = "7th" |
What is the year 2013 with a total of 5, and 5th in 2009? | CREATE TABLE table_name_78 (total VARCHAR) | SELECT 2013 FROM table_name_78 WHERE total = 5 AND 2009 = "5th" |
What is the year 2001 with a total larger than 1, and 2009 with 8? | CREATE TABLE table_name_26 (total VARCHAR) | SELECT 2001 FROM table_name_26 WHERE total > 1 AND 2009 = "8" |
What opponents have a record of 90-70? | CREATE TABLE table_name_34 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_34 WHERE record = "90-70" |
What game had more than 50,324 in attendance? | CREATE TABLE table_name_45 (date VARCHAR, attendance INTEGER) | SELECT date FROM table_name_45 WHERE attendance > 50 OFFSET 324 |
What is the start of Offy engine and in 1972? | CREATE TABLE table_name_76 (start VARCHAR, engine VARCHAR, year VARCHAR) | SELECT start FROM table_name_76 WHERE engine = "offy" AND year = 1972 |
What is the chassis for offy engine and 25th finish? | CREATE TABLE table_name_12 (chassis VARCHAR, engine VARCHAR, finish VARCHAR) | SELECT chassis FROM table_name_12 WHERE engine = "offy" AND finish = "25th" |
What is the finish of Mclaren chassis? | CREATE TABLE table_name_7 (finish VARCHAR, chassis VARCHAR) | SELECT finish FROM table_name_7 WHERE chassis = "mclaren" |
Name the wrestlers with days held of 428 | CREATE TABLE table_name_83 (wrestlers VARCHAR, days_held VARCHAR) | SELECT wrestlers FROM table_name_83 WHERE days_held = "428" |
Name the wrestlers for days held of 69 | CREATE TABLE table_name_58 (wrestlers VARCHAR, days_held VARCHAR) | SELECT wrestlers FROM table_name_58 WHERE days_held = "69" |
Which opponent has a Surface of clay, an Outcome of winner, a Tournament of bogotá, and a Score of 6–0, 6–4? | CREATE TABLE table_name_51 (opponent VARCHAR, score VARCHAR, tournament VARCHAR, surface VARCHAR, outcome VARCHAR) | SELECT opponent FROM table_name_51 WHERE surface = "clay" AND outcome = "winner" AND tournament = "bogotá" AND score = "6–0, 6–4" |
Which opponent has a Score of 6–4, 3–6, 6–3? | CREATE TABLE table_name_7 (opponent VARCHAR, score VARCHAR) | SELECT opponent FROM table_name_7 WHERE score = "6–4, 3–6, 6–3" |
What is the score for 04 september 2006? | CREATE TABLE table_name_21 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_21 WHERE date = "04 september 2006" |
Which Tournament has a Score of 4-6 6-2 6-1? | CREATE TABLE table_name_40 (tournament VARCHAR, score VARCHAR) | SELECT tournament FROM table_name_40 WHERE score = "4-6 6-2 6-1" |
Which outcome has a Surface of clay and a Score of 4–6, 7–5, 2–6? | CREATE TABLE table_name_50 (outcome VARCHAR, surface VARCHAR, score VARCHAR) | SELECT outcome FROM table_name_50 WHERE surface = "clay" AND score = "4–6, 7–5, 2–6" |
What date was versmold? | CREATE TABLE table_name_15 (date VARCHAR, tournament VARCHAR) | SELECT date FROM table_name_15 WHERE tournament = "versmold" |
Name the competition for motherwell opponents | CREATE TABLE table_name_17 (competition VARCHAR, opponents VARCHAR) | SELECT competition FROM table_name_17 WHERE opponents = "motherwell" |
Name the home leg for uefa europa league and round of q1 with opponents of motherwell | CREATE TABLE table_name_82 (home_leg VARCHAR, opponents VARCHAR, competition VARCHAR, round VARCHAR) | SELECT home_leg FROM table_name_82 WHERE competition = "uefa europa league" AND round = "q1" AND opponents = "motherwell" |
Name the aggregate with opponents of tauras | CREATE TABLE table_name_65 (aggregate VARCHAR, opponents VARCHAR) | SELECT aggregate FROM table_name_65 WHERE opponents = "tauras" |
What date was 53-75 recorded? | CREATE TABLE table_name_16 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_16 WHERE record = "53-75" |
Overall of 62 is what average round? | CREATE TABLE table_name_42 (round INTEGER, overall VARCHAR) | SELECT AVG(round) FROM table_name_42 WHERE overall = 62 |
College of san diego state, and a Pick # smaller than 30 is what lowest overall? | CREATE TABLE table_name_32 (overall INTEGER, college VARCHAR, pick__number VARCHAR) | SELECT MIN(overall) FROM table_name_32 WHERE college = "san diego state" AND pick__number < 30 |
College of san diego state, and a Pick # smaller than 30 has what lowest overall? | CREATE TABLE table_name_46 (overall INTEGER, college VARCHAR, pick__number VARCHAR) | SELECT MIN(overall) FROM table_name_46 WHERE college = "san diego state" AND pick__number < 30 |
Which city of license has an independent network affiliation, a variety format and is station KKUP? | CREATE TABLE table_name_9 (city_of_license VARCHAR, station VARCHAR, network_affiliation VARCHAR, format VARCHAR) | SELECT city_of_license FROM table_name_9 WHERE network_affiliation = "independent" AND format = "variety" AND station = "kkup" |
What is the status of the independent station KPFB? | CREATE TABLE table_name_60 (status VARCHAR, network_affiliation VARCHAR, station VARCHAR) | SELECT status FROM table_name_60 WHERE network_affiliation = "independent" AND station = "kpfb" |
Which city station is owned by Coyote Communications? | CREATE TABLE table_name_56 (city_of_license VARCHAR, status VARCHAR) | SELECT city_of_license FROM table_name_56 WHERE status = "owned by coyote communications" |
What year were the Olympic Games? | CREATE TABLE table_name_10 (year INTEGER, competition VARCHAR) | SELECT SUM(year) FROM table_name_10 WHERE competition = "olympic games" |
What's the year in 5th position that happened in Osaka, Japan? | CREATE TABLE table_name_92 (year INTEGER, position VARCHAR, venue VARCHAR) | SELECT MIN(year) FROM table_name_92 WHERE position = "5th" AND venue = "osaka, japan" |
What year was the venue in Barcelona, Spain? | CREATE TABLE table_name_57 (year INTEGER, venue VARCHAR) | SELECT MIN(year) FROM table_name_57 WHERE venue = "barcelona, spain" |
For a school with authority of state and a roll of 798, what is the decile? | CREATE TABLE table_name_10 (decile VARCHAR, authority VARCHAR, roll VARCHAR) | SELECT decile FROM table_name_10 WHERE authority = "state" AND roll = 798 |
Murupara has a roll greater than 296 for what years? | CREATE TABLE table_name_6 (years VARCHAR, roll VARCHAR, area VARCHAR) | SELECT years FROM table_name_6 WHERE roll > 296 AND area = "murupara" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.