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