combined_text stringlengths 106 1.05k |
|---|
###question:Which Nation has a Gold larger than 0, and a Bronze smaller than 2, and a Total larger than 3, and a Silver larger than 1?###answer:SELECT nation FROM table_name_96 WHERE gold > 0 AND bronze < 2 AND total > 3 AND silver > 1###context:CREATE TABLE table_name_96 (nation VARCHAR, silver VARCHAR, total VARCHAR,... |
###question:What is the round number when the record is 15–7–1?###answer:SELECT COUNT(round) FROM table_name_68 WHERE record = "15–7–1"###context:CREATE TABLE table_name_68 (round VARCHAR, record VARCHAR) |
###question:What is the method when the time is 5:00, and the record is 14–6–1?###answer:SELECT method FROM table_name_3 WHERE time = "5:00" AND record = "14–6–1"###context:CREATE TABLE table_name_3 (method VARCHAR, time VARCHAR, record VARCHAR) |
###question:What is the home team of the game with a price decision and the new jersey devils as the visitor team?###answer:SELECT home FROM table_name_51 WHERE decision = "price" AND visitor = "new jersey devils"###context:CREATE TABLE table_name_51 (home VARCHAR, decision VARCHAR, visitor VARCHAR) |
###question:What transfer fee did Birmingham City get on 30 June 2010?###answer:SELECT transfer_fee FROM table_name_4 WHERE ends = "30 june 2010" AND moving_from = "birmingham city"###context:CREATE TABLE table_name_4 (transfer_fee VARCHAR, ends VARCHAR, moving_from VARCHAR) |
###question:What type of move was Elding from ENG?###answer:SELECT type FROM table_name_28 WHERE country = "eng" AND name = "elding"###context:CREATE TABLE table_name_28 (type VARCHAR, country VARCHAR, name VARCHAR) |
###question:When does Donaldson's move end?###answer:SELECT ends FROM table_name_34 WHERE name = "donaldson"###context:CREATE TABLE table_name_34 (ends VARCHAR, name VARCHAR) |
###question:Which Silver has a Total of 7, and a Gold larger than 1?###answer:SELECT AVG(silver) FROM table_name_10 WHERE total = 7 AND gold > 1###context:CREATE TABLE table_name_10 (silver INTEGER, total VARCHAR, gold VARCHAR) |
###question:Which Bronze has a Gold smaller than 16, a Rank of 10, and a Nation of italy?###answer:SELECT AVG(bronze) FROM table_name_97 WHERE gold < 16 AND rank = "10" AND nation = "italy"###context:CREATE TABLE table_name_97 (bronze INTEGER, nation VARCHAR, gold VARCHAR, rank VARCHAR) |
###question:Which Total has a Bronze larger than 2, a Gold smaller than 16, a Silver of 0, and a Rank of 13?###answer:SELECT AVG(total) FROM table_name_27 WHERE bronze > 2 AND gold < 16 AND silver = 0 AND rank = "13"###context:CREATE TABLE table_name_27 (total INTEGER, rank VARCHAR, silver VARCHAR, bronze VARCHAR, gold... |
###question:Which Gold has a Nation of malaysia, and a Silver smaller than 0?###answer:SELECT MIN(gold) FROM table_name_47 WHERE nation = "malaysia" AND silver < 0###context:CREATE TABLE table_name_47 (gold INTEGER, nation VARCHAR, silver VARCHAR) |
###question:Which Population (2005) has a Literacy (2003) of 90%, and an Infant Mortality (2002) of 18.3‰?###answer:SELECT SUM(population__2005_) FROM table_name_14 WHERE literacy__2003_ = "90%" AND infant_mortality__2002_ = "18.3‰"###context:CREATE TABLE table_name_14 (population__2005_ INTEGER, literacy__2003_ VARCHA... |
###question:Which Density (2005) has an Area (km²) of 340086.7, and a Population (2005) smaller than 5926300?###answer:SELECT SUM(density__2005_) FROM table_name_25 WHERE area__km²_ = 340086.7 AND population__2005_ < 5926300###context:CREATE TABLE table_name_25 (density__2005_ INTEGER, area__km²_ VARCHAR, population__2... |
###question:Which GDP per capita (US$) (2004) is the highest one that has an Area (km²) larger than 148825.6, and a State of roraima?###answer:SELECT MAX(gdp_per_capita__us) AS $___2004_ FROM table_name_37 WHERE area__km²_ > 148825.6 AND state = "roraima"###context:CREATE TABLE table_name_37 (gdp_per_capita__us INTEGER... |
###question:Which Literacy (2003) has an HDI (2005) smaller than 0.718, and a GDP per capita (US$) (2004) smaller than 3877, and a State of maranhão?###answer:SELECT literacy__2003_ FROM table_name_8 WHERE hdi__2005_ < 0.718 AND gdp_per_capita__us$___2004_ < 3877 AND state = "maranhão"###context:CREATE TABLE table_name... |
###question:Which GDP per capita (US$) (2004) has a Literacy (2003) of 90%, and an Area (km²) of 1247689.5?###answer:SELECT AVG(gdp_per_capita__us) AS $___2004_ FROM table_name_53 WHERE literacy__2003_ = "90%" AND area__km²_ = 1247689.5###context:CREATE TABLE table_name_53 (gdp_per_capita__us INTEGER, literacy__2003_ V... |
###question:Name the Date and an Opponent which has a f Position and Career Games of 123 games?###answer:SELECT date_and_opponent FROM table_name_4 WHERE position = "f" AND career_games = "123 games"###context:CREATE TABLE table_name_4 (date_and_opponent VARCHAR, position VARCHAR, career_games VARCHAR) |
###question:Which Name has a Years Played of 2004–2008, and a Date and Opponent of 2/17/07 vs. purdue?###answer:SELECT name FROM table_name_34 WHERE years_played = "2004–2008" AND date_and_opponent = "2/17/07 vs. purdue"###context:CREATE TABLE table_name_34 (name VARCHAR, years_played VARCHAR, date_and_opponent VARCHAR... |
###question:Which Career Games has a Date and Opponent of 12/15/92 vs. uw–milwaukee?###answer:SELECT career_games FROM table_name_58 WHERE date_and_opponent = "12/15/92 vs. uw–milwaukee"###context:CREATE TABLE table_name_58 (career_games VARCHAR, date_and_opponent VARCHAR) |
###question:WHich Scored 1,500 Points has a Years Played of 2004–2008 and a Name of jolene anderson?###answer:SELECT scored_1, 500 AS _points FROM table_name_34 WHERE years_played = "2004–2008" AND name = "jolene anderson"###context:CREATE TABLE table_name_34 (scored_1 VARCHAR, years_played VARCHAR, name VARCHAR) |
###question:Which Time has a Round smaller than 3, and an Opponent of bao quach?###answer:SELECT time FROM table_name_11 WHERE round < 3 AND opponent = "bao quach"###context:CREATE TABLE table_name_11 (time VARCHAR, round VARCHAR, opponent VARCHAR) |
###question:Which Round has a Record of 10-6?###answer:SELECT MIN(round) FROM table_name_20 WHERE record = "10-6"###context:CREATE TABLE table_name_20 (round INTEGER, record VARCHAR) |
###question:Which Opponent has a Round smaller than 3, and a Time of 1:09?###answer:SELECT opponent FROM table_name_48 WHERE round < 3 AND time = "1:09"###context:CREATE TABLE table_name_48 (opponent VARCHAR, round VARCHAR, time VARCHAR) |
###question:Which Time has an Opponent of josh branham?###answer:SELECT time FROM table_name_3 WHERE opponent = "josh branham"###context:CREATE TABLE table_name_3 (time VARCHAR, opponent VARCHAR) |
###question:Which Time has a Round larger than 2, and an Opponent of jesse brock?###answer:SELECT time FROM table_name_96 WHERE round > 2 AND opponent = "jesse brock"###context:CREATE TABLE table_name_96 (time VARCHAR, round VARCHAR, opponent VARCHAR) |
###question:Which Round has an Event of nle - capital city carnage?###answer:SELECT round FROM table_name_36 WHERE event = "nle - capital city carnage"###context:CREATE TABLE table_name_36 (round VARCHAR, event VARCHAR) |
###question:Which Round has an Opponent of ryan bixler?###answer:SELECT round FROM table_name_6 WHERE opponent = "ryan bixler"###context:CREATE TABLE table_name_6 (round VARCHAR, opponent VARCHAR) |
###question:Which Event has a Record of 19-9?###answer:SELECT event FROM table_name_47 WHERE record = "19-9"###context:CREATE TABLE table_name_47 (event VARCHAR, record VARCHAR) |
###question:Which Method has a Round of 1, and a Record of 4–2?###answer:SELECT method FROM table_name_37 WHERE round = 1 AND record = "4–2"###context:CREATE TABLE table_name_37 (method VARCHAR, round VARCHAR, record VARCHAR) |
###question:Which Opponent has a Time of 4:51?###answer:SELECT opponent FROM table_name_84 WHERE time = "4:51"###context:CREATE TABLE table_name_84 (opponent VARCHAR, time VARCHAR) |
###question:Which Round has an Opponent of jorge magalhaes?###answer:SELECT AVG(round) FROM table_name_83 WHERE opponent = "jorge magalhaes"###context:CREATE TABLE table_name_83 (round INTEGER, opponent VARCHAR) |
###question:Which Round has a Location of bahia, brazil?###answer:SELECT AVG(round) FROM table_name_52 WHERE location = "bahia, brazil"###context:CREATE TABLE table_name_52 (round INTEGER, location VARCHAR) |
###question:Which Opponent has an Event of jungle fight 5?###answer:SELECT opponent FROM table_name_2 WHERE event = "jungle fight 5"###context:CREATE TABLE table_name_2 (opponent VARCHAR, event VARCHAR) |
###question:Tiger Woods with a total less than 293 had what To par?###answer:SELECT to_par FROM table_name_73 WHERE total < 293 AND player = "tiger woods"###context:CREATE TABLE table_name_73 (to_par VARCHAR, total VARCHAR, player VARCHAR) |
###question:Bernhard Langer maximum total was what?###answer:SELECT MAX(total) FROM table_name_27 WHERE player = "bernhard langer"###context:CREATE TABLE table_name_27 (total INTEGER, player VARCHAR) |
###question:What is the average of the total when t11 is the finish?###answer:SELECT AVG(total) FROM table_name_39 WHERE finish = "t11"###context:CREATE TABLE table_name_39 (total INTEGER, finish VARCHAR) |
###question:Which Rider has Laps smaller than 24, and a Grid smaller than 12, and a Manufacturer of aprilia?###answer:SELECT rider FROM table_name_89 WHERE laps < 24 AND grid < 12 AND manufacturer = "aprilia"###context:CREATE TABLE table_name_89 (rider VARCHAR, manufacturer VARCHAR, laps VARCHAR, grid VARCHAR) |
###question:What were grid 7's laps?###answer:SELECT MIN(laps) FROM table_name_72 WHERE grid = 7###context:CREATE TABLE table_name_72 (laps INTEGER, grid VARCHAR) |
###question:Which Time/Retired has Laps smaller than 24, and a Manufacturer of aprilia, and a Grid smaller than 12, and a Rider of ángel rodríguez?###answer:SELECT time_retired FROM table_name_5 WHERE laps < 24 AND manufacturer = "aprilia" AND grid < 12 AND rider = "ángel rodríguez"###context:CREATE TABLE table_name_5 ... |
###question:How many Laps have a Time/Retired of +1:42.517, and a Grid larger than 33?###answer:SELECT COUNT(laps) FROM table_name_67 WHERE time_retired = "+1:42.517" AND grid > 33###context:CREATE TABLE table_name_67 (laps VARCHAR, time_retired VARCHAR, grid VARCHAR) |
###question:Which chassis-engine had 77 laps?###answer:SELECT chassis___engine FROM table_name_9 WHERE laps = 77###context:CREATE TABLE table_name_9 (chassis___engine VARCHAR, laps VARCHAR) |
###question:What is the class of team liqui moly equipe, which has less than 71 laps?###answer:SELECT class FROM table_name_85 WHERE laps < 71 AND team = "liqui moly equipe"###context:CREATE TABLE table_name_85 (class VARCHAR, laps VARCHAR, team VARCHAR) |
###question:What is the team of driver klaus ludwig, who is class c1 and has more than 77 laps?###answer:SELECT team FROM table_name_15 WHERE class = "c1" AND laps > 77 AND driver = "klaus ludwig"###context:CREATE TABLE table_name_15 (team VARCHAR, driver VARCHAR, class VARCHAR, laps VARCHAR) |
###question:Who is the driver of the chassis-engine porsche 956 gti?###answer:SELECT driver FROM table_name_14 WHERE chassis___engine = "porsche 956 gti"###context:CREATE TABLE table_name_14 (driver VARCHAR, chassis___engine VARCHAR) |
###question:What team has a porsche 956 b chassis-engine with less than 79 laps?###answer:SELECT team FROM table_name_17 WHERE chassis___engine = "porsche 956 b" AND laps < 79###context:CREATE TABLE table_name_17 (team VARCHAR, chassis___engine VARCHAR, laps VARCHAR) |
###question:What was the worldwide gross for the film directed by joe pytka?###answer:SELECT worldwide_gross FROM table_name_65 WHERE director = "joe pytka"###context:CREATE TABLE table_name_65 (worldwide_gross VARCHAR, director VARCHAR) |
###question:What was the average rank for the film directed by roland emmerich under the studio of 20th century fox?###answer:SELECT AVG(rank) FROM table_name_82 WHERE studio = "20th century fox" AND director = "roland emmerich"###context:CREATE TABLE table_name_82 (rank INTEGER, studio VARCHAR, director VARCHAR) |
###question:What is the average rank for the film directed by michael bay?###answer:SELECT AVG(rank) FROM table_name_90 WHERE director = "michael bay"###context:CREATE TABLE table_name_90 (rank INTEGER, director VARCHAR) |
###question:What is the 3rd largest where the largest city is Ardabil?###answer:SELECT 3 AS rd_largest FROM table_name_35 WHERE largest_city = "ardabil"###context:CREATE TABLE table_name_35 (largest_city VARCHAR) |
###question:What province has the largest city of Birjand?###answer:SELECT province FROM table_name_73 WHERE largest_city = "birjand"###context:CREATE TABLE table_name_73 (province VARCHAR, largest_city VARCHAR) |
###question:What was the score on september 28?###answer:SELECT score FROM table_name_58 WHERE date = "september 28"###context:CREATE TABLE table_name_58 (score VARCHAR, date VARCHAR) |
###question:What date was the score 29-7?###answer:SELECT date FROM table_name_28 WHERE score = "29-7"###context:CREATE TABLE table_name_28 (date VARCHAR, score VARCHAR) |
###question:How much January has a Game smaller than 37, and an Opponent of detroit red wings?###answer:SELECT COUNT(january) FROM table_name_67 WHERE game < 37 AND opponent = "detroit red wings"###context:CREATE TABLE table_name_67 (january VARCHAR, game VARCHAR, opponent VARCHAR) |
###question:Which January has an Opponent of toronto maple leafs?###answer:SELECT january FROM table_name_55 WHERE opponent = "toronto maple leafs"###context:CREATE TABLE table_name_55 (january VARCHAR, opponent VARCHAR) |
###question:Which January has an Opponent of @ detroit red wings?###answer:SELECT AVG(january) FROM table_name_74 WHERE opponent = "@ detroit red wings"###context:CREATE TABLE table_name_74 (january INTEGER, opponent VARCHAR) |
###question:What date was the score won 1-2?###answer:SELECT date FROM table_name_93 WHERE score = "won 1-2"###context:CREATE TABLE table_name_93 (date VARCHAR, score VARCHAR) |
###question:What was the score when Bornor Regis Town was the opponent?###answer:SELECT score FROM table_name_58 WHERE opponent = "bornor regis town"###context:CREATE TABLE table_name_58 (score VARCHAR, opponent VARCHAR) |
###question:What is the number of people in attendance when Tonbridge Angels is the opponent?###answer:SELECT attendance FROM table_name_86 WHERE opponent = "tonbridge angels"###context:CREATE TABLE table_name_86 (attendance VARCHAR, opponent VARCHAR) |
###question:What is the score when the attendance shows TBC, and Sidley United was the opponent?###answer:SELECT score FROM table_name_81 WHERE attendance = "tbc" AND opponent = "sidley united"###context:CREATE TABLE table_name_81 (score VARCHAR, attendance VARCHAR, opponent VARCHAR) |
###question:What is the score when the scorers show match report?###answer:SELECT score FROM table_name_97 WHERE scorers = "match report"###context:CREATE TABLE table_name_97 (score VARCHAR, scorers VARCHAR) |
###question:Which Album has a Label of msb 801?###answer:SELECT album FROM table_name_87 WHERE label = "msb 801"###context:CREATE TABLE table_name_87 (album VARCHAR, label VARCHAR) |
###question:Which Album has a Label of tumbleweed 1014?###answer:SELECT album FROM table_name_84 WHERE label = "tumbleweed 1014"###context:CREATE TABLE table_name_84 (album VARCHAR, label VARCHAR) |
###question:What was the score when the tie no was 12?###answer:SELECT score FROM table_name_72 WHERE tie_no = "12"###context:CREATE TABLE table_name_72 (score VARCHAR, tie_no VARCHAR) |
###question:What date was the match against carlisle united?###answer:SELECT date FROM table_name_65 WHERE away_team = "carlisle united"###context:CREATE TABLE table_name_65 (date VARCHAR, away_team VARCHAR) |
###question:Who was the home team when millwall was the away team?###answer:SELECT home_team FROM table_name_11 WHERE away_team = "millwall"###context:CREATE TABLE table_name_11 (home_team VARCHAR, away_team VARCHAR) |
###question:What category was the nominated in after 2008?###answer:SELECT category FROM table_name_31 WHERE outcome = "nominated" AND year > 2008###context:CREATE TABLE table_name_31 (category VARCHAR, outcome VARCHAR, year VARCHAR) |
###question:What year had the supernova award?###answer:SELECT year FROM table_name_46 WHERE category = "supernova award"###context:CREATE TABLE table_name_46 (year VARCHAR, category VARCHAR) |
###question:What category was the winner in?###answer:SELECT category FROM table_name_45 WHERE outcome = "winner"###context:CREATE TABLE table_name_45 (category VARCHAR, outcome VARCHAR) |
###question:what is the country when the iata is gva?###answer:SELECT country FROM table_name_7 WHERE iata = "gva"###context:CREATE TABLE table_name_7 (country VARCHAR, iata VARCHAR) |
###question:what is the country for the city of cardiff?###answer:SELECT country FROM table_name_34 WHERE city = "cardiff"###context:CREATE TABLE table_name_34 (country VARCHAR, city VARCHAR) |
###question:what is the icao when the country is norway?###answer:SELECT icao FROM table_name_28 WHERE country = "norway"###context:CREATE TABLE table_name_28 (icao VARCHAR, country VARCHAR) |
###question:what is the city for the country of netherlands?###answer:SELECT city FROM table_name_96 WHERE country = "netherlands"###context:CREATE TABLE table_name_96 (city VARCHAR, country VARCHAR) |
###question:what is the airport when the city is düsseldorf?###answer:SELECT airport FROM table_name_41 WHERE city = "düsseldorf"###context:CREATE TABLE table_name_41 (airport VARCHAR, city VARCHAR) |
###question:what is the iata when the city is leipzig?###answer:SELECT iata FROM table_name_91 WHERE city = "leipzig"###context:CREATE TABLE table_name_91 (iata VARCHAR, city VARCHAR) |
###question:What is the record on February 23?###answer:SELECT record FROM table_name_82 WHERE february = 23###context:CREATE TABLE table_name_82 (record VARCHAR, february VARCHAR) |
###question:What was the rank of the rider whose ascent time was 43:24 before the year 2002?###answer:SELECT COUNT(rank) FROM table_name_87 WHERE year < 2002 AND ascent_time = "43:24"###context:CREATE TABLE table_name_87 (rank VARCHAR, year VARCHAR, ascent_time VARCHAR) |
###question:Who is the rider that has a rank of less than 8 in the year 2000, and whose speed was 18.32 km/h?###answer:SELECT rider FROM table_name_43 WHERE rank < 8 AND year = 2000 AND speed = "18.32 km/h"###context:CREATE TABLE table_name_43 (rider VARCHAR, speed VARCHAR, rank VARCHAR, year VARCHAR) |
###question:What is the number of completions and attempts taken in 2009?###answer:SELECT comp_att FROM table_name_83 WHERE season = "2009"###context:CREATE TABLE table_name_83 (comp_att VARCHAR, season VARCHAR) |
###question:What is the completion/attempts value for the year with an average per game of 36.5?###answer:SELECT comp_att FROM table_name_10 WHERE avg_g = "36.5"###context:CREATE TABLE table_name_10 (comp_att VARCHAR, avg_g VARCHAR) |
###question:What is the long value for the year with an average/game of 160.9?###answer:SELECT long FROM table_name_17 WHERE avg_g = "160.9"###context:CREATE TABLE table_name_17 (long VARCHAR, avg_g VARCHAR) |
###question:What was the highest attendance of February 7, 2009 and more than 49 points?###answer:SELECT MAX(attendance) FROM table_name_17 WHERE date = "february 7, 2009" AND points > 49###context:CREATE TABLE table_name_17 (attendance INTEGER, date VARCHAR, points VARCHAR) |
###question:Which game has a number lower than 57 and more than 50 points?###answer:SELECT location FROM table_name_25 WHERE game < 57 AND points > 50###context:CREATE TABLE table_name_25 (location VARCHAR, game VARCHAR, points VARCHAR) |
###question:What game in February 10, 2009 has the most points and a game number larger than 54?###answer:SELECT MAX(points) FROM table_name_27 WHERE date = "february 10, 2009" AND game > 54###context:CREATE TABLE table_name_27 (points INTEGER, date VARCHAR, game VARCHAR) |
###question:What's the current streak with a last 10 meetings of lsu, 2-1?###answer:SELECT current_streak FROM table_name_50 WHERE last_10_meetings = "lsu, 2-1"###context:CREATE TABLE table_name_50 (current_streak VARCHAR, last_10_meetings VARCHAR) |
###question:What is the probable future word for the simple present/future word high grade?###answer:SELECT probable_future FROM table_name_82 WHERE NOT simple_present_future = "high grade"###context:CREATE TABLE table_name_82 (probable_future VARCHAR, simple_present_future VARCHAR) |
###question:What is the injunctive for the Simple Past of गरुँला garũlā 'I will (probably) do'?###answer:SELECT injunctive FROM table_name_99 WHERE simple_past = "गरुँला garũlā 'i will (probably) do'"###context:CREATE TABLE table_name_99 (injunctive VARCHAR, simple_past VARCHAR) |
###question:What is the date of taking office for Giorgia Meloni?###answer:SELECT took_office FROM table_name_28 WHERE minister = "giorgia meloni"###context:CREATE TABLE table_name_28 (took_office VARCHAR, minister VARCHAR) |
###question:Which party was Andrea Ronchi from?###answer:SELECT party FROM table_name_85 WHERE minister = "andrea ronchi"###context:CREATE TABLE table_name_85 (party VARCHAR, minister VARCHAR) |
###question:What is the lowest Division, when Team is "Benfica", and when Apps is 22?###answer:SELECT MIN(division) FROM table_name_30 WHERE team = "benfica" AND apps = 22###context:CREATE TABLE table_name_30 (division INTEGER, team VARCHAR, apps VARCHAR) |
###question:What Championship had a winning score of 69-71-67-68=275?###answer:SELECT championship FROM table_name_9 WHERE winning_score = 69 - 71 - 67 - 68 = 275###context:CREATE TABLE table_name_9 (championship VARCHAR, winning_score VARCHAR) |
###question:What is Jockey, when Time is 1:15.89?###answer:SELECT jockey FROM table_name_55 WHERE time = "1:15.89"###context:CREATE TABLE table_name_55 (jockey VARCHAR, time VARCHAR) |
###question:What is Time, when Jockey is John Velazquez, and when Trainer is Todd A. Pletcher?###answer:SELECT time FROM table_name_16 WHERE jockey = "john velazquez" AND trainer = "todd a. pletcher"###context:CREATE TABLE table_name_16 (time VARCHAR, jockey VARCHAR, trainer VARCHAR) |
###question:What is Winner, when Year is 2001?###answer:SELECT winner FROM table_name_34 WHERE year = 2001###context:CREATE TABLE table_name_34 (winner VARCHAR, year VARCHAR) |
###question:What is Jockey, when Winner is Alke?###answer:SELECT jockey FROM table_name_10 WHERE winner = "alke"###context:CREATE TABLE table_name_10 (jockey VARCHAR, winner VARCHAR) |
###question:What is the average laps for the +50.653 time?###answer:SELECT AVG(laps) FROM table_name_42 WHERE time = "+50.653"###context:CREATE TABLE table_name_42 (laps INTEGER, time VARCHAR) |
###question:What is the highest Matches were the points were smaller than 8, the place was larger than 13, and the drawn is less than 1?###answer:SELECT MAX(matches) FROM table_name_78 WHERE points < 8 AND place > 13 AND drawn < 1###context:CREATE TABLE table_name_78 (matches INTEGER, drawn VARCHAR, points VARCHAR, pla... |
###question:What is the average points when the drawn is less than 0?###answer:SELECT AVG(points) FROM table_name_68 WHERE drawn < 0###context:CREATE TABLE table_name_68 (points INTEGER, drawn INTEGER) |
###question:What was Turkey's lowest gold when there were less than 2 bronze?###answer:SELECT MIN(gold) FROM table_name_83 WHERE nation = "turkey" AND bronze < 2###context:CREATE TABLE table_name_83 (gold INTEGER, nation VARCHAR, bronze VARCHAR) |
###question:What is the average area in square miles for the hunan administrative division with a national share less than 2.19%?###answer:SELECT AVG(area__sq_mi_) FROM table_name_88 WHERE administrative_division = "hunan" AND national_share___percentage_ < 2.19###context:CREATE TABLE table_name_88 (area__sq_mi_ INTEGE... |
###question:What is Central Michigan's average overall when the pick was 8?###answer:SELECT AVG(overall) FROM table_name_83 WHERE college = "central michigan" AND pick = 8###context:CREATE TABLE table_name_83 (overall INTEGER, college VARCHAR, pick VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.