question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
What is the sum of Total, when Silver is 0, and when Gold is 1? | CREATE TABLE table_name_72 (total INTEGER, silver VARCHAR, gold VARCHAR) | {
"SQL_Query": "SELECT SUM(total) FROM table_name_72 WHERE silver = 0 AND gold = 1"
} |
What is the highest Total, when Gold is 1, when Nation is Hungary, and when Bronze is less than 0? | CREATE TABLE table_name_32 (total INTEGER, bronze VARCHAR, gold VARCHAR, nation VARCHAR) | {
"SQL_Query": "SELECT MAX(total) FROM table_name_32 WHERE gold = 1 AND nation = \"hungary\" AND bronze < 0"
} |
What is the Year of the Film Belle of the Nineties? | CREATE TABLE table_name_22 (year VARCHAR, film VARCHAR) | {
"SQL_Query": "SELECT year FROM table_name_22 WHERE film = \"belle of the nineties\""
} |
What is the Year of the Film Klondike Annie? | CREATE TABLE table_name_25 (year INTEGER, film VARCHAR) | {
"SQL_Query": "SELECT SUM(year) FROM table_name_25 WHERE film = \"klondike annie\""
} |
What is the Studio of the Film with Director Gregory Ratoff after 1933? | CREATE TABLE table_name_38 (studio VARCHAR, year VARCHAR, director VARCHAR) | {
"SQL_Query": "SELECT studio FROM table_name_38 WHERE year > 1933 AND director = \"gregory ratoff\""
} |
Which label has a year older than 2004 and a 2xcd detail as well as the sonic seducer cold hands seduction vol. 69 title? | CREATE TABLE table_name_88 (label VARCHAR, title VARCHAR, year VARCHAR, details VARCHAR) | {
"SQL_Query": "SELECT label FROM table_name_88 WHERE year > 2004 AND details = \"2xcd\" AND title = \"sonic seducer cold hands seduction vol. 69\""
} |
Which details has the out of line label and the year of 2005? | CREATE TABLE table_name_9 (details VARCHAR, label VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT details FROM table_name_9 WHERE label = \"out of line\" AND year = 2005"
} |
What average year contains the title of machineries of joy vol. 4? | CREATE TABLE table_name_54 (year INTEGER, title VARCHAR) | {
"SQL_Query": "SELECT AVG(year) FROM table_name_54 WHERE title = \"machineries of joy vol. 4\""
} |
Which track title has a year lesser thsn 2005? | CREATE TABLE table_name_6 (Track VARCHAR, year INTEGER) | {
"SQL_Query": "SELECT Track AS title FROM table_name_6 WHERE year < 2005"
} |
Which college has a pick less than 25, an overall greater than 159, a round less than 10, and wr as the position? | CREATE TABLE table_name_10 (college VARCHAR, position VARCHAR, round VARCHAR, pick VARCHAR, overall VARCHAR) | {
"SQL_Query": "SELECT college FROM table_name_10 WHERE pick < 25 AND overall > 159 AND round < 10 AND position = \"wr\""
} |
What is the average overall that has a pick less than 20, North Carolina as the college, with a round less than 8? | CREATE TABLE table_name_69 (overall INTEGER, round VARCHAR, pick VARCHAR, college VARCHAR) | {
"SQL_Query": "SELECT AVG(overall) FROM table_name_69 WHERE pick < 20 AND college = \"north carolina\" AND round < 8"
} |
How many overalls have a pick greater than 19, with florida as the college? | CREATE TABLE table_name_24 (overall INTEGER, pick VARCHAR, college VARCHAR) | {
"SQL_Query": "SELECT SUM(overall) FROM table_name_24 WHERE pick > 19 AND college = \"florida\""
} |
What college has an overall less than 243, and tony green as the name? | CREATE TABLE table_name_70 (college VARCHAR, overall VARCHAR, name VARCHAR) | {
"SQL_Query": "SELECT college FROM table_name_70 WHERE overall < 243 AND name = \"tony green\""
} |
Which Large end has a Taper/ft smaller than 0.6000000000000001? | CREATE TABLE table_name_5 (large_end VARCHAR, taper VARCHAR, ft VARCHAR) | {
"SQL_Query": "SELECT COUNT(large_end) FROM table_name_5 WHERE taper / ft < 0.6000000000000001"
} |
Which Taper/ft that has a Large end smaller than 0.5, and a Taper of #2? | CREATE TABLE table_name_27 (ft VARCHAR, taper INTEGER, large_end VARCHAR) | {
"SQL_Query": "SELECT MAX(taper) / ft FROM table_name_27 WHERE large_end < 0.5 AND taper = \"#2\""
} |
Which Length has a Taper of #15, and a Large end larger than 1.875? | CREATE TABLE table_name_92 (length INTEGER, taper VARCHAR, large_end VARCHAR) | {
"SQL_Query": "SELECT MAX(length) FROM table_name_92 WHERE taper = \"#15\" AND large_end > 1.875"
} |
Which Angle from center/° has a Taper/ft smaller than 0.6000000000000001? | CREATE TABLE table_name_97 (angle_from_center_ VARCHAR, taper VARCHAR, ft VARCHAR) | {
"SQL_Query": "SELECT COUNT(angle_from_center_) AS ° FROM table_name_97 WHERE taper / ft < 0.6000000000000001"
} |
What driver had the highest grid position with a time of +0.283? | CREATE TABLE table_name_90 (grid INTEGER, time VARCHAR) | {
"SQL_Query": "SELECT MAX(grid) FROM table_name_90 WHERE time = \"+0.283\""
} |
What is the most number of laps run by Ilario Dionisi? | CREATE TABLE table_name_89 (laps INTEGER, rider VARCHAR) | {
"SQL_Query": "SELECT MAX(laps) FROM table_name_89 WHERE rider = \"ilario dionisi\""
} |
What is the total of laps run by the driver with a grid under 17 and a time of +5.088? | CREATE TABLE table_name_3 (laps INTEGER, time VARCHAR, grid VARCHAR) | {
"SQL_Query": "SELECT SUM(laps) FROM table_name_3 WHERE time = \"+5.088\" AND grid < 17"
} |
What is the driver with the laps under 16, grid of 10, a bike of Yamaha YZF-R6, and ended with an accident? | CREATE TABLE table_name_67 (rider VARCHAR, grid VARCHAR, bike VARCHAR, laps VARCHAR, time VARCHAR) | {
"SQL_Query": "SELECT rider FROM table_name_67 WHERE laps < 16 AND time = \"accident\" AND bike = \"yamaha yzf-r6\" AND grid = 10"
} |
Who scored more than 72? | CREATE TABLE table_name_28 (player VARCHAR, score INTEGER) | {
"SQL_Query": "SELECT player FROM table_name_28 WHERE score > 72"
} |
What is the top score for tsuneyuki nakajima? | CREATE TABLE table_name_80 (score INTEGER, player VARCHAR) | {
"SQL_Query": "SELECT MAX(score) FROM table_name_80 WHERE player = \"tsuneyuki nakajima\""
} |
What is the low score for TO par +2 in japan? | CREATE TABLE table_name_5 (score INTEGER, to_par VARCHAR, country VARCHAR) | {
"SQL_Query": "SELECT MIN(score) FROM table_name_5 WHERE to_par = \"+2\" AND country = \"japan\""
} |
What is Anders Forsbrand's Place? | CREATE TABLE table_name_14 (place VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT place FROM table_name_14 WHERE player = \"anders forsbrand\""
} |
What is the T8 Place Player? | CREATE TABLE table_name_78 (player VARCHAR, place VARCHAR) | {
"SQL_Query": "SELECT player FROM table_name_78 WHERE place = \"t8\""
} |
What is the To par of the Player with a Score of 70-71=141? | CREATE TABLE table_name_58 (to_par INTEGER, score VARCHAR) | {
"SQL_Query": "SELECT AVG(to_par) FROM table_name_58 WHERE score = 70 - 71 = 141"
} |
Which Partner has Opponents in the final of john bromwich frank sedgman? | CREATE TABLE table_name_20 (partner VARCHAR, opponents_in_the_final VARCHAR) | {
"SQL_Query": "SELECT partner FROM table_name_20 WHERE opponents_in_the_final = \"john bromwich frank sedgman\""
} |
Which Opponents in the final have a Score of 4–6, 6–4, 2–6, 4–6? | CREATE TABLE table_name_18 (opponents_in_the_final VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT opponents_in_the_final FROM table_name_18 WHERE score = \"4–6, 6–4, 2–6, 4–6\""
} |
Which Year has a Score of 5–7, 4–6, 6–3, 1–6? | CREATE TABLE table_name_88 (year VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT year FROM table_name_88 WHERE score = \"5–7, 4–6, 6–3, 1–6\""
} |
Which Championship has a Score of 2–6, 4–6, 4–6? | CREATE TABLE table_name_91 (championship VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT championship FROM table_name_91 WHERE score = \"2–6, 4–6, 4–6\""
} |
Which Score has Opponents in the final of john bromwich frank sedgman? | CREATE TABLE table_name_92 (score VARCHAR, opponents_in_the_final VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_92 WHERE opponents_in_the_final = \"john bromwich frank sedgman\""
} |
Which Opponent has a Date of november 17, 1963? | CREATE TABLE table_name_30 (opponent VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_30 WHERE date = \"november 17, 1963\""
} |
Which Opponent has a Result of l 14–10? | CREATE TABLE table_name_27 (opponent VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_27 WHERE result = \"l 14–10\""
} |
Which Result has a Week smaller than 11, and Attendance of 17,568? | CREATE TABLE table_name_87 (result VARCHAR, week VARCHAR, attendance VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_87 WHERE week < 11 AND attendance = \"17,568\""
} |
Which Opponent has a Result of w 19–10? | CREATE TABLE table_name_40 (opponent VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_40 WHERE result = \"w 19–10\""
} |
What is the average goals for Essi Sainio? | CREATE TABLE table_name_54 (goals INTEGER, name VARCHAR) | {
"SQL_Query": "SELECT AVG(goals) FROM table_name_54 WHERE name = \"essi sainio\""
} |
Who were the champions in 1988? | CREATE TABLE table_name_26 (champion VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT champion FROM table_name_26 WHERE year = 1988"
} |
Who was the runner-up in 1989? | CREATE TABLE table_name_32 (runner_up VARCHAR, year VARCHAR) | {
"SQL_Query": "SELECT runner_up FROM table_name_32 WHERE year = 1989"
} |
What is the lowest December, when Score is "4 - 4"? | CREATE TABLE table_name_66 (december INTEGER, score VARCHAR) | {
"SQL_Query": "SELECT MIN(december) FROM table_name_66 WHERE score = \"4 - 4\""
} |
What is Record, when Game is "24"? | CREATE TABLE table_name_24 (record VARCHAR, game VARCHAR) | {
"SQL_Query": "SELECT record FROM table_name_24 WHERE game = 24"
} |
What is Opponent, when Game is "37"? | CREATE TABLE table_name_9 (opponent VARCHAR, game VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_9 WHERE game = 37"
} |
How many spectators attended the game on 11/09/1935? | CREATE TABLE table_name_22 (attendance VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT attendance FROM table_name_22 WHERE date = \"11/09/1935\""
} |
Who was the opponent against which the result was w20-0? | CREATE TABLE table_name_3 (opponent VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_3 WHERE result = \"w20-0\""
} |
On which date was the result w20-0? | CREATE TABLE table_name_66 (date VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_66 WHERE result = \"w20-0\""
} |
How many spectators attended the game that ended in a result of w29-7? | CREATE TABLE table_name_27 (attendance VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT attendance FROM table_name_27 WHERE result = \"w29-7\""
} |
Which Place has a To par of –8? | CREATE TABLE table_name_19 (place VARCHAR, to_par VARCHAR) | {
"SQL_Query": "SELECT place FROM table_name_19 WHERE to_par = \"–8\""
} |
Which Score has a Place of 3? | CREATE TABLE table_name_18 (score VARCHAR, place VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_18 WHERE place = \"3\""
} |
Which average money has a Score of 69-72-72-72=285? | CREATE TABLE table_name_38 (money___ INTEGER, score VARCHAR) | {
"SQL_Query": "SELECT AVG(money___) AS $__ FROM table_name_38 WHERE score = 69 - 72 - 72 - 72 = 285"
} |
Which Score has a Place of t6, and a Country of paraguay? | CREATE TABLE table_name_20 (score VARCHAR, place VARCHAR, country VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_20 WHERE place = \"t6\" AND country = \"paraguay\""
} |
What are the total rounds for the texas college and has a pick smaller than 25? | CREATE TABLE table_name_39 (round VARCHAR, college VARCHAR, pick VARCHAR) | {
"SQL_Query": "SELECT COUNT(round) FROM table_name_39 WHERE college = \"texas\" AND pick < 25"
} |
What top round has a pick smaller than 2? | CREATE TABLE table_name_7 (round INTEGER, pick INTEGER) | {
"SQL_Query": "SELECT MAX(round) FROM table_name_7 WHERE pick < 2"
} |
WHAT IS THE RESULT WITH A SCORE OF 70-73? | CREATE TABLE table_name_81 (result VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_81 WHERE score = \"70-73\""
} |
What is the date with score of 66-62? | CREATE TABLE table_name_10 (date VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_10 WHERE score = \"66-62\""
} |
WHAT IS THE SCORE WITH A RECORD OF 1-0? | CREATE TABLE table_name_94 (score VARCHAR, record VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_94 WHERE record = \"1-0\""
} |
WHAT IS THE OPPONENT WITH A SCORE OF 72-63? | CREATE TABLE table_name_89 (opponent VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT opponent FROM table_name_89 WHERE score = \"72-63\""
} |
What is the weight number when the distance was 5 ½ f? | CREATE TABLE table_name_89 (weight VARCHAR, distance VARCHAR) | {
"SQL_Query": "SELECT COUNT(weight) FROM table_name_89 WHERE distance = \"5 ½ f\""
} |
What was the distance when the weight was 6.11? | CREATE TABLE table_name_21 (distance VARCHAR, weight VARCHAR) | {
"SQL_Query": "SELECT distance FROM table_name_21 WHERE weight = 6.11"
} |
What was the race when the winner of 2nd was Voleuse? | CREATE TABLE table_name_27 (race VARCHAR, winner_or_2nd VARCHAR) | {
"SQL_Query": "SELECT race FROM table_name_27 WHERE winner_or_2nd = \"voleuse\""
} |
What was the name of the winner or 2nd when the result was –, and weight was 6.7? | CREATE TABLE table_name_91 (winner_or_2nd VARCHAR, result VARCHAR, weight VARCHAR) | {
"SQL_Query": "SELECT winner_or_2nd FROM table_name_91 WHERE result = \"–\" AND weight = 6.7"
} |
What is the largest weight wth a Result of –, and a Distance of 7f? | CREATE TABLE table_name_37 (weight INTEGER, result VARCHAR, distance VARCHAR) | {
"SQL_Query": "SELECT MAX(weight) FROM table_name_37 WHERE result = \"–\" AND distance = \"7f\""
} |
What is the the name of the winner or 2nd with a weight more than 7.3, and the result was –? | CREATE TABLE table_name_41 (winner_or_2nd VARCHAR, weight VARCHAR, result VARCHAR) | {
"SQL_Query": "SELECT winner_or_2nd FROM table_name_41 WHERE weight > 7.3 AND result = \"–\""
} |
What is the total number of Total, when Silver is 1, and when Bronze is 7? | CREATE TABLE table_name_5 (total VARCHAR, silver VARCHAR, bronze VARCHAR) | {
"SQL_Query": "SELECT COUNT(total) FROM table_name_5 WHERE silver = \"1\" AND bronze = \"7\""
} |
What is Bronze, when Silver is 2, and when Nation is Italy? | CREATE TABLE table_name_20 (bronze VARCHAR, silver VARCHAR, nation VARCHAR) | {
"SQL_Query": "SELECT bronze FROM table_name_20 WHERE silver = \"2\" AND nation = \"italy\""
} |
What is Gold, when Total is 6? | CREATE TABLE table_name_79 (gold VARCHAR, total VARCHAR) | {
"SQL_Query": "SELECT gold FROM table_name_79 WHERE total = 6"
} |
What is Gold, when Silver is 5, and when Nation is Belgium? | CREATE TABLE table_name_91 (gold VARCHAR, silver VARCHAR, nation VARCHAR) | {
"SQL_Query": "SELECT gold FROM table_name_91 WHERE silver = \"5\" AND nation = \"belgium\""
} |
What is Gold, when Bronze is 11? | CREATE TABLE table_name_71 (gold VARCHAR, bronze VARCHAR) | {
"SQL_Query": "SELECT gold FROM table_name_71 WHERE bronze = \"11\""
} |
Which poll source determined undecided of 5% and Jim DeMint (R) of 58%? | CREATE TABLE table_name_98 (poll_source VARCHAR, undecided VARCHAR, jim_demint__r_ VARCHAR) | {
"SQL_Query": "SELECT poll_source FROM table_name_98 WHERE undecided = \"5%\" AND jim_demint__r_ = \"58%\""
} |
Which poll source had an other of 15%? | CREATE TABLE table_name_38 (poll_source VARCHAR, other VARCHAR) | {
"SQL_Query": "SELECT poll_source FROM table_name_38 WHERE other = \"15%\""
} |
What was the vote for Alvin Green when other was 9%? | CREATE TABLE table_name_29 (alvin_greene__d_ VARCHAR, other VARCHAR) | {
"SQL_Query": "SELECT alvin_greene__d_ FROM table_name_29 WHERE other = \"9%\""
} |
What was the vote for Alvin Green when Jim DeMint was 62%? | CREATE TABLE table_name_71 (alvin_greene__d_ VARCHAR, jim_demint__r_ VARCHAR) | {
"SQL_Query": "SELECT alvin_greene__d_ FROM table_name_71 WHERE jim_demint__r_ = \"62%\""
} |
What was the vote for Alvin Green when other was 9%? | CREATE TABLE table_name_22 (alvin_greene__d_ VARCHAR, other VARCHAR) | {
"SQL_Query": "SELECT alvin_greene__d_ FROM table_name_22 WHERE other = \"9%\""
} |
What is the Place of the Player with a To par of –1? | CREATE TABLE table_name_61 (place VARCHAR, to_par VARCHAR) | {
"SQL_Query": "SELECT place FROM table_name_61 WHERE to_par = \"–1\""
} |
What is the Place of the Player with Money greater than 300 and a Score of 71-69-70-70=280? | CREATE TABLE table_name_1 (place VARCHAR, money___$__ VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT place FROM table_name_1 WHERE money___$__ > 300 AND score = 71 - 69 - 70 - 70 = 280"
} |
What is the Score of the game of the Player in Place 4? | CREATE TABLE table_name_16 (score VARCHAR, place VARCHAR) | {
"SQL_Query": "SELECT score FROM table_name_16 WHERE place = \"4\""
} |
What is the To par of the Player with a Score of 73-70-71-72=286? | CREATE TABLE table_name_35 (to_par VARCHAR, score VARCHAR) | {
"SQL_Query": "SELECT to_par FROM table_name_35 WHERE score = 73 - 70 - 71 - 72 = 286"
} |
What is the To par of the 4 Place Player? | CREATE TABLE table_name_9 (to_par VARCHAR, place VARCHAR) | {
"SQL_Query": "SELECT to_par FROM table_name_9 WHERE place = \"4\""
} |
What is the Money of the Player in Place 5? | CREATE TABLE table_name_37 (money___ INTEGER, place VARCHAR) | {
"SQL_Query": "SELECT SUM(money___) AS $__ FROM table_name_37 WHERE place = \"5\""
} |
Who was the arranger for the song that had a lyricist of Sirapatara Kalayapanid? | CREATE TABLE table_name_8 (arranger_s_ VARCHAR, lyricist_s_ VARCHAR) | {
"SQL_Query": "SELECT arranger_s_ FROM table_name_8 WHERE lyricist_s_ = \"sirapatara kalayapanid\""
} |
What is the lowest Bush#, when Bush% is "65.4%"? | CREATE TABLE table_name_63 (bush_number INTEGER, bush_percentage VARCHAR) | {
"SQL_Query": "SELECT MIN(bush_number) FROM table_name_63 WHERE bush_percentage = \"65.4%\""
} |
What is the lowest Kerry#, when Others# is "106", and when Bush# is less than 3,188? | CREATE TABLE table_name_38 (kerry_number INTEGER, others_number VARCHAR, bush_number VARCHAR) | {
"SQL_Query": "SELECT MIN(kerry_number) FROM table_name_38 WHERE others_number = 106 AND bush_number < 3 OFFSET 188"
} |
What is the highest Bush#, when Others% is "1.7%", when Others# is less than 75, and when Kerry# is greater than 1,524? | CREATE TABLE table_name_85 (bush_number INTEGER, kerry_number VARCHAR, others_percentage VARCHAR, others_number VARCHAR) | {
"SQL_Query": "SELECT MAX(bush_number) FROM table_name_85 WHERE others_percentage = \"1.7%\" AND others_number < 75 AND kerry_number > 1 OFFSET 524"
} |
When did Manchester United play against Bristol City with an H/A of A? | CREATE TABLE table_name_66 (date VARCHAR, h___a VARCHAR, opponents VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_66 WHERE h___a = \"a\" AND opponents = \"bristol city\""
} |
How many people attended the match when Manchester United played against the Hearts? | CREATE TABLE table_name_95 (attendance INTEGER, opponents VARCHAR) | {
"SQL_Query": "SELECT SUM(attendance) FROM table_name_95 WHERE opponents = \"hearts\""
} |
What is the average number of weeks that the opponent was the Denver Broncos? | CREATE TABLE table_name_78 (week INTEGER, opponent VARCHAR) | {
"SQL_Query": "SELECT AVG(week) FROM table_name_78 WHERE opponent = \"denver broncos\""
} |
What was the result of the game played on November 23, 2003? | CREATE TABLE table_name_67 (result VARCHAR, date VARCHAR) | {
"SQL_Query": "SELECT result FROM table_name_67 WHERE date = \"november 23, 2003\""
} |
What was the kickoff time on week 1? | CREATE TABLE table_name_53 (kickoff_time VARCHAR, week VARCHAR) | {
"SQL_Query": "SELECT kickoff_time FROM table_name_53 WHERE week = 1"
} |
Can you tell me the sum of FA Cup Goals that has the League Cup Goals larger than 0? | CREATE TABLE table_name_57 (fa_cup_goals INTEGER, league_cup_goals INTEGER) | {
"SQL_Query": "SELECT SUM(fa_cup_goals) FROM table_name_57 WHERE league_cup_goals > 0"
} |
what is the english translation when the Language is english, Draw is smaller than 16, and the Artist is aysel and arash? | CREATE TABLE table_name_51 (english_translation VARCHAR, artist VARCHAR, language VARCHAR, draw VARCHAR) | {
"SQL_Query": "SELECT english_translation FROM table_name_51 WHERE language = \"english\" AND draw < 16 AND artist = \"aysel and arash\""
} |
What is the average Points when the artist is kamil mikulčík and nela, and the Place is larger than 18? | CREATE TABLE table_name_42 (points INTEGER, artist VARCHAR, place VARCHAR) | {
"SQL_Query": "SELECT AVG(points) FROM table_name_42 WHERE artist = \"kamil mikulčík and nela\" AND place > 18"
} |
what is the place when the draw is less than 12 and the artist is quartissimo feat. martina? | CREATE TABLE table_name_60 (place INTEGER, draw VARCHAR, artist VARCHAR) | {
"SQL_Query": "SELECT SUM(place) FROM table_name_60 WHERE draw < 12 AND artist = \"quartissimo feat. martina\""
} |
What is the date amer sulaiman won? | CREATE TABLE table_name_50 (date VARCHAR, winner VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_50 WHERE winner = \"amer sulaiman\""
} |
What event has a $248,004 prize? | CREATE TABLE table_name_24 (event VARCHAR, prize VARCHAR) | {
"SQL_Query": "SELECT event FROM table_name_24 WHERE prize = \"$248,004\""
} |
What is the date of the event with a $322,280 prize? | CREATE TABLE table_name_12 (date VARCHAR, prize VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_12 WHERE prize = \"$322,280\""
} |
What event is in florianopolis? | CREATE TABLE table_name_12 (event VARCHAR, city VARCHAR) | {
"SQL_Query": "SELECT event FROM table_name_12 WHERE city = \"florianopolis\""
} |
Who is the winner in the city of lima? | CREATE TABLE table_name_16 (winner VARCHAR, city VARCHAR) | {
"SQL_Query": "SELECT winner FROM table_name_16 WHERE city = \"lima\""
} |
Alton Lister Category:Articles with hCards has what as the listed years? | CREATE TABLE table_name_56 (years VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT years FROM table_name_56 WHERE player = \"alton lister category:articles with hcards\""
} |
Tom Lagarde Category:Articles with hCards used what Jersey Number(s)? | CREATE TABLE table_name_22 (jersey_number_s_ VARCHAR, player VARCHAR) | {
"SQL_Query": "SELECT jersey_number_s_ FROM table_name_22 WHERE player = \"tom lagarde category:articles with hcards\""
} |
What is the fastest lap for Seiji Ara? | CREATE TABLE table_name_49 (fastest_lap VARCHAR, winning_driver VARCHAR) | {
"SQL_Query": "SELECT fastest_lap FROM table_name_49 WHERE winning_driver = \"seiji ara\""
} |
On what date does Yuji Tachikawa have the fastest lap in round 1? | CREATE TABLE table_name_24 (date VARCHAR, fastest_lap VARCHAR, round VARCHAR) | {
"SQL_Query": "SELECT date FROM table_name_24 WHERE fastest_lap = \"yuji tachikawa\" AND round = 1"
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.