combined_text
stringlengths 106
1.05k
|
---|
###question:What is the Gender of students at a school with a Decile of 5 and a Roll of 90?###answer:SELECT gender FROM table_name_86 WHERE decile = 5 AND roll = 90###context:CREATE TABLE table_name_86 (gender VARCHAR, decile VARCHAR, roll VARCHAR) |
###question:Name the Years of schools with a Roll Larger than 23 and a Decile greater than 5.###answer:SELECT years FROM table_name_27 WHERE roll > 23 AND decile > 5###context:CREATE TABLE table_name_27 (years VARCHAR, roll VARCHAR, decile VARCHAR) |
###question:What is the total number of Rolls of State schools in Hapuku with a Decile greater than 4?###answer:SELECT COUNT(roll) FROM table_name_56 WHERE authority = "state" AND area = "hapuku" AND decile > 4###context:CREATE TABLE table_name_56 (roll VARCHAR, decile VARCHAR, authority VARCHAR, area VARCHAR) |
###question:What is the D45 associated with a D42 of r 22?###answer:SELECT d_45 FROM table_name_23 WHERE d_42 = "r 22"###context:CREATE TABLE table_name_23 (d_45 VARCHAR, d_42 VARCHAR) |
###question:What is the D43 associated with a D41 of r 21?###answer:SELECT d_43 FROM table_name_44 WHERE d_41 = "r 21"###context:CREATE TABLE table_name_44 (d_43 VARCHAR, d_41 VARCHAR) |
###question:What is the D42 associated with a D47 of d 27?###answer:SELECT d_42 FROM table_name_31 WHERE d_47 = "d 27"###context:CREATE TABLE table_name_31 (d_42 VARCHAR, d_47 VARCHAR) |
###question:What is the D43 associated with a D41 of r 16?###answer:SELECT d_43 FROM table_name_92 WHERE d_41 = "r 16"###context:CREATE TABLE table_name_92 (d_43 VARCHAR, d_41 VARCHAR) |
###question:What is the record for the game when the loss was hargan (14β13)?###answer:SELECT record FROM table_name_84 WHERE loss = "hargan (14β13)"###context:CREATE TABLE table_name_84 (record VARCHAR, loss VARCHAR) |
###question:What is the record for the game with a score of 7β5?###answer:SELECT record FROM table_name_10 WHERE score = "7β5"###context:CREATE TABLE table_name_10 (record VARCHAR, score VARCHAR) |
###question:What date was the game with loss of Aker (3β8)?###answer:SELECT date FROM table_name_4 WHERE loss = "aker (3β8)"###context:CREATE TABLE table_name_4 (date VARCHAR, loss VARCHAR) |
###question:What team was the opponent when the score was 7β1?###answer:SELECT opponent FROM table_name_86 WHERE score = "7β1"###context:CREATE TABLE table_name_86 (opponent VARCHAR, score VARCHAR) |
###question:What was the score when the opponent was the Orioles and the loss shows morehead (5β4)?###answer:SELECT score FROM table_name_18 WHERE opponent = "orioles" AND loss = "morehead (5β4)"###context:CREATE TABLE table_name_18 (score VARCHAR, opponent VARCHAR, loss VARCHAR) |
###question:Name the opponent with a record of 60-61###answer:SELECT opponent FROM table_name_35 WHERE record = "60-61"###context:CREATE TABLE table_name_35 (opponent VARCHAR, record VARCHAR) |
###question:Who had a perfection percentage of 77.96%?###answer:SELECT name FROM table_name_94 WHERE perfection = "77.96%"###context:CREATE TABLE table_name_94 (name VARCHAR, perfection VARCHAR) |
###question:What was the rank of Svetlana Fedorenko?###answer:SELECT rank FROM table_name_46 WHERE name = "svetlana fedorenko"###context:CREATE TABLE table_name_46 (rank VARCHAR, name VARCHAR) |
###question:Who had a perfection percentage of 73.24%?###answer:SELECT name FROM table_name_62 WHERE perfection = "73.24%"###context:CREATE TABLE table_name_62 (name VARCHAR, perfection VARCHAR) |
###question:What was the score of the game on June 1?###answer:SELECT score FROM table_name_38 WHERE date = "june 1"###context:CREATE TABLE table_name_38 (score VARCHAR, date VARCHAR) |
###question:What was the score against andrei pavel?###answer:SELECT score FROM table_name_6 WHERE opponent = "andrei pavel"###context:CREATE TABLE table_name_6 (score VARCHAR, opponent VARCHAR) |
###question:When was the tournament of bologna?###answer:SELECT date FROM table_name_52 WHERE tournament = "bologna"###context:CREATE TABLE table_name_52 (date VARCHAR, tournament VARCHAR) |
###question:Who played on clay and had a score of 6β1, 7β6?###answer:SELECT opponent FROM table_name_31 WHERE surface = "clay" AND score = "6β1, 7β6"###context:CREATE TABLE table_name_31 (opponent VARCHAR, surface VARCHAR, score VARCHAR) |
###question:Who played on clay on 3 march 2012?###answer:SELECT opponent FROM table_name_16 WHERE surface = "clay" AND date = "3 march 2012"###context:CREATE TABLE table_name_16 (opponent VARCHAR, surface VARCHAR, date VARCHAR) |
###question:What was the score against fabrice martin?###answer:SELECT score FROM table_name_66 WHERE opponent = "fabrice martin"###context:CREATE TABLE table_name_66 (score VARCHAR, opponent VARCHAR) |
###question:What was the surface of the score of 7β5, 3β6, 7β6?###answer:SELECT surface FROM table_name_58 WHERE score = "7β5, 3β6, 7β6"###context:CREATE TABLE table_name_58 (surface VARCHAR, score VARCHAR) |
###question:What's the Order with an Elector of Marino Bulcani?###answer:SELECT order FROM table_name_61 WHERE elector = "marino bulcani"###context:CREATE TABLE table_name_61 (order VARCHAR, elector VARCHAR) |
###question:What's the Elevator that has Elevated: 1378, September 18, an Order of Cardinal-Priest, and an Elector of Poncello Orsini?###answer:SELECT elevator FROM table_name_25 WHERE elevated = "1378, september 18" AND order = "cardinal-priest" AND elector = "poncello orsini"###context:CREATE TABLE table_name_25 (elevator VARCHAR, elector VARCHAR, elevated VARCHAR, order VARCHAR) |
###question:What is listed as the Elector with the Title of Deacon of S. Maria in Domnica?###answer:SELECT elector FROM table_name_62 WHERE title = "deacon of s. maria in domnica"###context:CREATE TABLE table_name_62 (elector VARCHAR, title VARCHAR) |
###question:What's listed for the Elevated category that has an Order of Cardinal-Bishop?###answer:SELECT elevated FROM table_name_78 WHERE order = "cardinal-bishop"###context:CREATE TABLE table_name_78 (elevated VARCHAR, order VARCHAR) |
###question:The Milford School has what Division Record?###answer:SELECT division_record FROM table_name_79 WHERE school = "milford"###context:CREATE TABLE table_name_79 (division_record VARCHAR, school VARCHAR) |
###question:What is the name of the School of the Sussex Tech's Team?###answer:SELECT team FROM table_name_29 WHERE school = "sussex tech"###context:CREATE TABLE table_name_29 (team VARCHAR, school VARCHAR) |
###question:What was Arnold Palmer's score in the tournamnet?###answer:SELECT score FROM table_name_5 WHERE player = "arnold palmer"###context:CREATE TABLE table_name_5 (score VARCHAR, player VARCHAR) |
###question:What the name of Peter White's party?###answer:SELECT party FROM table_name_31 WHERE member = "peter white"###context:CREATE TABLE table_name_31 (party VARCHAR, member VARCHAR) |
###question:What term did an Electorate of indi have in office?###answer:SELECT term_in_office FROM table_name_73 WHERE electorate = "indi"###context:CREATE TABLE table_name_73 (term_in_office VARCHAR, electorate VARCHAR) |
###question:What term did hon ralph hunt serve in office?###answer:SELECT term_in_office FROM table_name_9 WHERE member = "hon ralph hunt"###context:CREATE TABLE table_name_9 (term_in_office VARCHAR, member VARCHAR) |
###question:What party is Peter Fisher from Vic serve in office?###answer:SELECT party FROM table_name_65 WHERE state = "vic" AND member = "peter fisher"###context:CREATE TABLE table_name_65 (party VARCHAR, state VARCHAR, member VARCHAR) |
###question:How many laps were done in 2012?###answer:SELECT SUM(laps) FROM table_name_26 WHERE year = 2012###context:CREATE TABLE table_name_26 (laps INTEGER, year VARCHAR) |
###question:On what day was the score of 1β6 6β1 3β6 achieved?###answer:SELECT date FROM table_name_12 WHERE score = "1β6 6β1 3β6"###context:CREATE TABLE table_name_12 (date VARCHAR, score VARCHAR) |
###question:Name the average gold for czech republic and bronze less than 1 when total is less than 14###answer:SELECT AVG(gold) FROM table_name_62 WHERE total < 14 AND bronze < 1 AND nation = "czech republic"###context:CREATE TABLE table_name_62 (gold INTEGER, nation VARCHAR, total VARCHAR, bronze VARCHAR) |
###question:Name the highest rank when silver is 4 and bronze is less than 3###answer:SELECT MAX(rank) FROM table_name_13 WHERE silver = 4 AND bronze < 3###context:CREATE TABLE table_name_13 (rank INTEGER, silver VARCHAR, bronze VARCHAR) |
###question:Name the total number of total for bronze of 4 and silver more than 6###answer:SELECT COUNT(total) FROM table_name_59 WHERE bronze = 4 AND silver > 6###context:CREATE TABLE table_name_59 (total VARCHAR, bronze VARCHAR, silver VARCHAR) |
###question:When the Surface was Carpet (i), what was the Outcome?###answer:SELECT outcome FROM table_name_11 WHERE surface = "carpet (i)"###context:CREATE TABLE table_name_11 (outcome VARCHAR, surface VARCHAR) |
###question:What is the draw number of the song with a place lower than 6 and more than 38 votes?###answer:SELECT SUM(draw) FROM table_name_49 WHERE place > 6 AND votes > 38###context:CREATE TABLE table_name_49 (draw INTEGER, place VARCHAR, votes VARCHAR) |
###question:What is the total number of votes Sahlene with a place below 1 has?###answer:SELECT COUNT(votes) FROM table_name_4 WHERE artist = "sahlene" AND place > 1###context:CREATE TABLE table_name_4 (votes VARCHAR, artist VARCHAR, place VARCHAR) |
###question:What is the highest place of the song with 38 votes and a draw great than 3?###answer:SELECT MAX(place) FROM table_name_8 WHERE votes = 38 AND draw > 3###context:CREATE TABLE table_name_8 (place INTEGER, votes VARCHAR, draw VARCHAR) |
###question:How many votes did Yvetta Kadakas & Ivo Linna, who had less than 4 draws, have?###answer:SELECT SUM(votes) FROM table_name_93 WHERE draw < 4 AND artist = "yvetta kadakas & ivo linna"###context:CREATE TABLE table_name_93 (votes INTEGER, draw VARCHAR, artist VARCHAR) |
###question:What year was there a finish of 3?###answer:SELECT year FROM table_name_27 WHERE finish = "3"###context:CREATE TABLE table_name_27 (year VARCHAR, finish VARCHAR) |
###question:What year was the start 33?###answer:SELECT SUM(year) FROM table_name_97 WHERE start = "33"###context:CREATE TABLE table_name_97 (year INTEGER, start VARCHAR) |
###question:When was there a team of Simon and the start was 3?###answer:SELECT year FROM table_name_48 WHERE team = "simon" AND start = "3"###context:CREATE TABLE table_name_48 (year VARCHAR, team VARCHAR, start VARCHAR) |
###question:What's the name of the 1985 city with a Spire (m) of 105, and a Roof (m) smaller than 96?###answer:SELECT city FROM table_name_69 WHERE spire__m_ = "105" AND roof___m__ < 96 AND built = 1985###context:CREATE TABLE table_name_69 (city VARCHAR, built VARCHAR, spire__m_ VARCHAR, roof___m__ VARCHAR) |
###question:What's the average number of floors that were built in 2004, and have a roof (m) of 106?###answer:SELECT AVG(floors) FROM table_name_67 WHERE built = 2004 AND roof___m__ = 106###context:CREATE TABLE table_name_67 (floors INTEGER, built VARCHAR, roof___m__ VARCHAR) |
###question:What's the total number of floors built after 2006, and have a rank of 12?###answer:SELECT SUM(floors) FROM table_name_73 WHERE built > 2006 AND rank = 12###context:CREATE TABLE table_name_73 (floors INTEGER, built VARCHAR, rank VARCHAR) |
###question:What is the sum of attendance for H/A values of "n"?###answer:SELECT SUM(attendance) FROM table_name_80 WHERE h___a = "n"###context:CREATE TABLE table_name_80 (attendance INTEGER, h___a VARCHAR) |
###question:Name the score which has opponent of stefano galvani###answer:SELECT score FROM table_name_85 WHERE opponent = "stefano galvani"###context:CREATE TABLE table_name_85 (score VARCHAR, opponent VARCHAR) |
###question:Name the score with opponent of javier genaro-martinez###answer:SELECT score FROM table_name_44 WHERE opponent = "javier genaro-martinez"###context:CREATE TABLE table_name_44 (score VARCHAR, opponent VARCHAR) |
###question:Name the outcome for dunlop world challenge###answer:SELECT outcome FROM table_name_58 WHERE tournament = "dunlop world challenge"###context:CREATE TABLE table_name_58 (outcome VARCHAR, tournament VARCHAR) |
###question:Who was the visiting team on December 6?###answer:SELECT visiting_team FROM table_name_31 WHERE date = "december 6"###context:CREATE TABLE table_name_31 (visiting_team VARCHAR, date VARCHAR) |
###question:Who was the host team on October 4?###answer:SELECT host_team FROM table_name_31 WHERE date = "october 4"###context:CREATE TABLE table_name_31 (host_team VARCHAR, date VARCHAR) |
###question:In New Zealand, what's the value that has an unknown date and is an energy business?###answer:SELECT value___usd__ FROM table_name_70 WHERE date = "unknown" AND business = "energy" AND country = "new zealand"###context:CREATE TABLE table_name_70 (value___usd__ VARCHAR, country VARCHAR, date VARCHAR, business VARCHAR) |
###question:What company has an unknown date and is an energy business?###answer:SELECT company FROM table_name_20 WHERE business = "energy" AND date = "unknown"###context:CREATE TABLE table_name_20 (company VARCHAR, business VARCHAR, date VARCHAR) |
###question:In the United Kingdom, what company has an unknown date and is an energy business?###answer:SELECT company FROM table_name_35 WHERE business = "energy" AND date = "unknown" AND country = "united kingdom"###context:CREATE TABLE table_name_35 (company VARCHAR, country VARCHAR, business VARCHAR, date VARCHAR) |
###question:For the United Kingdom, what's the date?###answer:SELECT date FROM table_name_88 WHERE country = "united kingdom"###context:CREATE TABLE table_name_88 (date VARCHAR, country VARCHAR) |
###question:For the Enernoc Australia Pty Ltd, what's the country with an unknown date?###answer:SELECT country FROM table_name_15 WHERE date = "unknown" AND company = "enernoc australia pty ltd"###context:CREATE TABLE table_name_15 (country VARCHAR, date VARCHAR, company VARCHAR) |
###question:Which date is associated with a venue of Luxembourg?###answer:SELECT date FROM table_name_29 WHERE venue = "luxembourg"###context:CREATE TABLE table_name_29 (date VARCHAR, venue VARCHAR) |
###question:What is the year with a Kurtis Kraft 500a chassis, and less than 1.5 points?###answer:SELECT SUM(year) FROM table_name_10 WHERE chassis = "kurtis kraft 500a" AND points < 1.5###context:CREATE TABLE table_name_10 (year INTEGER, chassis VARCHAR, points VARCHAR) |
###question:What is the year with a kurtis kraft 500a chassis?###answer:SELECT SUM(year) FROM table_name_86 WHERE chassis = "kurtis kraft 500a"###context:CREATE TABLE table_name_86 (year INTEGER, chassis VARCHAR) |
###question:What is the lowest Pick # of Saint Vincent College?###answer:SELECT MIN(pick__number) FROM table_name_78 WHERE college = "saint vincent college"###context:CREATE TABLE table_name_78 (pick__number INTEGER, college VARCHAR) |
###question:What is the Overall for Pick # less than 5 Jack Harmon?###answer:SELECT MIN(overall) FROM table_name_45 WHERE name = "jack harmon" AND pick__number < 5###context:CREATE TABLE table_name_45 (overall INTEGER, name VARCHAR, pick__number VARCHAR) |
###question:Which rank has a Total GDP (β¬ bn) of β¬11.243??###answer:SELECT rank FROM table_name_98 WHERE total_gdp__β¬_bn__ = "β¬11.243"###context:CREATE TABLE table_name_98 (rank VARCHAR, total_gdp__β¬_bn__ VARCHAR) |
###question:What is the Region that has a Total GDP (β¬ bn ) of β¬11,745.353?###answer:SELECT region FROM table_name_58 WHERE total_gdp__β¬_bn__ = "β¬11,745.353"###context:CREATE TABLE table_name_58 (region VARCHAR, total_gdp__β¬_bn__ VARCHAR) |
###question:Which Region that has a growth of β3.6%?###answer:SELECT region FROM table_name_24 WHERE _percentage_growth = "β3.6"###context:CREATE TABLE table_name_24 (region VARCHAR, _percentage_growth VARCHAR) |
###question:What is the per capita of Greece?###answer:SELECT per_capita FROM table_name_42 WHERE region = "greece"###context:CREATE TABLE table_name_42 (per_capita VARCHAR, region VARCHAR) |
###question:What is the fewest number of silver medals received by a nation who received 40 bronze medals and more than 42 gold medals?###answer:SELECT MIN(silver) FROM table_name_97 WHERE bronze = 40 AND gold > 42###context:CREATE TABLE table_name_97 (silver INTEGER, bronze VARCHAR, gold VARCHAR) |
###question:What is the lowest number of silver medals received by Austria when they receive more than 3 total medals, more than 22 bronze medals, and fewer than 395 gold medals?###answer:SELECT MIN(silver) FROM table_name_72 WHERE total > 3 AND bronze > 22 AND gold < 395 AND nation = "austria"###context:CREATE TABLE table_name_72 (silver INTEGER, nation VARCHAR, gold VARCHAR, total VARCHAR, bronze VARCHAR) |
###question:What is the average number of silver medals with more than 6 gold meals and less than 5 bronze medals?###answer:SELECT AVG(silver) FROM table_name_53 WHERE gold > 6 AND bronze < 5###context:CREATE TABLE table_name_53 (silver INTEGER, gold VARCHAR, bronze VARCHAR) |
###question:How many ranks are for Switzerland with more than 2 total medals?###answer:SELECT COUNT(rank) FROM table_name_39 WHERE nation = "switzerland" AND total > 2###context:CREATE TABLE table_name_39 (rank VARCHAR, nation VARCHAR, total VARCHAR) |
###question:What is the event of the match with a round larger than 2 and ended with a method of ko (kick)?###answer:SELECT event FROM table_name_39 WHERE round > 2 AND method = "ko (kick)"###context:CREATE TABLE table_name_39 (event VARCHAR, round VARCHAR, method VARCHAR) |
###question:What is the method of the match after round 1 in the k-1 andy memorial 2001 japan gp final?###answer:SELECT method FROM table_name_82 WHERE round > 1 AND event = "k-1 andy memorial 2001 japan gp final"###context:CREATE TABLE table_name_82 (method VARCHAR, round VARCHAR, event VARCHAR) |
###question:What is the highest round of the match with Rene Rooze as the opponent in Saitama, Japan?###answer:SELECT MAX(round) FROM table_name_91 WHERE opponent = "rene rooze" AND location = "saitama, japan"###context:CREATE TABLE table_name_91 (round INTEGER, opponent VARCHAR, location VARCHAR) |
###question:What is the highest round of the match with a time of 0:57?###answer:SELECT MAX(round) FROM table_name_97 WHERE time = "0:57"###context:CREATE TABLE table_name_97 (round INTEGER, time VARCHAR) |
###question:How many points did the Club score that has a try bonus of 7 and 52 tries for ?###answer:SELECT points_for FROM table_name_52 WHERE tries_for = "52" AND try_bonus = "7"###context:CREATE TABLE table_name_52 (points_for VARCHAR, tries_for VARCHAR, try_bonus VARCHAR) |
###question:What is the Losing bonus of the club that has 80 tries against ?###answer:SELECT losing_bonus FROM table_name_64 WHERE tries_against = "80"###context:CREATE TABLE table_name_64 (losing_bonus VARCHAR, tries_against VARCHAR) |
###question:How many tries for does waunarlwydd rfc have ?###answer:SELECT tries_for FROM table_name_2 WHERE club = "waunarlwydd rfc"###context:CREATE TABLE table_name_2 (tries_for VARCHAR, club VARCHAR) |
###question:How many losses did the club with 47 points have ?###answer:SELECT lost FROM table_name_7 WHERE points = "47"###context:CREATE TABLE table_name_7 (lost VARCHAR, points VARCHAR) |
###question:How many points against does the club that has a try bonus of 6 and tries against of 54 have ?###answer:SELECT points_against FROM table_name_92 WHERE try_bonus = "6" AND tries_against = "54"###context:CREATE TABLE table_name_92 (points_against VARCHAR, try_bonus VARCHAR, tries_against VARCHAR) |
###question:Who were the co-drivers in 2008?###answer:SELECT co_drivers FROM table_name_81 WHERE year = 2008###context:CREATE TABLE table_name_81 (co_drivers VARCHAR, year VARCHAR) |
###question:What was the position in 2006?###answer:SELECT pos FROM table_name_66 WHERE year = 2006###context:CREATE TABLE table_name_66 (pos VARCHAR, year VARCHAR) |
###question:What was the class when there were 325 laps?###answer:SELECT class FROM table_name_32 WHERE laps = 325###context:CREATE TABLE table_name_32 (class VARCHAR, laps VARCHAR) |
###question:What is the English title of the film from 2001?###answer:SELECT english_title FROM table_name_89 WHERE year = 2001###context:CREATE TABLE table_name_89 (english_title VARCHAR, year VARCHAR) |
###question:What is the original title of the film from Japan/Taiwan before 2003?###answer:SELECT original_title FROM table_name_95 WHERE year < 2003 AND country = "japan/taiwan"###context:CREATE TABLE table_name_95 (original_title VARCHAR, year VARCHAR, country VARCHAR) |
###question:What is the English title of the film directed by Fernando Meirelles?###answer:SELECT english_title FROM table_name_53 WHERE director_s_ = "fernando meirelles"###context:CREATE TABLE table_name_53 (english_title VARCHAR, director_s_ VARCHAR) |
###question:What is the country of the original title Cidade de deus?###answer:SELECT country FROM table_name_69 WHERE original_title = "cidade de deus"###context:CREATE TABLE table_name_69 (country VARCHAR, original_title VARCHAR) |
###question:What is the earliest year of a film from Mexico?###answer:SELECT MIN(year) FROM table_name_44 WHERE country = "mexico"###context:CREATE TABLE table_name_44 (year INTEGER, country VARCHAR) |
###question:What is the average year of the film from France/Hong Kong?###answer:SELECT AVG(year) FROM table_name_74 WHERE country = "france/hong kong"###context:CREATE TABLE table_name_74 (year INTEGER, country VARCHAR) |
###question:Name the country for t3 place###answer:SELECT country FROM table_name_45 WHERE place = "t3"###context:CREATE TABLE table_name_45 (country VARCHAR, place VARCHAR) |
###question:Name the country with +2 to par###answer:SELECT country FROM table_name_28 WHERE to_par = "+2"###context:CREATE TABLE table_name_28 (country VARCHAR, to_par VARCHAR) |
###question:Name the to par for colin montgomerie###answer:SELECT to_par FROM table_name_30 WHERE player = "colin montgomerie"###context:CREATE TABLE table_name_30 (to_par VARCHAR, player VARCHAR) |
###question:Name the score for scotland###answer:SELECT score FROM table_name_64 WHERE country = "scotland"###context:CREATE TABLE table_name_64 (score VARCHAR, country VARCHAR) |
###question:What island has a population over 76, a height over 210, and an area larger than 12068?###answer:SELECT island FROM table_name_3 WHERE population > 76 AND height__m_ > 210 AND area___ha__ > 12068###context:CREATE TABLE table_name_3 (island VARCHAR, area___ha__ VARCHAR, population VARCHAR, height__m_ VARCHAR) |
###question:What is the highest population of Trondra Island in the Scalloway Islands?###answer:SELECT MAX(population) FROM table_name_17 WHERE location = "scalloway islands" AND island = "trondra"###context:CREATE TABLE table_name_17 (population INTEGER, location VARCHAR, island VARCHAR) |
###question:How many matches were drawn associated with a percentage of 7.14% and more than 12 losses?###answer:SELECT COUNT(drawn) FROM table_name_57 WHERE percentage = "7.14%" AND lost > 12###context:CREATE TABLE table_name_57 (drawn VARCHAR, percentage VARCHAR, lost VARCHAR) |
###question:Which percentage has a first game before 1997, fewer than 2 losses, and fewer than 5 matches played?###answer:SELECT percentage FROM table_name_27 WHERE first_game < 1997 AND lost < 2 AND played < 5###context:CREATE TABLE table_name_27 (percentage VARCHAR, played VARCHAR, first_game VARCHAR, lost VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.