Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
49,300 | <question>: Which couple participated in the Contemporary style of dance? <context>: CREATE TABLE table_name_27 (couple VARCHAR, style VARCHAR) | SELECT couple FROM table_name_27 WHERE style = "contemporary" |
49,301 | <question>: Which couple participated in the Paso Doble style and were safe? <context>: CREATE TABLE table_name_91 (couple VARCHAR, results VARCHAR, style VARCHAR) | SELECT couple FROM table_name_91 WHERE results = "safe" AND style = "paso doble" |
49,302 | <question>: How many weeks had a game on November 26, 1978, and an attendance higher than 26,248? <context>: CREATE TABLE table_name_88 (week VARCHAR, date VARCHAR, attendance VARCHAR) | SELECT COUNT(week) FROM table_name_88 WHERE date = "november 26, 1978" AND attendance > 26 OFFSET 248 |
49,303 | <question>: What was the lowest Attendance during Week 12? <context>: CREATE TABLE table_name_90 (attendance INTEGER, week VARCHAR) | SELECT MIN(attendance) FROM table_name_90 WHERE week = 12 |
49,304 | <question>: What was the name of the tournament that the final was played against Yi Jingqian? <context>: CREATE TABLE table_name_89 (tournament VARCHAR, opponent_in_the_final VARCHAR) | SELECT tournament FROM table_name_89 WHERE opponent_in_the_final = "yi jingqian" |
49,305 | <question>: Who was the final opponent in the tournament in Taipei, Taiwan on November 14, 1994? <context>: CREATE TABLE table_name_93 (opponent_in_the_final VARCHAR, tournament VARCHAR, date VARCHAR) | SELECT opponent_in_the_final FROM table_name_93 WHERE tournament = "taipei, taiwan" AND date = "november 14, 1994" |
49,306 | <question>: On October 14, 1996 who was the opponent in the final? <context>: CREATE TABLE table_name_47 (opponent_in_the_final VARCHAR, date VARCHAR) | SELECT opponent_in_the_final FROM table_name_47 WHERE date = "october 14, 1996" |
49,307 | <question>: When playing against Yi Jingqian in the final on a hard surface what was the score? <context>: CREATE TABLE table_name_29 (score VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR) | SELECT score FROM table_name_29 WHERE surface = "hard" AND opponent_in_the_final = "yi jingqian" |
49,308 | <question>: Who was played against in the final on November 14, 1994? <context>: CREATE TABLE table_name_17 (opponent_in_the_final VARCHAR, date VARCHAR) | SELECT opponent_in_the_final FROM table_name_17 WHERE date = "november 14, 1994" |
49,309 | <question>: What is the total number of Entered when the eliminated number is 3? <context>: CREATE TABLE table_name_53 (entered VARCHAR, eliminated VARCHAR) | SELECT COUNT(entered) FROM table_name_53 WHERE eliminated = "3" |
49,310 | <question>: What is the Eliminated when there are less than 4 entered and the wrestler was shawn michaels? <context>: CREATE TABLE table_name_28 (eliminated VARCHAR, entered VARCHAR, wrestler VARCHAR) | SELECT eliminated FROM table_name_28 WHERE entered < 4 AND wrestler = "shawn michaels" |
49,311 | <question>: How many frequencies have a line of East London and destination of Crystal Palace? <context>: CREATE TABLE table_name_18 (frequency__per_hour_ VARCHAR, line VARCHAR, destination VARCHAR) | SELECT COUNT(frequency__per_hour_) FROM table_name_18 WHERE line = "east london" AND destination = "crystal palace" |
49,312 | <question>: Which line has an operator of the London Overground and ends at the Crystal Palace? <context>: CREATE TABLE table_name_87 (line VARCHAR, operator VARCHAR, destination VARCHAR) | SELECT line FROM table_name_87 WHERE operator = "london overground" AND destination = "crystal palace" |
49,313 | <question>: Which song was by artist Gino Vannelli? <context>: CREATE TABLE table_name_15 (song VARCHAR, artist VARCHAR) | SELECT song FROM table_name_15 WHERE artist = "gino vannelli" |
49,314 | <question>: What tournament did Bill Rogers play in when he had less than 7 Cuts, 0 Wins, and less than 1 Top-25? <context>: CREATE TABLE table_name_35 (tournament VARCHAR, top_25 VARCHAR, cuts_made VARCHAR, wins VARCHAR) | SELECT tournament FROM table_name_35 WHERE cuts_made < 7 AND wins = 0 AND top_25 < 1 |
49,315 | <question>: What are the number of losses that have Ties of 1 and 3 or more poll wins? <context>: CREATE TABLE table_name_49 (losses VARCHAR, ties VARCHAR, poll_wins VARCHAR) | SELECT COUNT(losses) FROM table_name_49 WHERE ties = 1 AND poll_wins > 3 |
49,316 | <question>: What is the lowest poll losses of the 0 ties, poll wins greater than 1 and wins less than 2? <context>: CREATE TABLE table_name_15 (poll_losses INTEGER, wins VARCHAR, ties VARCHAR, poll_wins VARCHAR) | SELECT MIN(poll_losses) FROM table_name_15 WHERE ties = 0 AND poll_wins > 1 AND wins < 2 |
49,317 | <question>: What is the highest poll of the advocate Andy Kindler with poll losses greater than 2 and ties less than 0? <context>: CREATE TABLE table_name_49 (poll_wins INTEGER, ties VARCHAR, poll_losses VARCHAR, advocate VARCHAR) | SELECT MAX(poll_wins) FROM table_name_49 WHERE poll_losses > 2 AND advocate = "andy kindler" AND ties < 0 |
49,318 | <question>: Which PBA Titles has a TV Finals larger than 6, and an Events larger than 20? <context>: CREATE TABLE table_name_16 (pba_titles INTEGER, tv_finals VARCHAR, events VARCHAR) | SELECT AVG(pba_titles) FROM table_name_16 WHERE tv_finals > 6 AND events > 20 |
49,319 | <question>: Which Events has Earnings of $113,259, and an Average larger than 229.5? <context>: CREATE TABLE table_name_22 (events INTEGER, earnings VARCHAR, average VARCHAR) | SELECT MAX(events) FROM table_name_22 WHERE earnings = "$113,259" AND average > 229.5 |
49,320 | <question>: Which Cashes has a Match Play smaller than 13, and a Events of 7? <context>: CREATE TABLE table_name_97 (cashes VARCHAR, match_play VARCHAR, events VARCHAR) | SELECT COUNT(cashes) FROM table_name_97 WHERE match_play < 13 AND events = 7 |
49,321 | <question>: What is the Finish for the 1950–51? season? <context>: CREATE TABLE table_name_22 (finish VARCHAR, season VARCHAR) | SELECT finish FROM table_name_22 WHERE season = "1950–51" |
49,322 | <question>: What is the Losses at the western conference and the 2004–05 season? <context>: CREATE TABLE table_name_51 (losses VARCHAR, conference VARCHAR, season VARCHAR) | SELECT losses FROM table_name_51 WHERE conference = "western" AND season = "2004–05" |
49,323 | <question>: What Season has wins as the philadelphia warriors (nba)? <context>: CREATE TABLE table_name_28 (season VARCHAR, wins VARCHAR) | SELECT season FROM table_name_28 WHERE wins = "philadelphia warriors (nba)" |
49,324 | <question>: What shows for Wins when there was a Conference of —, western division, in the 1967–68 season? <context>: CREATE TABLE table_name_61 (wins VARCHAR, season VARCHAR, conference VARCHAR, division VARCHAR) | SELECT wins FROM table_name_61 WHERE conference = "—" AND division = "western" AND season = "1967–68" |
49,325 | <question>: What is the Conference for the 1967–68 season? <context>: CREATE TABLE table_name_71 (conference VARCHAR, season VARCHAR) | SELECT conference FROM table_name_71 WHERE season = "1967–68" |
49,326 | <question>: What is the Location when the time was 11:55? <context>: CREATE TABLE table_name_22 (location VARCHAR, time VARCHAR) | SELECT location FROM table_name_22 WHERE time = "11:55" |
49,327 | <question>: What Round has a Time of n/a, in rio de janeiro , brazil? <context>: CREATE TABLE table_name_5 (round VARCHAR, time VARCHAR, location VARCHAR) | SELECT round FROM table_name_5 WHERE time = "n/a" AND location = "rio de janeiro , brazil" |
49,328 | <question>: What is the Round for the jiu-jitsu vs martial arts? <context>: CREATE TABLE table_name_20 (round VARCHAR, event VARCHAR) | SELECT round FROM table_name_20 WHERE event = "jiu-jitsu vs martial arts" |
49,329 | <question>: What is the Location for the jiu-jitsu vs martial arts? <context>: CREATE TABLE table_name_36 (location VARCHAR, event VARCHAR) | SELECT location FROM table_name_36 WHERE event = "jiu-jitsu vs martial arts" |
49,330 | <question>: What is the Event when the opponent was wesslan evaristo de oliveira? <context>: CREATE TABLE table_name_79 (event VARCHAR, opponent VARCHAR) | SELECT event FROM table_name_79 WHERE opponent = "wesslan evaristo de oliveira" |
49,331 | <question>: How many points does Kohta Nozane have with a Motobi TSR 6? <context>: CREATE TABLE table_name_42 (points VARCHAR, bike VARCHAR, riders VARCHAR) | SELECT points FROM table_name_42 WHERE bike = "motobi tsr 6" AND riders = "kohta nozane" |
49,332 | <question>: Which Average has a Band of f? <context>: CREATE TABLE table_name_57 (average VARCHAR, band VARCHAR) | SELECT average FROM table_name_57 WHERE band = "f" |
49,333 | <question>: Which Band has a Ratio of 9/9? <context>: CREATE TABLE table_name_76 (band VARCHAR, ratio VARCHAR) | SELECT band FROM table_name_76 WHERE ratio = "9/9" |
49,334 | <question>: Which Band has a Ratio of 13/9? <context>: CREATE TABLE table_name_99 (band VARCHAR, ratio VARCHAR) | SELECT band FROM table_name_99 WHERE ratio = "13/9" |
49,335 | <question>: What was the latest year that the Atlanta Braves won and the St. Louis Cardinals lost? <context>: CREATE TABLE table_name_70 (year INTEGER, winning_team VARCHAR, losing_team VARCHAR) | SELECT MAX(year) FROM table_name_70 WHERE winning_team = "atlanta braves" AND losing_team = "st. louis cardinals" |
49,336 | <question>: Who won the series when the San Francisco Giants lost? <context>: CREATE TABLE table_name_92 (winning_team VARCHAR, losing_team VARCHAR) | SELECT winning_team FROM table_name_92 WHERE losing_team = "san francisco giants" |
49,337 | <question>: Where was the series that the Kansas City Royals lost? <context>: CREATE TABLE table_name_65 (site VARCHAR, winning_team VARCHAR) | SELECT site FROM table_name_65 WHERE winning_team = "kansas city royals" |
49,338 | <question>: Who was the winning team in 2008? <context>: CREATE TABLE table_name_22 (winning_team VARCHAR, year VARCHAR) | SELECT winning_team FROM table_name_22 WHERE year = 2008 |
49,339 | <question>: What average lost has points greater than 108? <context>: CREATE TABLE table_name_49 (lost INTEGER, points INTEGER) | SELECT AVG(lost) FROM table_name_49 WHERE points > 108 |
49,340 | <question>: How many losses have 222 as the goals against, with points greater than 78? <context>: CREATE TABLE table_name_24 (lost INTEGER, goals_against VARCHAR, points VARCHAR) | SELECT SUM(lost) FROM table_name_24 WHERE goals_against = 222 AND points > 78 |
49,341 | <question>: How many goals against have 64 for games, a loss less than 12, with points greater than 107? <context>: CREATE TABLE table_name_37 (goals_against INTEGER, points VARCHAR, games VARCHAR, lost VARCHAR) | SELECT SUM(goals_against) FROM table_name_37 WHERE games = 64 AND lost < 12 AND points > 107 |
49,342 | <question>: What is the place of the song 'Never Change'? <context>: CREATE TABLE table_name_79 (place INTEGER, song VARCHAR) | SELECT SUM(place) FROM table_name_79 WHERE song = "never change" |
49,343 | <question>: What is the name of Aleko Berdzenishvili's song? <context>: CREATE TABLE table_name_18 (song VARCHAR, artist VARCHAR) | SELECT song FROM table_name_18 WHERE artist = "aleko berdzenishvili" |
49,344 | <question>: What was the lowest pick for the RHP position and player Mike Biko? <context>: CREATE TABLE table_name_67 (pick INTEGER, position VARCHAR, player VARCHAR) | SELECT MIN(pick) FROM table_name_67 WHERE position = "rhp" AND player = "mike biko" |
49,345 | <question>: What is the Martin McGuinness with a David Norris that is 10.3%? <context>: CREATE TABLE table_name_16 (martin_mcguinness VARCHAR, david_norris VARCHAR) | SELECT martin_mcguinness FROM table_name_16 WHERE david_norris = "10.3%" |
49,346 | <question>: What is the Martin mcGuinness with a Sean Gallagher that is 29.6%? <context>: CREATE TABLE table_name_3 (martin_mcguinness VARCHAR, seán_gallagher VARCHAR) | SELECT martin_mcguinness FROM table_name_3 WHERE seán_gallagher = "29.6%" |
49,347 | <question>: What is the David Norris with a Michael D. Higgins that is 46.2%? <context>: CREATE TABLE table_name_92 (david_norris VARCHAR, michael_d_higgins VARCHAR) | SELECT david_norris FROM table_name_92 WHERE michael_d_higgins = "46.2%" |
49,348 | <question>: What is the Mary Davis with a Gay Mitchell that is 4.6%? <context>: CREATE TABLE table_name_96 (mary_davis VARCHAR, gay_mitchell VARCHAR) | SELECT mary_davis FROM table_name_96 WHERE gay_mitchell = "4.6%" |
49,349 | <question>: Can you tell me the total number of Prev that has the Chng of +10, and the Rating larger than 2765? <context>: CREATE TABLE table_name_26 (prev VARCHAR, chng VARCHAR, rating VARCHAR) | SELECT COUNT(prev) FROM table_name_26 WHERE chng = "+10" AND rating > 2765 |
49,350 | <question>: Who is the second member for the Second Party Liberal, and the Third Party Conservative, after the 1841 election? <context>: CREATE TABLE table_name_70 (second_member VARCHAR, election VARCHAR, second_party VARCHAR, third_party VARCHAR) | SELECT second_member FROM table_name_70 WHERE second_party = "liberal" AND third_party = "conservative" AND election > 1841 |
49,351 | <question>: Who is the third member of the Liberal Party, a third party conservative, the second member Humphrey Mildmay? <context>: CREATE TABLE table_name_2 (third_member VARCHAR, second_member VARCHAR, second_party VARCHAR, third_party VARCHAR) | SELECT third_member FROM table_name_2 WHERE second_party = "liberal" AND third_party = "conservative" AND second_member = "humphrey mildmay" |
49,352 | <question>: Who is the third member of the third conservative party, and the second liberal party? <context>: CREATE TABLE table_name_30 (third_member VARCHAR, third_party VARCHAR, second_party VARCHAR) | SELECT third_member FROM table_name_30 WHERE third_party = "conservative" AND second_party = "liberal" |
49,353 | <question>: What was the highest election with third party member Sir Robert Price, BT, and first party member conservative? <context>: CREATE TABLE table_name_97 (election INTEGER, third_member VARCHAR, first_party VARCHAR) | SELECT MAX(election) FROM table_name_97 WHERE third_member = "sir robert price, bt" AND first_party = "conservative" |
49,354 | <question>: What was the record of the team with head coach Steve Spurrier? <context>: CREATE TABLE table_name_8 (record VARCHAR, head_coach VARCHAR) | SELECT record FROM table_name_8 WHERE head_coach = "steve spurrier" |
49,355 | <question>: What was USC's record before the 1967 season? <context>: CREATE TABLE table_name_34 (record VARCHAR, team VARCHAR, season VARCHAR) | SELECT record FROM table_name_34 WHERE team = "usc" AND season < 1967 |
49,356 | <question>: What was the record during the 1973 season? <context>: CREATE TABLE table_name_74 (record VARCHAR, season VARCHAR) | SELECT record FROM table_name_74 WHERE season = 1973 |
49,357 | <question>: What is the average score for 6th place with a total of 165? <context>: CREATE TABLE table_name_49 (average VARCHAR, place VARCHAR, total VARCHAR) | SELECT average FROM table_name_49 WHERE place = "6th" AND total = "165" |
49,358 | <question>: What is the total with a 74 rank by average for 8th place? <context>: CREATE TABLE table_name_70 (total VARCHAR, rank_by_average VARCHAR, place VARCHAR) | SELECT total FROM table_name_70 WHERE rank_by_average = "74" AND place = "8th" |
49,359 | <question>: What was the place in season 8 with a rank by average at 139? <context>: CREATE TABLE table_name_21 (place VARCHAR, season VARCHAR, rank_by_average VARCHAR) | SELECT place FROM table_name_21 WHERE season = "8" AND rank_by_average = "139" |
49,360 | <question>: What is the total for 3rd place on season 9? <context>: CREATE TABLE table_name_41 (total VARCHAR, place VARCHAR, season VARCHAR) | SELECT total FROM table_name_41 WHERE place = "3rd" AND season = "9" |
49,361 | <question>: What rank by average has 1 dance on season 9? <context>: CREATE TABLE table_name_34 (rank_by_average VARCHAR, number_of_dances VARCHAR, season VARCHAR) | SELECT rank_by_average FROM table_name_34 WHERE number_of_dances = "1" AND season = "9" |
49,362 | <question>: What was the final round score for the player from the Milwaukee Bucks? <context>: CREATE TABLE table_name_31 (final_round VARCHAR, team VARCHAR) | SELECT final_round FROM table_name_31 WHERE team = "milwaukee bucks" |
49,363 | <question>: What position does the player with a first round score of 35.7 play? <context>: CREATE TABLE table_name_21 (pos VARCHAR, first_round VARCHAR) | SELECT pos FROM table_name_21 WHERE first_round = "35.7" |
49,364 | <question>: What is the height of the player with a first round score of 44.1? <context>: CREATE TABLE table_name_1 (height VARCHAR, first_round VARCHAR) | SELECT height FROM table_name_1 WHERE first_round = "44.1" |
49,365 | <question>: Which player weighs 187 pounds? <context>: CREATE TABLE table_name_87 (player VARCHAR, weight VARCHAR) | SELECT player FROM table_name_87 WHERE weight = 187 |
49,366 | <question>: Who was the illustrator in 1987? <context>: CREATE TABLE table_name_79 (illustrator VARCHAR, year VARCHAR) | SELECT illustrator FROM table_name_79 WHERE year = 1987 |
49,367 | <question>: How many years was the title drop dead? <context>: CREATE TABLE table_name_94 (year VARCHAR, title VARCHAR) | SELECT COUNT(year) FROM table_name_94 WHERE title = "drop dead" |
49,368 | <question>: Which publisher has a title of drop dead? <context>: CREATE TABLE table_name_93 (publisher VARCHAR, title VARCHAR) | SELECT publisher FROM table_name_93 WHERE title = "drop dead" |
49,369 | <question>: What Greek word means the same thing as the German word ebbe? <context>: CREATE TABLE table_name_99 (greek VARCHAR, german VARCHAR) | SELECT greek FROM table_name_99 WHERE german = "ebbe" |
49,370 | <question>: What word in German translates into the Icelandic word efja? <context>: CREATE TABLE table_name_10 (german VARCHAR, icelandic VARCHAR) | SELECT german FROM table_name_10 WHERE icelandic = "efja" |
49,371 | <question>: What is the Dutch translation of the Latin word navigo? <context>: CREATE TABLE table_name_3 (dutch VARCHAR, latin VARCHAR) | SELECT dutch FROM table_name_3 WHERE latin = "navigo" |
49,372 | <question>: What Dutch word has the same meaning as the Greek word πλέω (pléō)? <context>: CREATE TABLE table_name_1 (dutch VARCHAR, greek VARCHAR) | SELECT dutch FROM table_name_1 WHERE greek = "πλέω (pléō)" |
49,373 | <question>: What English word has the same meaning as the German word "german"? <context>: CREATE TABLE table_name_3 (english VARCHAR) | SELECT english FROM table_name_3 WHERE "german" = "german" |
49,374 | <question>: How many wins are related to events of 7 and more than 2 top-10s? <context>: CREATE TABLE table_name_95 (wins VARCHAR, events VARCHAR, top_10 VARCHAR) | SELECT COUNT(wins) FROM table_name_95 WHERE events = 7 AND top_10 > 2 |
49,375 | <question>: What is the most cuts made for events with 1 top-5, 2 top-10s, and more than 13 total events? <context>: CREATE TABLE table_name_52 (cuts_made INTEGER, events VARCHAR, top_5 VARCHAR, top_10 VARCHAR) | SELECT MAX(cuts_made) FROM table_name_52 WHERE top_5 = 1 AND top_10 = 2 AND events > 13 |
49,376 | <question>: Can you tell me the Name that has the Rank smaller than 71, and the Year larger than 2005, and the Out of 220? <context>: CREATE TABLE table_name_22 (name VARCHAR, out_of VARCHAR, rank VARCHAR, year VARCHAR) | SELECT name FROM table_name_22 WHERE rank < 71 AND year > 2005 AND out_of = "220" |
49,377 | <question>: Can you tell me the lowest Year that has the Rank smaller the 132, and the Name of biodiversity richness? <context>: CREATE TABLE table_name_99 (year INTEGER, rank VARCHAR, name VARCHAR) | SELECT MIN(year) FROM table_name_99 WHERE rank < 132 AND name = "biodiversity richness" |
49,378 | <question>: Can you tell me the Source that has the Rank of 78? <context>: CREATE TABLE table_name_86 (source VARCHAR, rank VARCHAR) | SELECT source FROM table_name_86 WHERE rank = 78 |
49,379 | <question>: Can you tell me the Out of that has the Source of united nations, and the Rank larger than 47, and the Year smaller than 2003? <context>: CREATE TABLE table_name_31 (out_of VARCHAR, year VARCHAR, source VARCHAR, rank VARCHAR) | SELECT out_of FROM table_name_31 WHERE source = "united nations" AND rank > 47 AND year < 2003 |
49,380 | <question>: Which Tournament has a 2004 of 1r? <context>: CREATE TABLE table_name_59 (tournament VARCHAR) | SELECT tournament FROM table_name_59 WHERE 2004 = "1r" |
49,381 | <question>: What is the 2005 that has a grand slam tournaments in 2007? <context>: CREATE TABLE table_name_52 (Id VARCHAR) | SELECT 2005 FROM table_name_52 WHERE 2007 = "grand slam tournaments" |
49,382 | <question>: What is the 2006 that has a 2r in 2004, and a 2r in 2005? <context>: CREATE TABLE table_name_84 (Id VARCHAR) | SELECT 2006 FROM table_name_84 WHERE 2004 = "2r" AND 2005 = "2r" |
49,383 | <question>: What is the 2007 that has a grand slam tournaments in 2006. <context>: CREATE TABLE table_name_32 (Id VARCHAR) | SELECT 2007 FROM table_name_32 WHERE 2006 = "grand slam tournaments" |
49,384 | <question>: What is the 2004 that has a of grand slam tournaments in2006 ? <context>: CREATE TABLE table_name_82 (Id VARCHAR) | SELECT 2004 FROM table_name_82 WHERE 2006 = "grand slam tournaments" |
49,385 | <question>: What is 2006 has a 2007 of 3r? <context>: CREATE TABLE table_name_48 (Id VARCHAR) | SELECT 2006 FROM table_name_48 WHERE 2007 = "3r" |
49,386 | <question>: What was the number of passengers going to MCO with a rank larger than 9? <context>: CREATE TABLE table_name_54 (passengers VARCHAR, airport VARCHAR, rank VARCHAR) | SELECT COUNT(passengers) FROM table_name_54 WHERE airport = "mco" AND rank > 9 |
49,387 | <question>: What city had a rank before 3 and primary carrier JetBlue Airways? <context>: CREATE TABLE table_name_78 (city VARCHAR, rank VARCHAR, carriers VARCHAR) | SELECT city FROM table_name_78 WHERE rank < 3 AND carriers = "jetblue airways" |
49,388 | <question>: What was launched and laid down in February 1819? <context>: CREATE TABLE table_name_14 (launched VARCHAR, laid_down VARCHAR) | SELECT launched FROM table_name_14 WHERE laid_down = "february 1819" |
49,389 | <question>: What is the total number of positions with less than 10 points, more than 7 qualifying, ret value in Race 1, and Jonathan Grant driving? <context>: CREATE TABLE table_name_51 (pos VARCHAR, driver VARCHAR, race_1 VARCHAR, points VARCHAR, qualifying VARCHAR) | SELECT COUNT(pos) FROM table_name_51 WHERE points < 10 AND qualifying > 7 AND race_1 = "ret" AND driver = "jonathan grant" |
49,390 | <question>: What is Date, when Set 2 is 25-13? <context>: CREATE TABLE table_name_29 (date VARCHAR, set_2 VARCHAR) | SELECT date FROM table_name_29 WHERE set_2 = "25-13" |
49,391 | <question>: What is Total, when Set 5 is NA, and when Set 2 is 25-13? <context>: CREATE TABLE table_name_62 (total VARCHAR, set_5 VARCHAR, set_2 VARCHAR) | SELECT total FROM table_name_62 WHERE set_5 = "na" AND set_2 = "25-13" |
49,392 | <question>: What is Score, when Date is Jun 16, and when Set 4 is 25-20? <context>: CREATE TABLE table_name_1 (score VARCHAR, date VARCHAR, set_4 VARCHAR) | SELECT score FROM table_name_1 WHERE date = "jun 16" AND set_4 = "25-20" |
49,393 | <question>: What is Set 2, when Score is 3-0, when Date is May 11, and when Set 1 is 25-20? <context>: CREATE TABLE table_name_73 (set_2 VARCHAR, set_1 VARCHAR, score VARCHAR, date VARCHAR) | SELECT set_2 FROM table_name_73 WHERE score = "3-0" AND date = "may 11" AND set_1 = "25-20" |
49,394 | <question>: What is Set 4, when Set 1 is 25-18, and when Date is Jun 2? <context>: CREATE TABLE table_name_37 (set_4 VARCHAR, set_1 VARCHAR, date VARCHAR) | SELECT set_4 FROM table_name_37 WHERE set_1 = "25-18" AND date = "jun 2" |
49,395 | <question>: What is the Team with a Score that is w 101–97 (2ot)? <context>: CREATE TABLE table_name_17 (team VARCHAR, score VARCHAR) | SELECT team FROM table_name_17 WHERE score = "w 101–97 (2ot)" |
49,396 | <question>: What is the High points with a Score that is l 64–94 (ot)? <context>: CREATE TABLE table_name_73 (high_points VARCHAR, score VARCHAR) | SELECT high_points FROM table_name_73 WHERE score = "l 64–94 (ot)" |
49,397 | <question>: What is the largest played when the drawn is less than 1? <context>: CREATE TABLE table_name_62 (played INTEGER, drawn INTEGER) | SELECT MAX(played) FROM table_name_62 WHERE drawn < 1 |
49,398 | <question>: What points average has a played greater than 20? <context>: CREATE TABLE table_name_31 (points INTEGER, played INTEGER) | SELECT AVG(points) FROM table_name_31 WHERE played > 20 |
49,399 | <question>: What is the smallest drawn with a position bigger than 10 and a played less than 20? <context>: CREATE TABLE table_name_51 (drawn INTEGER, position VARCHAR, played VARCHAR) | SELECT MIN(drawn) FROM table_name_51 WHERE position > 10 AND played < 20 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.