combined_text stringlengths 106 1.05k |
|---|
###question:What is Time, when Round is less than 2, and when Opponent is "Valentijn Overeem"?###answer:SELECT time FROM table_name_22 WHERE round < 2 AND opponent = "valentijn overeem"###context:CREATE TABLE table_name_22 (time VARCHAR, round VARCHAR, opponent VARCHAR) |
###question:What is Location, when Round is "1", and when Opponent is "Joe Slick"?###answer:SELECT location FROM table_name_76 WHERE round = 1 AND opponent = "joe slick"###context:CREATE TABLE table_name_76 (location VARCHAR, round VARCHAR, opponent VARCHAR) |
###question:What is Event, when Opponent is "Joe Pardo"?###answer:SELECT event FROM table_name_41 WHERE opponent = "joe pardo"###context:CREATE TABLE table_name_41 (event VARCHAR, opponent VARCHAR) |
###question:What is Event, when Round is "1", when Location is "New Town, North Dakota , United States" and when Time is "4:12"?###answer:SELECT event FROM table_name_9 WHERE round = 1 AND location = "new town, north dakota , united states" AND time = "4:12"###context:CREATE TABLE table_name_9 (event VARCHAR, time VARC... |
###question:On what Date was the Opponent the Tennessee Titans?###answer:SELECT date FROM table_name_47 WHERE opponent = "tennessee titans"###context:CREATE TABLE table_name_47 (date VARCHAR, opponent VARCHAR) |
###question:What is the Result of the game with an Attendance of 64,104?###answer:SELECT result FROM table_name_25 WHERE attendance = "64,104"###context:CREATE TABLE table_name_25 (result VARCHAR, attendance VARCHAR) |
###question:What is the Week number with a Result of W 30-28?###answer:SELECT AVG(week) FROM table_name_85 WHERE result = "w 30-28"###context:CREATE TABLE table_name_85 (week INTEGER, result VARCHAR) |
###question:What is the date of the game against Philadelphia Eagles?###answer:SELECT date FROM table_name_61 WHERE opponent = "philadelphia eagles"###context:CREATE TABLE table_name_61 (date VARCHAR, opponent VARCHAR) |
###question:What is the Attendance of the game September 21, 2003?###answer:SELECT attendance FROM table_name_36 WHERE date = "september 21, 2003"###context:CREATE TABLE table_name_36 (attendance VARCHAR, date VARCHAR) |
###question:What position has a pick less than 20?###answer:SELECT position FROM table_name_2 WHERE pick < 20###context:CREATE TABLE table_name_2 (position VARCHAR, pick INTEGER) |
###question:What is the number that is the lowest overall for the College of Baylor?###answer:SELECT MIN(overall) FROM table_name_44 WHERE college = "baylor"###context:CREATE TABLE table_name_44 (overall INTEGER, college VARCHAR) |
###question:What is the number that is the lowest overall for Round 6?###answer:SELECT MIN(overall) FROM table_name_85 WHERE round = 6###context:CREATE TABLE table_name_85 (overall INTEGER, round VARCHAR) |
###question:Where was the result a win against Mike Large?###answer:SELECT location FROM table_name_44 WHERE res = "win" AND opponent = "mike large"###context:CREATE TABLE table_name_44 (location VARCHAR, res VARCHAR, opponent VARCHAR) |
###question:In what round did opponent Joe Lauzon play?###answer:SELECT round FROM table_name_39 WHERE opponent = "joe lauzon"###context:CREATE TABLE table_name_39 (round VARCHAR, opponent VARCHAR) |
###question:Who was the opponent in a week over 8 on December 4, 1960?###answer:SELECT opponent FROM table_name_54 WHERE week > 8 AND date = "december 4, 1960"###context:CREATE TABLE table_name_54 (opponent VARCHAR, week VARCHAR, date VARCHAR) |
###question:Who was the opponent in a week less than 8 on October 9, 1960?###answer:SELECT opponent FROM table_name_24 WHERE week < 8 AND date = "october 9, 1960"###context:CREATE TABLE table_name_24 (opponent VARCHAR, week VARCHAR, date VARCHAR) |
###question:What was the result when 58,516 were in attendance?###answer:SELECT result FROM table_name_70 WHERE attendance = "58,516"###context:CREATE TABLE table_name_70 (result VARCHAR, attendance VARCHAR) |
###question:Who was the opponent in a week below 3 on September 23, 1960?###answer:SELECT opponent FROM table_name_28 WHERE week < 3 AND date = "september 23, 1960"###context:CREATE TABLE table_name_28 (opponent VARCHAR, week VARCHAR, date VARCHAR) |
###question:What is the biggest number of females where the males are at 28.2 with a rank greater than 5?###answer:SELECT MAX(females) FROM table_name_46 WHERE males = 28.2 AND rank > 5###context:CREATE TABLE table_name_46 (females INTEGER, males VARCHAR, rank VARCHAR) |
###question:Who was the player in 1976?###answer:SELECT player FROM table_name_9 WHERE year = 1976###context:CREATE TABLE table_name_9 (player VARCHAR, year VARCHAR) |
###question:When was Elaine Powell (g) of the United states picked?###answer:SELECT pick FROM table_name_17 WHERE nationality = "united states" AND player = "elaine powell (g)"###context:CREATE TABLE table_name_17 (pick VARCHAR, nationality VARCHAR, player VARCHAR) |
###question:When was there a result of w 65-20 after week 6?###answer:SELECT date FROM table_name_43 WHERE week > 6 AND result = "w 65-20"###context:CREATE TABLE table_name_43 (date VARCHAR, week VARCHAR, result VARCHAR) |
###question:What is Celta's Agg.?###answer:SELECT agg FROM table_name_81 WHERE team_1 = "celta"###context:CREATE TABLE table_name_81 (agg VARCHAR, team_1 VARCHAR) |
###question:What is the 2nd leg for Barcelona Team 2?###answer:SELECT 2 AS nd_leg FROM table_name_49 WHERE team_2 = "barcelona"###context:CREATE TABLE table_name_49 (team_2 VARCHAR) |
###question:What is team 2 if Team 1 is Numancia?###answer:SELECT team_2 FROM table_name_61 WHERE team_1 = "numancia"###context:CREATE TABLE table_name_61 (team_2 VARCHAR, team_1 VARCHAR) |
###question:What is the sum of the Performance/Return on Capital (Score) when the Score (Iran) is less than 3, and the Score (Global) is 266?###answer:SELECT COUNT(performance_return_on_capital__score_) FROM table_name_11 WHERE score__iran_ < 3 AND score__global_ = 266###context:CREATE TABLE table_name_11 (performance_... |
###question:What Total Assets (% Change) that has Performance/Return on Capital (%) greater than 25.63, and a Performance/Return on Capital (Score) greater than 7?###answer:SELECT total_assets___percentage_change_ FROM table_name_86 WHERE performance_return_on_capital___percentage_ > 25.63 AND performance_return_on_cap... |
###question:What is the NFL club of the cornerback player with a pick greater than 63?###answer:SELECT nfl_club FROM table_name_34 WHERE pick > 63 AND position = "cornerback"###context:CREATE TABLE table_name_34 (nfl_club VARCHAR, pick VARCHAR, position VARCHAR) |
###question:What is the total round of the tight end position player?###answer:SELECT COUNT(round) FROM table_name_66 WHERE position = "tight end"###context:CREATE TABLE table_name_66 (round VARCHAR, position VARCHAR) |
###question:What is the pick of the NFL club buffalo bills?###answer:SELECT pick FROM table_name_95 WHERE nfl_club = "buffalo bills"###context:CREATE TABLE table_name_95 (pick VARCHAR, nfl_club VARCHAR) |
###question:On What Date is the Competition Semifinal that has a result of 2-1 aet?###answer:SELECT date FROM table_name_63 WHERE competition = "semifinal" AND result = "2-1 aet"###context:CREATE TABLE table_name_63 (date VARCHAR, competition VARCHAR, result VARCHAR) |
###question:Which Location has a Competition of Group Stage, a Lineup of Start and a Date of 2000-09-17?###answer:SELECT location FROM table_name_67 WHERE competition = "group stage" AND lineup = "start" AND date = "2000-09-17"###context:CREATE TABLE table_name_67 (location VARCHAR, date VARCHAR, competition VARCHAR, l... |
###question:Which Match has a Competition of Group Stage on 2000-09-17?###answer:SELECT match FROM table_name_66 WHERE competition = "group stage" AND date = "2000-09-17"###context:CREATE TABLE table_name_66 (match VARCHAR, competition VARCHAR, date VARCHAR) |
###question:Which Match played in a Location of San Francisco has a Competition of Semifinal?###answer:SELECT match FROM table_name_19 WHERE competition = "semifinal" AND location = "san francisco"###context:CREATE TABLE table_name_19 (match VARCHAR, competition VARCHAR, location VARCHAR) |
###question:What Location has a Date of 1995-06-15?###answer:SELECT location FROM table_name_3 WHERE date = "1995-06-15"###context:CREATE TABLE table_name_3 (location VARCHAR, date VARCHAR) |
###question:What is the most points 1 when the goals against are fewer than 97, lost less than 22, 9 draws and goal difference of +28?###answer:SELECT MAX(points_1) FROM table_name_57 WHERE goals_against < 97 AND lost < 22 AND drawn = 9 AND goal_difference = "+28"###context:CREATE TABLE table_name_57 (points_1 INTEGER,... |
###question:What is the most points 1 when the goal difference is +28 and lost is larger than 12?###answer:SELECT MAX(points_1) FROM table_name_39 WHERE goal_difference = "+28" AND lost > 12###context:CREATE TABLE table_name_39 (points_1 INTEGER, goal_difference VARCHAR, lost VARCHAR) |
###question:What is the maximum lost with points 1 more than 58 and 66 goals against?###answer:SELECT MAX(lost) FROM table_name_9 WHERE points_1 > 58 AND goals_against = 66###context:CREATE TABLE table_name_9 (lost INTEGER, points_1 VARCHAR, goals_against VARCHAR) |
###question:What is the most goals for when there are fewer than 4 draws?###answer:SELECT MAX(goals_for) FROM table_name_1 WHERE drawn < 4###context:CREATE TABLE table_name_1 (goals_for INTEGER, drawn INTEGER) |
###question:What was the result on October 20, 2002?###answer:SELECT result FROM table_name_87 WHERE date = "october 20, 2002"###context:CREATE TABLE table_name_87 (result VARCHAR, date VARCHAR) |
###question:What is the nationality of the person with number 27?###answer:SELECT nationality FROM table_name_96 WHERE jersey_number_s_ = "27"###context:CREATE TABLE table_name_96 (nationality VARCHAR, jersey_number_s_ VARCHAR) |
###question:What is the nationality of the SG position?###answer:SELECT nationality FROM table_name_48 WHERE position = "sg"###context:CREATE TABLE table_name_48 (nationality VARCHAR, position VARCHAR) |
###question:What is the rank of the film directed by danny devito?###answer:SELECT rank FROM table_name_32 WHERE director = "danny devito"###context:CREATE TABLE table_name_32 (rank VARCHAR, director VARCHAR) |
###question:What is the sum of the ranks for the film, eddie murphy raw?###answer:SELECT SUM(rank) FROM table_name_19 WHERE title = "eddie murphy raw"###context:CREATE TABLE table_name_19 (rank INTEGER, title VARCHAR) |
###question:Who directed Predator that was filmed with Fox Studio?###answer:SELECT director FROM table_name_29 WHERE studio = "fox" AND title = "predator"###context:CREATE TABLE table_name_29 (director VARCHAR, studio VARCHAR, title VARCHAR) |
###question:What is the total number of ranks that had vestron as the studio?###answer:SELECT COUNT(rank) FROM table_name_48 WHERE studio = "vestron"###context:CREATE TABLE table_name_48 (rank VARCHAR, studio VARCHAR) |
###question:Which class had Stanley Dickens as a driver?###answer:SELECT class FROM table_name_11 WHERE driver = "stanley dickens"###context:CREATE TABLE table_name_11 (class VARCHAR, driver VARCHAR) |
###question:What was the highest amount of laps for class c1 and driver Derek Bell?###answer:SELECT MAX(laps) FROM table_name_73 WHERE class = "c1" AND driver = "derek bell"###context:CREATE TABLE table_name_73 (laps INTEGER, class VARCHAR, driver VARCHAR) |
###question:Where was the player born when the appearances were greater than 40 and made 17 goals?###answer:SELECT nationality FROM table_name_39 WHERE apps > 40 AND goals = 17###context:CREATE TABLE table_name_39 (nationality VARCHAR, apps VARCHAR, goals VARCHAR) |
###question:When did the mf from England play for Gillingham that made 0 goals and less than 37 appearances?###answer:SELECT gillingham_career FROM table_name_79 WHERE goals = 0 AND apps < 37 AND nationality = "england" AND position = "mf"###context:CREATE TABLE table_name_79 (gillingham_career VARCHAR, position VARCHA... |
###question:Who is the player with a t8 place?###answer:SELECT player FROM table_name_67 WHERE place = "t8"###context:CREATE TABLE table_name_67 (player VARCHAR, place VARCHAR) |
###question:What is the country of player dale douglass, who has a t8 place?###answer:SELECT country FROM table_name_75 WHERE place = "t8" AND player = "dale douglass"###context:CREATE TABLE table_name_75 (country VARCHAR, place VARCHAR, player VARCHAR) |
###question:What is the average score of player lee trevino, who has a t8 place?###answer:SELECT AVG(score) FROM table_name_39 WHERE place = "t8" AND player = "lee trevino"###context:CREATE TABLE table_name_39 (score INTEGER, place VARCHAR, player VARCHAR) |
###question:What is the to par of player johnny miller, who has a t8 place?###answer:SELECT to_par FROM table_name_18 WHERE place = "t8" AND player = "johnny miller"###context:CREATE TABLE table_name_18 (to_par VARCHAR, place VARCHAR, player VARCHAR) |
###question:What is the country of player chi-chi rodríguez, who has an e to par?###answer:SELECT country FROM table_name_2 WHERE to_par = "e" AND player = "chi-chi rodríguez"###context:CREATE TABLE table_name_2 (country VARCHAR, to_par VARCHAR, player VARCHAR) |
###question:WHAT IS THE LEAGUE WITH PLAYER JOE COLBORNE?###answer:SELECT college_junior_club_team__league_ FROM table_name_78 WHERE player = "joe colborne"###context:CREATE TABLE table_name_78 (college_junior_club_team__league_ VARCHAR, player VARCHAR) |
###question:WHAT IS THE ROUND NUMBER OF NICHOLAS TREMBLAY?###answer:SELECT COUNT(round) FROM table_name_59 WHERE player = "nicholas tremblay"###context:CREATE TABLE table_name_59 (round VARCHAR, player VARCHAR) |
###question:WHAT IS THE POSITION OF FRANCE?###answer:SELECT position FROM table_name_73 WHERE nationality = "france"###context:CREATE TABLE table_name_73 (position VARCHAR, nationality VARCHAR) |
###question:WHAT IS THE ROUND FOR JAMIE ARNIEL?###answer:SELECT COUNT(round) FROM table_name_23 WHERE player = "jamie arniel"###context:CREATE TABLE table_name_23 (round VARCHAR, player VARCHAR) |
###question:What was the score on May 12, 2008?###answer:SELECT score FROM table_name_8 WHERE date = "may 12, 2008"###context:CREATE TABLE table_name_8 (score VARCHAR, date VARCHAR) |
###question:Who was the opponent on September 26, 2009?###answer:SELECT opponent FROM table_name_28 WHERE date = "september 26, 2009"###context:CREATE TABLE table_name_28 (opponent VARCHAR, date VARCHAR) |
###question:What was the average lead maragin for the dates administered of october 6, 2008?###answer:SELECT AVG(lead_maragin) FROM table_name_16 WHERE dates_administered = "october 6, 2008"###context:CREATE TABLE table_name_16 (lead_maragin INTEGER, dates_administered VARCHAR) |
###question:What was the poll source for october 6, 2008?###answer:SELECT poll_source FROM table_name_91 WHERE dates_administered = "october 6, 2008"###context:CREATE TABLE table_name_91 (poll_source VARCHAR, dates_administered VARCHAR) |
###question:Who has a place of T7 and is from the United States?###answer:SELECT player FROM table_name_90 WHERE place = "t7" AND country = "united states"###context:CREATE TABLE table_name_90 (player VARCHAR, place VARCHAR, country VARCHAR) |
###question:What is the Rank of the Film with a Worldwide Gross of $914,691,118?###answer:SELECT rank FROM table_name_42 WHERE worldwide_gross = "$914,691,118"###context:CREATE TABLE table_name_42 (rank VARCHAR, worldwide_gross VARCHAR) |
###question:What is the Director of the Film The Fugitive?###answer:SELECT director FROM table_name_90 WHERE title = "the fugitive"###context:CREATE TABLE table_name_90 (director VARCHAR, title VARCHAR) |
###question:What was the highest points on October 12, when the attendance where is over 10,701?###answer:SELECT MAX(points) FROM table_name_20 WHERE date = "october 12" AND attendance > 10 OFFSET 701###context:CREATE TABLE table_name_20 (points INTEGER, date VARCHAR, attendance VARCHAR) |
###question:When was Montreal a visitor?###answer:SELECT date FROM table_name_34 WHERE visitor = "montreal"###context:CREATE TABLE table_name_34 (date VARCHAR, visitor VARCHAR) |
###question:What Title's Transliteration is Fal'shivaya Nota?###answer:SELECT title FROM table_name_38 WHERE transliteration = "fal'shivaya nota"###context:CREATE TABLE table_name_38 (title VARCHAR, transliteration VARCHAR) |
###question:What Title has a Transliteration of u lyudey-to v domu?###answer:SELECT title FROM table_name_40 WHERE transliteration = "u lyudey-to v domu"###context:CREATE TABLE table_name_40 (title VARCHAR, transliteration VARCHAR) |
###question:What is average frequency MHZ when is in portales, new mexico?###answer:SELECT AVG(frequency_mhz) FROM table_name_13 WHERE city_of_license = "portales, new mexico"###context:CREATE TABLE table_name_13 (frequency_mhz INTEGER, city_of_license VARCHAR) |
###question:What is FCC info when ERP W is larger than 92 and call sign has k264ba?###answer:SELECT fcc_info FROM table_name_51 WHERE erp_w > 92 AND call_sign = "k264ba"###context:CREATE TABLE table_name_51 (fcc_info VARCHAR, erp_w VARCHAR, call_sign VARCHAR) |
###question:Which call sign has ERP Wlarger than 250, and Frequency MHZ smaller than 99.3?###answer:SELECT call_sign FROM table_name_3 WHERE erp_w > 250 AND frequency_mhz < 99.3###context:CREATE TABLE table_name_3 (call_sign VARCHAR, erp_w VARCHAR, frequency_mhz VARCHAR) |
###question:Where was the game played when the score was 1-4?###answer:SELECT venue FROM table_name_72 WHERE score = "1-4"###context:CREATE TABLE table_name_72 (venue VARCHAR, score VARCHAR) |
###question:Who was the game played against on 2004-02-28 at Skytteholms IP?###answer:SELECT opponents FROM table_name_84 WHERE venue = "skytteholms ip" AND date = "2004-02-28"###context:CREATE TABLE table_name_84 (opponents VARCHAR, venue VARCHAR, date VARCHAR) |
###question:When the game was played at Domnarvsvallen who were the opponents?###answer:SELECT opponents FROM table_name_12 WHERE venue = "domnarvsvallen"###context:CREATE TABLE table_name_12 (opponents VARCHAR, venue VARCHAR) |
###question:Who were the opposing team when playing in the Portugal venue?###answer:SELECT opponents FROM table_name_49 WHERE venue = "portugal"###context:CREATE TABLE table_name_49 (opponents VARCHAR, venue VARCHAR) |
###question:Where was the game played on 2004-06-23?###answer:SELECT venue FROM table_name_43 WHERE date = "2004-06-23"###context:CREATE TABLE table_name_43 (venue VARCHAR, date VARCHAR) |
###question:What is the to par for Tom Weiskopf?###answer:SELECT AVG(to_par) FROM table_name_6 WHERE player = "tom weiskopf"###context:CREATE TABLE table_name_6 (to_par INTEGER, player VARCHAR) |
###question:What title did George Fury win when on the Oran Park Raceway?###answer:SELECT race_title FROM table_name_6 WHERE winner = "george fury" AND circuit = "oran park raceway"###context:CREATE TABLE table_name_6 (race_title VARCHAR, winner VARCHAR, circuit VARCHAR) |
###question:Who was the winner on the Amaroo Park circuit?###answer:SELECT winner FROM table_name_38 WHERE circuit = "amaroo park"###context:CREATE TABLE table_name_38 (winner VARCHAR, circuit VARCHAR) |
###question:What are the fewest points for goals fewer than 13?###answer:SELECT MIN(points) FROM table_name_74 WHERE goals_for < 13###context:CREATE TABLE table_name_74 (points INTEGER, goals_for INTEGER) |
###question:How many goals when more than 10 games played?###answer:SELECT AVG(goals_for) FROM table_name_79 WHERE played > 10###context:CREATE TABLE table_name_79 (goals_for INTEGER, played INTEGER) |
###question:How many losses when goals against are more than 17, goal difference is more than 2 and points are more than 5?###answer:SELECT AVG(losses) FROM table_name_21 WHERE goals_against > 17 AND goal_difference < 2 AND points > 5###context:CREATE TABLE table_name_21 (losses INTEGER, points VARCHAR, goals_against V... |
###question:How many draws when there are fewer than 6 wins and the goal difference is less than -15?###answer:SELECT COUNT(draws) FROM table_name_28 WHERE wins < 6 AND goal_difference < -15###context:CREATE TABLE table_name_28 (draws VARCHAR, wins VARCHAR, goal_difference VARCHAR) |
###question:How much Draw has a Rank of 3rd, and a Performer of noelle, and Points larger than 79?###answer:SELECT COUNT(draw) FROM table_name_92 WHERE rank = "3rd" AND performer = "noelle" AND points > 79###context:CREATE TABLE table_name_92 (draw VARCHAR, points VARCHAR, rank VARCHAR, performer VARCHAR) |
###question:Which Draw has a Performer of jenny newman, and Points smaller than 77?###answer:SELECT AVG(draw) FROM table_name_67 WHERE performer = "jenny newman" AND points < 77###context:CREATE TABLE table_name_67 (draw INTEGER, performer VARCHAR, points VARCHAR) |
###question:Which Points have a Draw of 2?###answer:SELECT AVG(points) FROM table_name_46 WHERE draw = 2###context:CREATE TABLE table_name_46 (points INTEGER, draw VARCHAR) |
###question:Which stage number did son bou arrive at?###answer:SELECT COUNT(stage) FROM table_name_22 WHERE arrival = "son bou"###context:CREATE TABLE table_name_22 (stage VARCHAR, arrival VARCHAR) |
###question:How long does the one that stars with son bou of middle difficulty, and on a stage number larger than 13 last?###answer:SELECT duration FROM table_name_34 WHERE stage > 13 AND difficulty = "middle" AND start = "son bou"###context:CREATE TABLE table_name_34 (duration VARCHAR, start VARCHAR, stage VARCHAR, di... |
###question:What is the lowest stage number that starts with els alocs and has a middle difficulty?###answer:SELECT MIN(stage) FROM table_name_60 WHERE difficulty = "middle" AND start = "els alocs"###context:CREATE TABLE table_name_60 (stage INTEGER, difficulty VARCHAR, start VARCHAR) |
###question:What is the price of the internet provider that has an upstream rate of 256 kbit and a downstream rate of 512 kbit?###answer:SELECT price FROM table_name_24 WHERE upstream = "256 kbit" AND downstream = "512 kbit"###context:CREATE TABLE table_name_24 (price VARCHAR, upstream VARCHAR, downstream VARCHAR) |
###question:For the provider that costs 266 sar, what is the Bandwidth Included?###answer:SELECT bandwidth_included FROM table_name_66 WHERE price = "266 sar"###context:CREATE TABLE table_name_66 (bandwidth_included VARCHAR, price VARCHAR) |
###question:What is the name of the plan that has a downstream rate of 4,096 kbit?###answer:SELECT internet_plan FROM table_name_21 WHERE downstream = "4,096 kbit"###context:CREATE TABLE table_name_21 (internet_plan VARCHAR, downstream VARCHAR) |
###question:Which record has a score of l 121–127?###answer:SELECT record FROM table_name_93 WHERE score = "l 121–127"###context:CREATE TABLE table_name_93 (record VARCHAR, score VARCHAR) |
###question:What high points did San Francisco have in a game later than 69?###answer:SELECT high_points FROM table_name_39 WHERE game > 69 AND team = "san francisco"###context:CREATE TABLE table_name_39 (high_points VARCHAR, game VARCHAR, team VARCHAR) |
###question:What is the record for March 10?###answer:SELECT record FROM table_name_17 WHERE date = "march 10"###context:CREATE TABLE table_name_17 (record VARCHAR, date VARCHAR) |
###question:What high points did a game earlier than 80 have with a score of l 123–142?###answer:SELECT high_points FROM table_name_47 WHERE game < 80 AND score = "l 123–142"###context:CREATE TABLE table_name_47 (high_points VARCHAR, game VARCHAR, score VARCHAR) |
###question:What is the lowest Year, when Co-Driver is Warren Luff, when Position is 7th, and when Laps is less than 161?###answer:SELECT MIN(year) FROM table_name_47 WHERE co_driver = "warren luff" AND position = "7th" AND laps < 161###context:CREATE TABLE table_name_47 (year INTEGER, laps VARCHAR, co_driver VARCHAR, ... |
###question:What is Position, when Laps is 156?###answer:SELECT position FROM table_name_90 WHERE laps = 156###context:CREATE TABLE table_name_90 (position VARCHAR, laps VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.