combined_text stringlengths 106 1.05k |
|---|
###question:what is the part number when the release date is january 2011, the frequency is 3.4 ghz and the release price (usd) is $317?###answer:SELECT part_number_s_ FROM table_name_99 WHERE release_date = "january 2011" AND frequency = "3.4 ghz" AND release_price___usd__ = "$317"###context:CREATE TABLE table_name_99... |
###question:what is the part number that has a turbo of low power?###answer:SELECT part_number_s_ FROM table_name_85 WHERE turbo = "low power"###context:CREATE TABLE table_name_85 (part_number_s_ VARCHAR, turbo VARCHAR) |
###question:What is the place of birth when the elevator is Nicholas IV, and elector is Napoleone Orsini Frangipani?###answer:SELECT place_of_birth FROM table_name_7 WHERE elevator = "nicholas iv" AND elector = "napoleone orsini frangipani"###context:CREATE TABLE table_name_7 (place_of_birth VARCHAR, elevator VARCHAR, ... |
###question:What is the elevator when the elector is Pietro Colonna?###answer:SELECT elevator FROM table_name_77 WHERE elector = "pietro colonna"###context:CREATE TABLE table_name_77 (elevator VARCHAR, elector VARCHAR) |
###question:What is the elevator when elevated is May 16, 1288, and cardinalatial title shows Deacon of S. Adriano?###answer:SELECT elevator FROM table_name_21 WHERE elevated = "may 16, 1288" AND cardinalatial_title = "deacon of s. adriano"###context:CREATE TABLE table_name_21 (elevator VARCHAR, elevated VARCHAR, cardi... |
###question:What is the cardinalatial title when the elevated is September 18, 1294, and elector is Bérard De Got?###answer:SELECT cardinalatial_title FROM table_name_36 WHERE elevated = "september 18, 1294" AND elector = "bérard de got"###context:CREATE TABLE table_name_36 (cardinalatial_title VARCHAR, elevated VARCHA... |
###question:What is the place of birth when elevated is May 16, 1288, and cardinalatial title is Deacon of S. Eustachio?###answer:SELECT place_of_birth FROM table_name_78 WHERE elevated = "may 16, 1288" AND cardinalatial_title = "deacon of s. eustachio"###context:CREATE TABLE table_name_78 (place_of_birth VARCHAR, elev... |
###question:What format was the release in form the Edsel label, and that was from the EDCD 262 catalog?###answer:SELECT format FROM table_name_62 WHERE label = "edsel" AND catalog = "edcd 262"###context:CREATE TABLE table_name_62 (format VARCHAR, label VARCHAR, catalog VARCHAR) |
###question:Released on April 12, 1968 in LP format, what was the catalog?###answer:SELECT catalog FROM table_name_20 WHERE format = "lp" AND date = "april 12, 1968"###context:CREATE TABLE table_name_20 (catalog VARCHAR, format VARCHAR, date VARCHAR) |
###question:From what catalog was the release that happened on April 12, 1968, and in LP format?###answer:SELECT catalog FROM table_name_28 WHERE format = "lp" AND date = "april 12, 1968"###context:CREATE TABLE table_name_28 (catalog VARCHAR, format VARCHAR, date VARCHAR) |
###question:From what catalog was the release from Sundazed label?###answer:SELECT catalog FROM table_name_33 WHERE label = "sundazed"###context:CREATE TABLE table_name_33 (catalog VARCHAR, label VARCHAR) |
###question:When was the release that was in SACD (hybrid) format?###answer:SELECT date FROM table_name_27 WHERE format = "sacd (hybrid)"###context:CREATE TABLE table_name_27 (date VARCHAR, format VARCHAR) |
###question:The release from Simply Vinyl label was on what date?###answer:SELECT date FROM table_name_91 WHERE label = "simply vinyl"###context:CREATE TABLE table_name_91 (date VARCHAR, label VARCHAR) |
###question:what is the heat when the nationality is australia and the rank is less than 1?###answer:SELECT AVG(heat) FROM table_name_35 WHERE nationality = "australia" AND rank < 1###context:CREATE TABLE table_name_35 (heat INTEGER, nationality VARCHAR, rank VARCHAR) |
###question:What is the fewest Al Ahly wins for El Zamalek wins of 0 and 0 draws?###answer:SELECT MIN(al_ahly_wins) FROM table_name_29 WHERE draws = 0 AND el_zamalek_wins < 0###context:CREATE TABLE table_name_29 (al_ahly_wins INTEGER, draws VARCHAR, el_zamalek_wins VARCHAR) |
###question:Which competition had 2 draws?###answer:SELECT competition FROM table_name_79 WHERE draws = 2###context:CREATE TABLE table_name_79 (competition VARCHAR, draws VARCHAR) |
###question:What is the sum of draws for El Zamalek wins under 36, total over 2, and Al Ahly wins over 37?###answer:SELECT SUM(draws) FROM table_name_27 WHERE el_zamalek_wins < 36 AND total > 2 AND al_ahly_wins > 37###context:CREATE TABLE table_name_27 (draws INTEGER, al_ahly_wins VARCHAR, el_zamalek_wins VARCHAR, tota... |
###question:What is the average number of draws for Al Ahly wins over 59?###answer:SELECT AVG(draws) FROM table_name_1 WHERE al_ahly_wins > 59###context:CREATE TABLE table_name_1 (draws INTEGER, al_ahly_wins INTEGER) |
###question:What is the latitude that has a longitude larger than -101.819319 in Martin and a GEO ID of 3809951140?###answer:SELECT SUM(latitude) FROM table_name_71 WHERE longitude > -101.819319 AND township = "martin" AND geo_id = 3809951140###context:CREATE TABLE table_name_71 (latitude INTEGER, geo_id VARCHAR, longi... |
###question:What is the latitude with a GEO ID larger than 3806352640, and a Land(sqmi) of 34.345?###answer:SELECT AVG(latitude) FROM table_name_98 WHERE geo_id > 3806352640 AND land___sqmi__ = 34.345###context:CREATE TABLE table_name_98 (latitude INTEGER, geo_id VARCHAR, land___sqmi__ VARCHAR) |
###question:what is the final score when the opponent is platense?###answer:SELECT final_score FROM table_name_58 WHERE opponent = "platense"###context:CREATE TABLE table_name_58 (final_score VARCHAR, opponent VARCHAR) |
###question:what is the date when the opponent is real españa?###answer:SELECT date FROM table_name_41 WHERE opponent = "real españa"###context:CREATE TABLE table_name_41 (date VARCHAR, opponent VARCHAR) |
###question:what is the date when the opponent is real juventud?###answer:SELECT date FROM table_name_90 WHERE opponent = "real juventud"###context:CREATE TABLE table_name_90 (date VARCHAR, opponent VARCHAR) |
###question:what is the final score when the date is 2009-02-26?###answer:SELECT final_score FROM table_name_62 WHERE date = "2009-02-26"###context:CREATE TABLE table_name_62 (final_score VARCHAR, date VARCHAR) |
###question:who is playing for when the opponent is deportes savio and the date is 2010-03-11?###answer:SELECT playing_for FROM table_name_95 WHERE opponent = "deportes savio" AND date = "2010-03-11"###context:CREATE TABLE table_name_95 (playing_for VARCHAR, opponent VARCHAR, date VARCHAR) |
###question:Which Rank that is on september 9, 2004?###answer:SELECT rank FROM table_name_16 WHERE date = "september 9, 2004"###context:CREATE TABLE table_name_16 (rank VARCHAR, date VARCHAR) |
###question:Which Opponent is on september 9, 2004?###answer:SELECT opponent FROM table_name_77 WHERE date = "september 9, 2004"###context:CREATE TABLE table_name_77 (opponent VARCHAR, date VARCHAR) |
###question:What were the results for November 24, 2002?###answer:SELECT result FROM table_name_79 WHERE date = "november 24, 2002"###context:CREATE TABLE table_name_79 (result VARCHAR, date VARCHAR) |
###question:What is the greatest lane that David Payne was in when he ran longer than 13.17?###answer:SELECT MAX(lane) FROM table_name_99 WHERE athlete = "david payne" AND time > 13.17###context:CREATE TABLE table_name_99 (lane INTEGER, athlete VARCHAR, time VARCHAR) |
###question:Who had the time 13.6?###answer:SELECT athlete FROM table_name_76 WHERE time = 13.6###context:CREATE TABLE table_name_76 (athlete VARCHAR, time VARCHAR) |
###question:What is the position of the player for the Baltimore Orioles?###answer:SELECT position FROM table_name_6 WHERE team = "baltimore orioles"###context:CREATE TABLE table_name_6 (position VARCHAR, team VARCHAR) |
###question:What is the name of the player from Vanderbilt University?###answer:SELECT player FROM table_name_43 WHERE school = "vanderbilt university"###context:CREATE TABLE table_name_43 (player VARCHAR, school VARCHAR) |
###question:What is the lowest pick number for Arturo McDowell, who plays the OF position for the San Francisco Giants?###answer:SELECT MIN(pick) FROM table_name_13 WHERE position = "of" AND team = "san francisco giants" AND player = "arturo mcdowell"###context:CREATE TABLE table_name_13 (pick INTEGER, player VARCHAR, ... |
###question:What school did the player drafted for the New York Mets attend?###answer:SELECT school FROM table_name_4 WHERE team = "new york mets"###context:CREATE TABLE table_name_4 (school VARCHAR, team VARCHAR) |
###question:What's the round of 32 during the 56kg when the quarterfinals, semifinals, and finals did not advance?###answer:SELECT round_of_32 FROM table_name_10 WHERE finals = "did not advance" AND semifinals = "did not advance" AND quarterfinals = "did not advance" AND event = "56kg"###context:CREATE TABLE table_name... |
###question:Who was the athlete in the 56kg event having a did not advance in the finals?###answer:SELECT athlete FROM table_name_65 WHERE finals = "did not advance" AND event = "56kg"###context:CREATE TABLE table_name_65 (athlete VARCHAR, finals VARCHAR, event VARCHAR) |
###question:What's the 69kg of Round 16?###answer:SELECT round_of_16 FROM table_name_16 WHERE event = "69kg"###context:CREATE TABLE table_name_16 (round_of_16 VARCHAR, event VARCHAR) |
###question:What's the quarterfinals when the rank was bronze?###answer:SELECT quarterfinals FROM table_name_79 WHERE rank = "bronze"###context:CREATE TABLE table_name_79 (quarterfinals VARCHAR, rank VARCHAR) |
###question:What is Hon. Vicente Q. Roxas appointment date?###answer:SELECT date_of_appointment FROM table_name_25 WHERE name = "hon. vicente q. roxas"###context:CREATE TABLE table_name_25 (date_of_appointment VARCHAR, name VARCHAR) |
###question:What is the Draw number of the song by Artist of "Loudest Whisper" with 68 or less Points with a place of 9 or larger?###answer:SELECT AVG(draw) FROM table_name_63 WHERE points < 68 AND artist = "loudest whisper" AND place > 9###context:CREATE TABLE table_name_63 (draw INTEGER, place VARCHAR, points VARCHAR... |
###question:What is the Place of the Song by Artist Rosie Hunter with a Draw of 1 or larger?###answer:SELECT COUNT(place) FROM table_name_10 WHERE artist = "rosie hunter" AND draw > 1###context:CREATE TABLE table_name_10 (place VARCHAR, artist VARCHAR, draw VARCHAR) |
###question:Which Bronze has a Total larger than 7 and a Silver of 3, and a Games of summer, and a Gold of 5?###answer:SELECT bronze FROM table_name_65 WHERE total > 7 AND silver = 3 AND games = "summer" AND gold = 5###context:CREATE TABLE table_name_65 (bronze VARCHAR, gold VARCHAR, games VARCHAR, total VARCHAR, silve... |
###question:What is the tonnage of the Eldena?###answer:SELECT tonnage__grt_ FROM table_name_15 WHERE name = "eldena"###context:CREATE TABLE table_name_15 (tonnage__grt_ VARCHAR, name VARCHAR) |
###question:What show has a time of 4:00pm–5:00am?###answer:SELECT show_name FROM table_name_54 WHERE time = "4:00pm–5:00am"###context:CREATE TABLE table_name_54 (show_name VARCHAR, time VARCHAR) |
###question:What's the show that has 60 minutes as the news freq?###answer:SELECT show_name FROM table_name_25 WHERE news_freq = "60 minutes"###context:CREATE TABLE table_name_25 (show_name VARCHAR, news_freq VARCHAR) |
###question:What time that is networked has an ad freq of 20 minutes until 7pm?###answer:SELECT time FROM table_name_13 WHERE local_networked = "networked" AND ad_freq = "20 minutes until 7pm"###context:CREATE TABLE table_name_13 (time VARCHAR, local_networked VARCHAR, ad_freq VARCHAR) |
###question:What's time is Best Mix Overnight?###answer:SELECT time FROM table_name_94 WHERE show_name = "best mix overnight"###context:CREATE TABLE table_name_94 (time VARCHAR, show_name VARCHAR) |
###question:Which res has a Time of 5:00, and a Method of decision (unanimous), and a Record of 1–0?###answer:SELECT res FROM table_name_25 WHERE time = "5:00" AND method = "decision (unanimous)" AND record = "1–0"###context:CREATE TABLE table_name_25 (res VARCHAR, record VARCHAR, time VARCHAR, method VARCHAR) |
###question:Which Event has Res of loss, and a Time of 5:00, and an Opponent of lance everson?###answer:SELECT event FROM table_name_37 WHERE res = "loss" AND time = "5:00" AND opponent = "lance everson"###context:CREATE TABLE table_name_37 (event VARCHAR, opponent VARCHAR, res VARCHAR, time VARCHAR) |
###question:What is the heat for the time 57.97?###answer:SELECT heat FROM table_name_62 WHERE time = "57.97"###context:CREATE TABLE table_name_62 (heat VARCHAR, time VARCHAR) |
###question:How many heats does Julia Wilkinson have?###answer:SELECT COUNT(heat) FROM table_name_88 WHERE name = "julia wilkinson"###context:CREATE TABLE table_name_88 (heat VARCHAR, name VARCHAR) |
###question:Who has more than 4 heat for Germany and 7 lanes?###answer:SELECT name FROM table_name_6 WHERE heat > 4 AND nationality = "germany" AND lane = 7###context:CREATE TABLE table_name_6 (name VARCHAR, lane VARCHAR, heat VARCHAR, nationality VARCHAR) |
###question:Who has less than 3 lanes for France?###answer:SELECT name FROM table_name_88 WHERE nationality = "france" AND lane < 3###context:CREATE TABLE table_name_88 (name VARCHAR, nationality VARCHAR, lane VARCHAR) |
###question:Who is the Cincinnati College player?###answer:SELECT player FROM table_name_71 WHERE college = "cincinnati"###context:CREATE TABLE table_name_71 (player VARCHAR, college VARCHAR) |
###question:What is the set 1 when the time is 13:00, and total is 97–74?###answer:SELECT set_1 FROM table_name_42 WHERE time = "13:00" AND total = "97–74"###context:CREATE TABLE table_name_42 (set_1 VARCHAR, time VARCHAR, total VARCHAR) |
###question:What set 2 has a total of 97–74?###answer:SELECT set_2 FROM table_name_85 WHERE total = "97–74"###context:CREATE TABLE table_name_85 (set_2 VARCHAR, total VARCHAR) |
###question:What time has a Set 1 of 18–25?###answer:SELECT time FROM table_name_30 WHERE set_1 = "18–25"###context:CREATE TABLE table_name_30 (time VARCHAR, set_1 VARCHAR) |
###question:What time has a Set 3 of 25–16?###answer:SELECT time FROM table_name_14 WHERE set_3 = "25–16"###context:CREATE TABLE table_name_14 (time VARCHAR, set_3 VARCHAR) |
###question:What was the value in 2010 for the airport coded OTP/LROP?###answer:SELECT MAX(2010) FROM table_name_62 WHERE code__iata_icao_ = "otp/lrop"###context:CREATE TABLE table_name_62 (code__iata_icao_ VARCHAR) |
###question:What is the value in 2010 for an airport ranked higher than 3 located in Cluj-Napoca?###answer:SELECT COUNT(2010) FROM table_name_84 WHERE city = "cluj-napoca" AND rank > 3###context:CREATE TABLE table_name_84 (city VARCHAR, rank VARCHAR) |
###question:What was the venue when David Jacobs was the host?###answer:SELECT venue FROM table_name_30 WHERE semi_final_heat_host = "david jacobs"###context:CREATE TABLE table_name_30 (venue VARCHAR, semi_final_heat_host VARCHAR) |
###question:What was the host for the semi final heat, when Terry Wogan was the National Final main host, and Gaby Roslin was the National Final co-host?###answer:SELECT semi_final_heat_host FROM table_name_24 WHERE national_final_main_host = "terry wogan" AND national_final_co_host = "gaby roslin"###context:CREATE TAB... |
###question:What is the name of the national final main host when the semi final/heat host shows internal selection in 2011?###answer:SELECT national_final_main_host FROM table_name_83 WHERE semi_final_heat_host = "internal selection" AND year_s_ = "2011"###context:CREATE TABLE table_name_83 (national_final_main_host V... |
###question:What is the name of the national final co host when David Jacobs was the National final main host, and the selection show was a song for europe in 1966?###answer:SELECT national_final_co_host FROM table_name_85 WHERE national_final_main_host = "david jacobs" AND selection_show = "a song for europe" AND year... |
###question:What is the selection show in 1969 when the Semi final/heat host shows there was no semi final/heat.###answer:SELECT selection_show FROM table_name_86 WHERE semi_final_heat_host = "no semi final/heat" AND year_s_ = "1969"###context:CREATE TABLE table_name_86 (selection_show VARCHAR, semi_final_heat_host VAR... |
###question:What is the name of the national final main host at BBC Television Centre, and the selection show was Eurovision: Your Country Needs You?###answer:SELECT national_final_main_host FROM table_name_75 WHERE venue = "bbc television centre" AND selection_show = "eurovision: your country needs you"###context:CREA... |
###question:Can you tell me the Total that has the A Score larger than 6.4, and the B Score smaller than 9.025?###answer:SELECT total FROM table_name_31 WHERE a_score > 6.4 AND b_score < 9.025###context:CREATE TABLE table_name_31 (total VARCHAR, a_score VARCHAR, b_score VARCHAR) |
###question:Can you tell me the total number of Total that has the B Score of 9.15?###answer:SELECT COUNT(total) FROM table_name_16 WHERE b_score = 9.15###context:CREATE TABLE table_name_16 (total VARCHAR, b_score VARCHAR) |
###question:Can you tell me the average B Score that has the Position of 2nd, and the Total smaller than 15.525?###answer:SELECT AVG(b_score) FROM table_name_47 WHERE position = "2nd" AND total < 15.525###context:CREATE TABLE table_name_47 (b_score INTEGER, position VARCHAR, total VARCHAR) |
###question:Which Year(s) of manufacture has a Type of 1b n2, and a Quantity of 10?###answer:SELECT year_s__of_manufacture FROM table_name_26 WHERE type = "1b n2" AND quantity = 10###context:CREATE TABLE table_name_26 (year_s__of_manufacture VARCHAR, type VARCHAR, quantity VARCHAR) |
###question:Which Railway number(s) has a Year(s) of manufacture of 1899–1907?###answer:SELECT railway_number_s_ FROM table_name_93 WHERE year_s__of_manufacture = "1899–1907"###context:CREATE TABLE table_name_93 (railway_number_s_ VARCHAR, year_s__of_manufacture VARCHAR) |
###question:What is the league listed that has goals of 10?###answer:SELECT league FROM table_name_53 WHERE goals = "10"###context:CREATE TABLE table_name_53 (league VARCHAR, goals VARCHAR) |
###question:What is the team name that as games of 7?###answer:SELECT team FROM table_name_32 WHERE games = "7"###context:CREATE TABLE table_name_32 (team VARCHAR, games VARCHAR) |
###question:What season has a Games listed of 10?###answer:SELECT season FROM table_name_39 WHERE games = "10"###context:CREATE TABLE table_name_39 (season VARCHAR, games VARCHAR) |
###question:What is the league name that has a Games listing of 10?###answer:SELECT league FROM table_name_47 WHERE games = "10"###context:CREATE TABLE table_name_47 (league VARCHAR, games VARCHAR) |
###question:What is the Season with goals of 6 and BCLA as the league?###answer:SELECT season FROM table_name_63 WHERE league = "bcla" AND goals = "6"###context:CREATE TABLE table_name_63 (season VARCHAR, league VARCHAR, goals VARCHAR) |
###question:What is the name of the team with a Games listing of 7?###answer:SELECT team FROM table_name_27 WHERE games = "7"###context:CREATE TABLE table_name_27 (team VARCHAR, games VARCHAR) |
###question:What season had a 14th position?###answer:SELECT season FROM table_name_47 WHERE position = "14th"###context:CREATE TABLE table_name_47 (season VARCHAR, position VARCHAR) |
###question:What is the sum of poles of the firestone indy lights series before the 2009 season?###answer:SELECT SUM(poles) FROM table_name_73 WHERE series = "firestone indy lights series" AND season < 2009###context:CREATE TABLE table_name_73 (poles INTEGER, series VARCHAR, season VARCHAR) |
###question:What is the highest f/laps with less than 0 wins?###answer:SELECT MAX(f_laps) FROM table_name_53 WHERE wins < 0###context:CREATE TABLE table_name_53 (f_laps INTEGER, wins INTEGER) |
###question:What is the average wins with a 20th position and more than 0 f/laps?###answer:SELECT AVG(wins) FROM table_name_31 WHERE position = "20th" AND f_laps > 0###context:CREATE TABLE table_name_31 (wins INTEGER, position VARCHAR, f_laps VARCHAR) |
###question:What is the lowest poles of team comtec racing, which has a nc position?###answer:SELECT MIN(poles) FROM table_name_84 WHERE position = "nc" AND team = "comtec racing"###context:CREATE TABLE table_name_84 (poles INTEGER, position VARCHAR, team VARCHAR) |
###question:what is the date when saros is more than 124, the type is total, the magnitude is more than 1.0535 and the time (greatest) is 20:55:28?###answer:SELECT date FROM table_name_21 WHERE saros > 124 AND type = "total" AND magnitude > 1.0535 AND time__greatest_ = "20:55:28"###context:CREATE TABLE table_name_21 (d... |
###question:what is the sum of the member when the saros is more than 127, gamma is less than 1.1508 and the magnitude is 0.742?###answer:SELECT SUM(member) FROM table_name_11 WHERE saros > 127 AND gamma < 1.1508 AND magnitude = 0.742###context:CREATE TABLE table_name_11 (member INTEGER, magnitude VARCHAR, saros VARCHA... |
###question:When Travis Lee was picked, what was the highest pick?###answer:SELECT MAX(pick) FROM table_name_94 WHERE player = "travis lee"###context:CREATE TABLE table_name_94 (pick INTEGER, player VARCHAR) |
###question:What is the total number pick for seattle mariners team?###answer:SELECT COUNT(pick) FROM table_name_13 WHERE team = "seattle mariners"###context:CREATE TABLE table_name_13 (pick VARCHAR, team VARCHAR) |
###question:What is the sum of points for teams with 10 goals scored and under 3 wins?###answer:SELECT SUM(points) FROM table_name_52 WHERE scored = 10 AND wins < 3###context:CREATE TABLE table_name_52 (points INTEGER, scored VARCHAR, wins VARCHAR) |
###question:What is the average number of losses for teams with under 16 points and under 3 draws?###answer:SELECT AVG(losses) FROM table_name_8 WHERE points < 16 AND draws < 3###context:CREATE TABLE table_name_8 (losses INTEGER, points VARCHAR, draws VARCHAR) |
###question:What country has a time of 8:03.61?###answer:SELECT country FROM table_name_61 WHERE time = "8:03.61"###context:CREATE TABLE table_name_61 (country VARCHAR, time VARCHAR) |
###question:What are the notes for Zimbabwe?###answer:SELECT notes FROM table_name_74 WHERE country = "zimbabwe"###context:CREATE TABLE table_name_74 (notes VARCHAR, country VARCHAR) |
###question:What is the time for South Korea?###answer:SELECT time FROM table_name_3 WHERE country = "south korea"###context:CREATE TABLE table_name_3 (time VARCHAR, country VARCHAR) |
###question:The time of 8:34.27 was set by what athlete?###answer:SELECT athlete FROM table_name_90 WHERE time = "8:34.27"###context:CREATE TABLE table_name_90 (athlete VARCHAR, time VARCHAR) |
###question:The Athlete Shin Yeong-eun with a rank larger than 3 and notes of FD had what time?###answer:SELECT time FROM table_name_79 WHERE rank > 3 AND notes = "fd" AND athlete = "shin yeong-eun"###context:CREATE TABLE table_name_79 (time VARCHAR, athlete VARCHAR, rank VARCHAR, notes VARCHAR) |
###question:In which event did Fabuleux 5 get a result smaller than 70.88?###answer:SELECT event FROM table_name_69 WHERE horse = "fabuleux 5" AND result < 70.88###context:CREATE TABLE table_name_69 (event VARCHAR, horse VARCHAR, result VARCHAR) |
###question:What is the class of Fabuleux 5 get less than 70.277 in the freestyle test?###answer:SELECT class FROM table_name_11 WHERE event = "freestyle test" AND result < 70.277 AND horse = "fabuleux 5"###context:CREATE TABLE table_name_11 (class VARCHAR, horse VARCHAR, event VARCHAR, result VARCHAR) |
###question:What horse was shown by with Britta Näpel and got less than 71.909?###answer:SELECT horse FROM table_name_61 WHERE athlete = "britta näpel" AND result < 71.909###context:CREATE TABLE table_name_61 (horse VARCHAR, athlete VARCHAR, result VARCHAR) |
###question:What is the result of Waldemar 27´s freestyle test?###answer:SELECT COUNT(result) FROM table_name_99 WHERE horse = "waldemar 27" AND event = "freestyle test"###context:CREATE TABLE table_name_99 (result VARCHAR, horse VARCHAR, event VARCHAR) |
###question:what is the date for the tournament acapulco?###answer:SELECT date FROM table_name_94 WHERE tournament = "acapulco"###context:CREATE TABLE table_name_94 (date VARCHAR, tournament VARCHAR) |
###question:who is the opponent in the final when the tournament is cagnes-sur-mer?###answer:SELECT opponent_in_the_final FROM table_name_64 WHERE tournament = "cagnes-sur-mer"###context:CREATE TABLE table_name_64 (opponent_in_the_final VARCHAR, tournament VARCHAR) |
###question:what is the date for the tournament joué-lès-tours?###answer:SELECT date FROM table_name_52 WHERE tournament = "joué-lès-tours"###context:CREATE TABLE table_name_52 (date VARCHAR, tournament VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.