question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What year had a total of 2 and LA matches of 0?
CREATE TABLE table_name_35 (year VARCHAR, total VARCHAR, la_matches VARCHAR)
{ "SQL_Query": "SELECT year FROM table_name_35 WHERE total = \"2\" AND la_matches = \"0\"" }
What year was the total 9?
CREATE TABLE table_name_9 (year VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT year FROM table_name_9 WHERE total = \"9\"" }
Who is in week 4 if week 5 is [month ended] and week 2 is April Ireland?
CREATE TABLE table_name_8 (week_4 VARCHAR, week_5 VARCHAR, week_2 VARCHAR)
{ "SQL_Query": "SELECT week_4 FROM table_name_8 WHERE week_5 = \"[month ended]\" AND week_2 = \"april ireland\"" }
Who is week 3 if week 2 is Nikki Fiction?
CREATE TABLE table_name_64 (week_3 VARCHAR, week_2 VARCHAR)
{ "SQL_Query": "SELECT week_3 FROM table_name_64 WHERE week_2 = \"nikki fiction\"" }
Who is week 1 if week 3 is Natasha Budhi?
CREATE TABLE table_name_3 (week_1 VARCHAR, week_3 VARCHAR)
{ "SQL_Query": "SELECT week_1 FROM table_name_3 WHERE week_3 = \"natasha budhi\"" }
Who is week 5 if week 2 is Jenna Jordan?
CREATE TABLE table_name_68 (week_5 VARCHAR, week_2 VARCHAR)
{ "SQL_Query": "SELECT week_5 FROM table_name_68 WHERE week_2 = \"jenna jordan\"" }
Who is week 2 if week 3 is Sara Stokes?
CREATE TABLE table_name_65 (week_2 VARCHAR, week_3 VARCHAR)
{ "SQL_Query": "SELECT week_2 FROM table_name_65 WHERE week_3 = \"sara stokes\"" }
Who is week 3 if week 1 is Amanda Batt?
CREATE TABLE table_name_47 (week_3 VARCHAR, week_1 VARCHAR)
{ "SQL_Query": "SELECT week_3 FROM table_name_47 WHERE week_1 = \"amanda batt\"" }
What average bronze has a total less than 1?
CREATE TABLE table_name_29 (bronze INTEGER, total INTEGER)
{ "SQL_Query": "SELECT AVG(bronze) FROM table_name_29 WHERE total < 1" }
What average gold has China (chn) as the nation with a bronze greater than 1?
CREATE TABLE table_name_63 (gold INTEGER, nation VARCHAR, bronze VARCHAR)
{ "SQL_Query": "SELECT AVG(gold) FROM table_name_63 WHERE nation = \"china (chn)\" AND bronze > 1" }
Which is the highest gold that has a bronze greater than 4?
CREATE TABLE table_name_96 (gold INTEGER, bronze INTEGER)
{ "SQL_Query": "SELECT MAX(gold) FROM table_name_96 WHERE bronze > 4" }
What date has fewer than 32 against and the opposing team of Australia?
CREATE TABLE table_name_84 (date VARCHAR, against VARCHAR, opposing_teams VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_84 WHERE against < 32 AND opposing_teams = \"australia\"" }
What is the average against for a test match?
CREATE TABLE table_name_64 (against INTEGER, status VARCHAR)
{ "SQL_Query": "SELECT AVG(against) FROM table_name_64 WHERE status = \"test match\"" }
Which venue has more than 9 against and a status of second test?
CREATE TABLE table_name_90 (venue VARCHAR, against VARCHAR, status VARCHAR)
{ "SQL_Query": "SELECT venue FROM table_name_90 WHERE against > 9 AND status = \"second test\"" }
Which status has an against of 35?
CREATE TABLE table_name_52 (status VARCHAR, against VARCHAR)
{ "SQL_Query": "SELECT status FROM table_name_52 WHERE against = 35" }
What was the music for the modern dance?
CREATE TABLE table_name_64 (music VARCHAR, dance VARCHAR)
{ "SQL_Query": "SELECT music FROM table_name_64 WHERE dance = \"modern\"" }
What was the place for the tango dance when the points was jury of 24 (7,5,6,6)?
CREATE TABLE table_name_29 (place VARCHAR, dance VARCHAR, points_jury VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_29 WHERE dance = \"tango\" AND points_jury = \"24 (7,5,6,6)\"" }
What is the Average Qualifying Goals for Jack Froggatt where the Final Goals is greater than 0?
CREATE TABLE table_name_3 (qualifying_goals INTEGER, player VARCHAR, finals_goals VARCHAR)
{ "SQL_Query": "SELECT AVG(qualifying_goals) FROM table_name_3 WHERE player = \"jack froggatt\" AND finals_goals > 0" }
Which Player has a Total Goals greater than 1 and Qualifying Goals smaller than 3?
CREATE TABLE table_name_90 (player VARCHAR, total_goals VARCHAR, qualifying_goals VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_90 WHERE total_goals > 1 AND qualifying_goals < 3" }
What is the total number of Total Goals scored by Stan Mortensen where the Qualifying Goals is greater than 3?
CREATE TABLE table_name_1 (total_goals VARCHAR, player VARCHAR, qualifying_goals VARCHAR)
{ "SQL_Query": "SELECT COUNT(total_goals) FROM table_name_1 WHERE player = \"stan mortensen\" AND qualifying_goals > 3" }
What is the Average Finals Goals if the Total Goals is less than 1?
CREATE TABLE table_name_40 (finals_goals INTEGER, total_goals INTEGER)
{ "SQL_Query": "SELECT AVG(finals_goals) FROM table_name_40 WHERE total_goals < 1" }
What was Adam Scott's total score when playing in Australia with a to par of e?
CREATE TABLE table_name_51 (score INTEGER, player VARCHAR, country VARCHAR, to_par VARCHAR)
{ "SQL_Query": "SELECT SUM(score) FROM table_name_51 WHERE country = \"australia\" AND to_par = \"e\" AND player = \"adam scott\"" }
What was Fredrik Jacobson's score?
CREATE TABLE table_name_88 (score VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_88 WHERE player = \"fredrik jacobson\"" }
WHAT IS THE HOME TEAM WITH AN AWAY OF LEYTON ORIENT?
CREATE TABLE table_name_95 (home_team VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT home_team FROM table_name_95 WHERE away_team = \"leyton orient\"" }
WHAT IS NO TIE FROM brighton & hove albion?
CREATE TABLE table_name_52 (tie_no VARCHAR, home_team VARCHAR)
{ "SQL_Query": "SELECT tie_no FROM table_name_52 WHERE home_team = \"brighton & hove albion\"" }
What was the result for the game on October 5?
CREATE TABLE table_name_11 (result VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_11 WHERE date = \"october 5\"" }
What is the FA Cup Apps when total goals is smaller than 4, League Cup Goals is 0, and League Apps is 8 (10)?
CREATE TABLE table_name_73 (fa_cup_apps VARCHAR, league_apps VARCHAR, total_goals VARCHAR, league_cup_goals VARCHAR)
{ "SQL_Query": "SELECT fa_cup_apps FROM table_name_73 WHERE total_goals < 4 AND league_cup_goals = 0 AND league_apps = \"8 (10)\"" }
What is the lowest total goals when position is df, and FA Cup Goals is smaller than 0?
CREATE TABLE table_name_89 (total_goals INTEGER, position VARCHAR, fa_cup_goals VARCHAR)
{ "SQL_Query": "SELECT MIN(total_goals) FROM table_name_89 WHERE position = \"df\" AND fa_cup_goals < 0" }
What Viewers (m) has an Episode of school council?
CREATE TABLE table_name_82 (viewers__m_ INTEGER, episode VARCHAR)
{ "SQL_Query": "SELECT AVG(viewers__m_) FROM table_name_82 WHERE episode = \"school council\"" }
What Viewers (m) has a Rating of 1.7, and an Episode of the game of life?
CREATE TABLE table_name_54 (viewers__m_ INTEGER, rating VARCHAR, episode VARCHAR)
{ "SQL_Query": "SELECT MAX(viewers__m_) FROM table_name_54 WHERE rating = \"1.7\" AND episode = \"the game of life\"" }
What Viewers (m) has an Episode of 40 days?
CREATE TABLE table_name_64 (viewers__m_ VARCHAR, episode VARCHAR)
{ "SQL_Query": "SELECT viewers__m_ FROM table_name_64 WHERE episode = \"40 days\"" }
What Episode has a Rating of 1.8, and Viewers (m) smaller than 2.73?
CREATE TABLE table_name_35 (episode VARCHAR, rating VARCHAR, viewers__m_ VARCHAR)
{ "SQL_Query": "SELECT episode FROM table_name_35 WHERE rating = \"1.8\" AND viewers__m_ < 2.73" }
What Rating has Viewers (m) of 2.73?
CREATE TABLE table_name_96 (rating VARCHAR, viewers__m_ VARCHAR)
{ "SQL_Query": "SELECT rating FROM table_name_96 WHERE viewers__m_ = 2.73" }
What Episode has a Share of tba?
CREATE TABLE table_name_17 (episode VARCHAR, share VARCHAR)
{ "SQL_Query": "SELECT episode FROM table_name_17 WHERE share = \"tba\"" }
Name the Partner which is in 1979, and Opponents in the final of heinz günthardt bob hewitt?
CREATE TABLE table_name_68 (partner VARCHAR, date VARCHAR, opponents_in_the_final VARCHAR)
{ "SQL_Query": "SELECT partner FROM table_name_68 WHERE date = 1979 AND opponents_in_the_final = \"heinz günthardt bob hewitt\"" }
which Surface has Opponents in the final of mark edmondson sherwood stewart, and a Tournament of dallas , u.s.?
CREATE TABLE table_name_74 (surface VARCHAR, opponents_in_the_final VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT surface FROM table_name_74 WHERE opponents_in_the_final = \"mark edmondson sherwood stewart\" AND tournament = \"dallas , u.s.\"" }
Name the date of Tournament of paris indoor , france?
CREATE TABLE table_name_23 (date INTEGER, tournament VARCHAR)
{ "SQL_Query": "SELECT SUM(date) FROM table_name_23 WHERE tournament = \"paris indoor , france\"" }
Name the Outcome has a Surface of hard, and a Score in the final of 6–2, 6–4?
CREATE TABLE table_name_82 (outcome VARCHAR, surface VARCHAR, score_in_the_final VARCHAR)
{ "SQL_Query": "SELECT outcome FROM table_name_82 WHERE surface = \"hard\" AND score_in_the_final = \"6–2, 6–4\"" }
Name the Surface which has a Score in the final of 6–3, 6–2 and Opponents in the final of mansour bahrami diego pérez?
CREATE TABLE table_name_87 (surface VARCHAR, score_in_the_final VARCHAR, opponents_in_the_final VARCHAR)
{ "SQL_Query": "SELECT surface FROM table_name_87 WHERE score_in_the_final = \"6–3, 6–2\" AND opponents_in_the_final = \"mansour bahrami diego pérez\"" }
Which Res has a Time of 11:58?
CREATE TABLE table_name_27 (res VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT res FROM table_name_27 WHERE time = \"11:58\"" }
What was jerry bohlander's time?
CREATE TABLE table_name_33 (time VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT time FROM table_name_33 WHERE opponent = \"jerry bohlander\"" }
What was the total of Mauro Camoranesi when coppa italia was 0, champions league was 1 and less than 2 serie A?
CREATE TABLE table_name_91 (total VARCHAR, name VARCHAR, serie_a VARCHAR, coppa_italia VARCHAR, champions_league VARCHAR)
{ "SQL_Query": "SELECT total FROM table_name_91 WHERE coppa_italia = 0 AND champions_league = 1 AND serie_a < 2 AND name = \"mauro camoranesi\"" }
What's the Serie A when the coppa italia was 5?
CREATE TABLE table_name_79 (serie_a INTEGER, coppa_italia VARCHAR)
{ "SQL_Query": "SELECT AVG(serie_a) FROM table_name_79 WHERE coppa_italia = 5" }
What's the total when the champions league was 0, the coppa italia was less than 0, and the Serie A was more than 1?
CREATE TABLE table_name_62 (total INTEGER, coppa_italia VARCHAR, champions_league VARCHAR, serie_a VARCHAR)
{ "SQL_Query": "SELECT SUM(total) FROM table_name_62 WHERE champions_league = 0 AND serie_a > 1 AND coppa_italia < 0" }
What is the championsleague when the total was greater than 1, the coppa italia was more than 2, and the Serie A was 1?
CREATE TABLE table_name_40 (champions_league INTEGER, coppa_italia VARCHAR, serie_a VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT SUM(champions_league) FROM table_name_40 WHERE serie_a = 1 AND total > 1 AND coppa_italia > 2" }
Can you tell me the Combined that has the Victories of 14?
CREATE TABLE table_name_53 (combined VARCHAR, victories VARCHAR)
{ "SQL_Query": "SELECT combined FROM table_name_53 WHERE victories = 14" }
Can you tell me the Giant Slalom that has the Combined of 1, and the Country of united states, and the Victories larger than 11?
CREATE TABLE table_name_14 (giant_slalom VARCHAR, victories VARCHAR, combined VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT giant_slalom FROM table_name_14 WHERE combined = \"1\" AND country = \"united states\" AND victories > 11" }
What is Bob Charles' To par?
CREATE TABLE table_name_84 (to_par VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT to_par FROM table_name_84 WHERE player = \"bob charles\"" }
What is the Total for the Player with a To par of +11?
CREATE TABLE table_name_17 (total INTEGER, to_par VARCHAR)
{ "SQL_Query": "SELECT MAX(total) FROM table_name_17 WHERE to_par = \"+11\"" }
What is the Total of the Player with a To par of –13?
CREATE TABLE table_name_24 (total INTEGER, to_par VARCHAR)
{ "SQL_Query": "SELECT SUM(total) FROM table_name_24 WHERE to_par = \"–13\"" }
What is Guard Kerri Shields Hometown?
CREATE TABLE table_name_94 (hometown VARCHAR, position VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT hometown FROM table_name_94 WHERE position = \"guard\" AND name = \"kerri shields\"" }
What is the Name of the Player from Albuquerque, New Mexico?
CREATE TABLE table_name_69 (name VARCHAR, hometown VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_69 WHERE hometown = \"albuquerque, new mexico\"" }
What was the score of the 2nd leg when Newell's Old Boys played at home?
CREATE TABLE table_name_19 (home__2nd_leg_ VARCHAR)
{ "SQL_Query": "SELECT 2 AS nd_leg FROM table_name_19 WHERE home__2nd_leg_ = \"newell's old boys\"" }
Which team played at home for the second leg and has aggregate score of 2-0?
CREATE TABLE table_name_19 (home__2nd_leg_ VARCHAR, aggregate VARCHAR)
{ "SQL_Query": "SELECT home__2nd_leg_ FROM table_name_19 WHERE aggregate = \"2-0\"" }
What was the score on the first leg when gimnasia de mendoza played at home for the second leg?
CREATE TABLE table_name_57 (home__2nd_leg_ VARCHAR)
{ "SQL_Query": "SELECT 1 AS st_leg FROM table_name_57 WHERE home__2nd_leg_ = \"gimnasia de mendoza\"" }
Which team played at home for the second leg and has an aggregate score of 2-4?
CREATE TABLE table_name_39 (home__2nd_leg_ VARCHAR, aggregate VARCHAR)
{ "SQL_Query": "SELECT home__2nd_leg_ FROM table_name_39 WHERE aggregate = \"2-4\"" }
What was the 2nd leg score when atlético tucumán played at home?
CREATE TABLE table_name_84 (home__2nd_leg_ VARCHAR)
{ "SQL_Query": "SELECT 2 AS nd_leg FROM table_name_84 WHERE home__2nd_leg_ = \"atlético tucumán\"" }
What is the record of the match with a win res., a 5:00 time, and more than 3 rounds?
CREATE TABLE table_name_85 (record VARCHAR, round VARCHAR, res VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_85 WHERE res = \"win\" AND time = \"5:00\" AND round > 3" }
What is the method of opponent georges st-pierre?
CREATE TABLE table_name_22 (method VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT method FROM table_name_22 WHERE opponent = \"georges st-pierre\"" }
What is the location of fightfest 2, which has 3 rounds?
CREATE TABLE table_name_46 (location VARCHAR, round VARCHAR, event VARCHAR)
{ "SQL_Query": "SELECT location FROM table_name_46 WHERE round = 3 AND event = \"fightfest 2\"" }
Who is the opponent with a time of 1:19?
CREATE TABLE table_name_21 (opponent VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_21 WHERE time = \"1:19\"" }
Who is the opponent with a 0-1 record?
CREATE TABLE table_name_81 (opponent VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_81 WHERE record = \"0-1\"" }
What is the total rank with more than 392 total points and an 24.8 average?
CREATE TABLE table_name_12 (rank_by_average VARCHAR, total_points VARCHAR, average VARCHAR)
{ "SQL_Query": "SELECT COUNT(rank_by_average) FROM table_name_12 WHERE total_points > 392 AND average = 24.8" }
What is the highest average with less than 3 places, less than 433 total points, and a rank less than 2?
CREATE TABLE table_name_62 (average INTEGER, rank_by_average VARCHAR, place VARCHAR, total_points VARCHAR)
{ "SQL_Query": "SELECT MAX(average) FROM table_name_62 WHERE place < 3 AND total_points < 433 AND rank_by_average < 2" }
What is the total average with 54 total points and a rank less than 10?
CREATE TABLE table_name_34 (average VARCHAR, total_points VARCHAR, rank_by_average VARCHAR)
{ "SQL_Query": "SELECT COUNT(average) FROM table_name_34 WHERE total_points = 54 AND rank_by_average < 10" }
What is the total rank by average for 2 dances, which have more than 37 total points?
CREATE TABLE table_name_99 (rank_by_average VARCHAR, number_of_dances VARCHAR, total_points VARCHAR)
{ "SQL_Query": "SELECT COUNT(rank_by_average) FROM table_name_99 WHERE number_of_dances = 2 AND total_points > 37" }
What Championship has an Opponent in the final of aaron krickstein, and a Score in the final of 7–5, 6–2?
CREATE TABLE table_name_86 (championship VARCHAR, opponent_in_the_final VARCHAR, score_in_the_final VARCHAR)
{ "SQL_Query": "SELECT championship FROM table_name_86 WHERE opponent_in_the_final = \"aaron krickstein\" AND score_in_the_final = \"7–5, 6–2\"" }
What Score in the final has a Surface of hard, a Championship of washington, d.c. , u.s., and an Opponent in the final of ivan lendl?
CREATE TABLE table_name_44 (score_in_the_final VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR, championship VARCHAR)
{ "SQL_Query": "SELECT score_in_the_final FROM table_name_44 WHERE surface = \"hard\" AND championship = \"washington, d.c. , u.s.\" AND opponent_in_the_final = \"ivan lendl\"" }
What is the highest Number of seasons in Liga MX for Club cruz azul?
CREATE TABLE table_name_27 (number_of_seasons_in_liga_mx INTEGER, club VARCHAR)
{ "SQL_Query": "SELECT MAX(number_of_seasons_in_liga_mx) FROM table_name_27 WHERE club = \"cruz azul\"" }
What is the highest Number of seasons in Liga MX for Club cruz azul, when their season in the top division is higher than 68?
CREATE TABLE table_name_33 (number_of_seasons_in_liga_mx INTEGER, club VARCHAR, number_of_seasons_in_top_division VARCHAR)
{ "SQL_Query": "SELECT MAX(number_of_seasons_in_liga_mx) FROM table_name_33 WHERE club = \"cruz azul\" AND number_of_seasons_in_top_division > 68" }
What is the total number of Top division titles for the club that has more than 40 seasons in top division, a First season of current spell in top division of 1943-44, and more than 89 seasons in Liga MX?
CREATE TABLE table_name_55 (top_division_titles VARCHAR, number_of_seasons_in_liga_mx VARCHAR, number_of_seasons_in_top_division VARCHAR, first_season_of_current_spell_in_top_division VARCHAR)
{ "SQL_Query": "SELECT COUNT(top_division_titles) FROM table_name_55 WHERE number_of_seasons_in_top_division > 40 AND first_season_of_current_spell_in_top_division = \"1943-44\" AND number_of_seasons_in_liga_mx > 89" }
How many top division titles does Club Guadalajara have, with more than 42 seasons in Liga MX?
CREATE TABLE table_name_66 (top_division_titles INTEGER, number_of_seasons_in_liga_mx VARCHAR, club VARCHAR)
{ "SQL_Query": "SELECT SUM(top_division_titles) FROM table_name_66 WHERE number_of_seasons_in_liga_mx > 42 AND club = \"guadalajara\"" }
Which club has fewer than 40 seasons in Liga MX and 65 seasons in the top division?
CREATE TABLE table_name_32 (club VARCHAR, number_of_seasons_in_liga_mx VARCHAR, number_of_seasons_in_top_division VARCHAR)
{ "SQL_Query": "SELECT club FROM table_name_32 WHERE number_of_seasons_in_liga_mx < 40 AND number_of_seasons_in_top_division = 65" }
What number is in Bois de Warville with a time less than 810?
CREATE TABLE table_name_4 (number INTEGER, location VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT SUM(number) FROM table_name_4 WHERE location = \"bois de warville\" AND time < 810" }
What is number 21's highest time?
CREATE TABLE table_name_24 (time INTEGER, number VARCHAR)
{ "SQL_Query": "SELECT MAX(time) FROM table_name_24 WHERE number = 21" }
What number with the opponent Fokker D.vii have with a time of 1655?
CREATE TABLE table_name_89 (number INTEGER, opponent VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT SUM(number) FROM table_name_89 WHERE opponent = \"fokker d.vii\" AND time = 1655" }
Who is the opponent with a time higher than 1040, a Spad xiii aircraft in Dun-Sur-Meuse with a lower number than 22?
CREATE TABLE table_name_5 (opponent VARCHAR, location VARCHAR, number VARCHAR, time VARCHAR, aircraft VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_5 WHERE time > 1040 AND aircraft = \"spad xiii\" AND number < 22 AND location = \"dun-sur-meuse\"" }
What number has the opponent Fokker d.vii with a time of 600?
CREATE TABLE table_name_66 (number INTEGER, opponent VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT SUM(number) FROM table_name_66 WHERE opponent = \"fokker d.vii\" AND time = 600" }
What is the Name of the Building with 36 or more Floors with Years as tallest of 1986–1992?
CREATE TABLE table_name_27 (name VARCHAR, floors VARCHAR, years_as_tallest VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_27 WHERE floors > 36 AND years_as_tallest = \"1986–1992\"" }
What is the Years as tallest of the Building with a Height ft (m) of 145 (44)?
CREATE TABLE table_name_55 (years_as_tallest VARCHAR, height_ft__m_ VARCHAR)
{ "SQL_Query": "SELECT years_as_tallest FROM table_name_55 WHERE height_ft__m_ = \"145 (44)\"" }
What is the Street Address of the Building with 17 Floors?
CREATE TABLE table_name_70 (street_address VARCHAR, floors VARCHAR)
{ "SQL_Query": "SELECT street_address FROM table_name_70 WHERE floors = 17" }
What is the Name of the Building at 100 North Tampa Street?
CREATE TABLE table_name_28 (name VARCHAR, street_address VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_28 WHERE street_address = \"100 north tampa street\"" }
What away is there for the q3 round?
CREATE TABLE table_name_68 (away VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT away FROM table_name_68 WHERE round = \"q3\"" }
What is the Aggregate of Bayer Leverkusen opponents?
CREATE TABLE table_name_56 (aggregate VARCHAR, opponents VARCHAR)
{ "SQL_Query": "SELECT aggregate FROM table_name_56 WHERE opponents = \"bayer leverkusen\"" }
What is the competition that was at serravalle, san marino?
CREATE TABLE table_name_80 (competition VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT competition FROM table_name_80 WHERE venue = \"serravalle, san marino\"" }
Where was the friendly competition that Andriy Yarmolenko won on 28 may 2012?
CREATE TABLE table_name_78 (venue VARCHAR, date VARCHAR, result VARCHAR, competition VARCHAR)
{ "SQL_Query": "SELECT venue FROM table_name_78 WHERE result = \"won\" AND competition = \"friendly\" AND date = \"28 may 2012\"" }
What is the result of the game at kyiv, ukraine?
CREATE TABLE table_name_2 (result VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_2 WHERE venue = \"kyiv, ukraine\"" }
What is the Style of the dance by Choreographer Luda and Oliver?
CREATE TABLE table_name_59 (style VARCHAR, choreographer VARCHAR)
{ "SQL_Query": "SELECT style FROM table_name_59 WHERE choreographer = \"luda and oliver\"" }
What is the Result of the dance Choreographed by Kelly Aykers?
CREATE TABLE table_name_44 (results VARCHAR, choreographer VARCHAR)
{ "SQL_Query": "SELECT results FROM table_name_44 WHERE choreographer = \"kelly aykers\"" }
What is the Style of the dance Choreographed by Nacho Pop with result of safe?
CREATE TABLE table_name_12 (style VARCHAR, results VARCHAR, choreographer VARCHAR)
{ "SQL_Query": "SELECT style FROM table_name_12 WHERE results = \"safe\" AND choreographer = \"nacho pop\"" }
What is the rank with a higher than 2 total, 21 gold and more than 12 bronze?
CREATE TABLE table_name_18 (rank INTEGER, bronze VARCHAR, total VARCHAR, gold VARCHAR)
{ "SQL_Query": "SELECT AVG(rank) FROM table_name_18 WHERE total > 2 AND gold = 21 AND bronze > 12" }
How many golds does Germany have with more than 1 silver?
CREATE TABLE table_name_74 (gold INTEGER, silver VARCHAR, nation VARCHAR)
{ "SQL_Query": "SELECT SUM(gold) FROM table_name_74 WHERE silver > 1 AND nation = \"germany\"" }
What is the total number of rounds of the player with a pick of 20?
CREATE TABLE table_name_87 (round VARCHAR, pick VARCHAR)
{ "SQL_Query": "SELECT COUNT(round) FROM table_name_87 WHERE pick = 20" }
Who is the player from the 1971 draft with a pick greater than 7?
CREATE TABLE table_name_15 (player VARCHAR, draft VARCHAR, pick VARCHAR)
{ "SQL_Query": "SELECT player FROM table_name_15 WHERE draft = 1971 AND pick > 7" }
What is the total number of Premier, when Second is "55"?
CREATE TABLE table_name_67 (premier VARCHAR, second VARCHAR)
{ "SQL_Query": "SELECT COUNT(premier) FROM table_name_67 WHERE second = 55" }
What is the total number of Second, when First is greater than 18, when Season is 1992-93, and when Premier is greater than 16?
CREATE TABLE table_name_5 (second VARCHAR, premier VARCHAR, first VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT COUNT(second) FROM table_name_5 WHERE first > 18 AND season = \"1992-93\" AND premier > 16" }
What is the lowest Total, when Second is "55"?
CREATE TABLE table_name_2 (total INTEGER, second VARCHAR)
{ "SQL_Query": "SELECT MIN(total) FROM table_name_2 WHERE second = 55" }
What is the highest Total, when Season is "1996-97", and when Second is less than 33?
CREATE TABLE table_name_23 (total INTEGER, season VARCHAR, second VARCHAR)
{ "SQL_Query": "SELECT MAX(total) FROM table_name_23 WHERE season = \"1996-97\" AND second < 33" }
What is the sum of Second, when Total is less than 70, when Premier is less than 20, and when First is greater than 18?
CREATE TABLE table_name_1 (second INTEGER, first VARCHAR, total VARCHAR, premier VARCHAR)
{ "SQL_Query": "SELECT SUM(second) FROM table_name_1 WHERE total < 70 AND premier < 20 AND first > 18" }
In what season were there 27 goals and 58 points?
CREATE TABLE table_name_54 (season VARCHAR, goals VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT season FROM table_name_54 WHERE goals = \"27\" AND points = \"58\"" }