Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
48,900 | <question>: What is the lowest wins with less than 2 Byes? <context>: CREATE TABLE table_name_15 (wins INTEGER, byes INTEGER) | SELECT MIN(wins) FROM table_name_15 WHERE byes < 2 |
48,901 | <question>: What is the highest score with 0 wins and more than 2 Byes? <context>: CREATE TABLE table_name_4 (against INTEGER, wins VARCHAR, byes VARCHAR) | SELECT MAX(against) FROM table_name_4 WHERE wins = 0 AND byes > 2 |
48,902 | <question>: What is the sum of wins against the smaller score 1148? <context>: CREATE TABLE table_name_80 (wins INTEGER, against INTEGER) | SELECT SUM(wins) FROM table_name_80 WHERE against < 1148 |
48,903 | <question>: Who had a rank larger than 7, less than 305 goals, and 418 matches? <context>: CREATE TABLE table_name_36 (name VARCHAR, matches VARCHAR, rank VARCHAR, goals VARCHAR) | SELECT name FROM table_name_36 WHERE rank > 7 AND goals < 305 AND matches = "418" |
48,904 | <question>: How many goals ranked 6? <context>: CREATE TABLE table_name_36 (goals VARCHAR, rank VARCHAR) | SELECT COUNT(goals) FROM table_name_36 WHERE rank = 6 |
48,905 | <question>: How many matches had 360 goals? <context>: CREATE TABLE table_name_31 (matches VARCHAR, goals VARCHAR) | SELECT matches FROM table_name_31 WHERE goals = 360 |
48,906 | <question>: What is the Nominee from the Category that is best costume design? <context>: CREATE TABLE table_name_64 (nominee VARCHAR, category VARCHAR) | SELECT nominee FROM table_name_64 WHERE category = "best costume design" |
48,907 | <question>: Which Total has a Bronze larger than 12, and a Silver larger than 772, and a Country of thailand? <context>: CREATE TABLE table_name_70 (total INTEGER, country VARCHAR, bronze VARCHAR, silver VARCHAR) | SELECT SUM(total) FROM table_name_70 WHERE bronze > 12 AND silver > 772 AND country = "thailand" |
48,908 | <question>: Which Gold has a Total of 2998, and a Bronze smaller than 1191? <context>: CREATE TABLE table_name_68 (gold INTEGER, total VARCHAR, bronze VARCHAR) | SELECT AVG(gold) FROM table_name_68 WHERE total = 2998 AND bronze < 1191 |
48,909 | <question>: Which Bronze has a Country of malaysia, and a Total smaller than 2644? <context>: CREATE TABLE table_name_75 (bronze INTEGER, country VARCHAR, total VARCHAR) | SELECT SUM(bronze) FROM table_name_75 WHERE country = "malaysia" AND total < 2644 |
48,910 | <question>: Which Silver has a Bronze smaller than 618, and a Country of laos? <context>: CREATE TABLE table_name_65 (silver VARCHAR, bronze VARCHAR, country VARCHAR) | SELECT silver FROM table_name_65 WHERE bronze < 618 AND country = "laos" |
48,911 | <question>: What is the Score with a Team that is @ portland? <context>: CREATE TABLE table_name_1 (score VARCHAR, team VARCHAR) | SELECT score FROM table_name_1 WHERE team = "@ portland" |
48,912 | <question>: What is the High points with a Date that is january 20? <context>: CREATE TABLE table_name_35 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_name_35 WHERE date = "january 20" |
48,913 | <question>: Who was the home team that the Clippers played? <context>: CREATE TABLE table_name_64 (home VARCHAR, visitor VARCHAR) | SELECT home FROM table_name_64 WHERE visitor = "clippers" |
48,914 | <question>: What's the record of the game where Lebron James (16) was the leading scorer? <context>: CREATE TABLE table_name_69 (record VARCHAR, leading_scorer VARCHAR) | SELECT record FROM table_name_69 WHERE leading_scorer = "lebron james (16)" |
48,915 | <question>: When the venue was A and the date was 2 january 2008, what was the average attendance? <context>: CREATE TABLE table_name_61 (attendance INTEGER, venue VARCHAR, date VARCHAR) | SELECT AVG(attendance) FROM table_name_61 WHERE venue = "a" AND date = "2 january 2008" |
48,916 | <question>: On 10 November 2007, what was the venue? <context>: CREATE TABLE table_name_60 (venue VARCHAR, date VARCHAR) | SELECT venue FROM table_name_60 WHERE date = "10 november 2007" |
48,917 | <question>: On what date was the opponent Ayr United, the result 1–0, and the attendance more than 668? <context>: CREATE TABLE table_name_17 (date VARCHAR, opponent VARCHAR, result VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_17 WHERE result = "1–0" AND attendance > 668 AND opponent = "ayr united" |
48,918 | <question>: When the opponent was Brechin City and the attendance was 656, what was the Result? <context>: CREATE TABLE table_name_47 (result VARCHAR, opponent VARCHAR, attendance VARCHAR) | SELECT result FROM table_name_47 WHERE opponent = "brechin city" AND attendance = 656 |
48,919 | <question>: On 1 september 2007, at the Venue A, what was the average attendance? <context>: CREATE TABLE table_name_45 (attendance INTEGER, venue VARCHAR, date VARCHAR) | SELECT AVG(attendance) FROM table_name_45 WHERE venue = "a" AND date = "1 september 2007" |
48,920 | <question>: Which Score has a Country of england, and a Year larger than 1971? <context>: CREATE TABLE table_name_77 (score VARCHAR, country VARCHAR, year VARCHAR) | SELECT score FROM table_name_77 WHERE country = "england" AND year > 1971 |
48,921 | <question>: What is Scotland's winner? <context>: CREATE TABLE table_name_37 (winner VARCHAR, country VARCHAR) | SELECT winner FROM table_name_37 WHERE country = "scotland" |
48,922 | <question>: What time was the game in week 2? <context>: CREATE TABLE table_name_15 (time VARCHAR, week VARCHAR) | SELECT time FROM table_name_15 WHERE week = 2 |
48,923 | <question>: What was the score of the game on September 14, 2008? <context>: CREATE TABLE table_name_88 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_88 WHERE date = "september 14, 2008" |
48,924 | <question>: What was the final score of the game on November 23, 2008? <context>: CREATE TABLE table_name_66 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_66 WHERE date = "november 23, 2008" |
48,925 | <question>: Which species has a Voges-Proskauer reading of negative and an indole reading of negative? <context>: CREATE TABLE table_name_43 (species VARCHAR, voges_proskauer VARCHAR, indole VARCHAR) | SELECT species FROM table_name_43 WHERE voges_proskauer = "negative" AND indole = "negative" |
48,926 | <question>: What is the Voges-Proskauer reading for proteus mirabilis? <context>: CREATE TABLE table_name_70 (voges_proskauer VARCHAR, species VARCHAR) | SELECT voges_proskauer FROM table_name_70 WHERE species = "proteus mirabilis" |
48,927 | <question>: What is the methyl red reading for the species that tests positive for indole? <context>: CREATE TABLE table_name_98 (methyl_red VARCHAR, indole VARCHAR) | SELECT methyl_red FROM table_name_98 WHERE indole = "positive" |
48,928 | <question>: What is the methyl red reading for proteus mirabilis? <context>: CREATE TABLE table_name_77 (methyl_red VARCHAR, species VARCHAR) | SELECT methyl_red FROM table_name_77 WHERE species = "proteus mirabilis" |
48,929 | <question>: What is the highest silver medals for Russia with more than 5 bronze medals? <context>: CREATE TABLE table_name_15 (silver INTEGER, nation VARCHAR, bronze VARCHAR) | SELECT MAX(silver) FROM table_name_15 WHERE nation = "russia" AND bronze > 5 |
48,930 | <question>: What package/option has sky arte hd as the television service? <context>: CREATE TABLE table_name_51 (package_option VARCHAR, television_service VARCHAR) | SELECT package_option FROM table_name_51 WHERE television_service = "sky arte hd" |
48,931 | <question>: What language has NO, as the HDTV, sky famiglia as the package/option, and national geographic channel as the television service? <context>: CREATE TABLE table_name_23 (language VARCHAR, television_service VARCHAR, hdtv VARCHAR, package_option VARCHAR) | SELECT language FROM table_name_23 WHERE hdtv = "no" AND package_option = "sky famiglia" AND television_service = "national geographic channel" |
48,932 | <question>: What language has sky famiglia as the package/option? <context>: CREATE TABLE table_name_82 (language VARCHAR, package_option VARCHAR) | SELECT language FROM table_name_82 WHERE package_option = "sky famiglia" |
48,933 | <question>: What language has viaggi as the content? <context>: CREATE TABLE table_name_65 (language VARCHAR, content VARCHAR) | SELECT language FROM table_name_65 WHERE content = "viaggi" |
48,934 | <question>: What television service has italian as the language, and sky famiglia as the package option? <context>: CREATE TABLE table_name_20 (television_service VARCHAR, language VARCHAR, package_option VARCHAR) | SELECT television_service FROM table_name_20 WHERE language = "italian" AND package_option = "sky famiglia" |
48,935 | <question>: What package/option has documentaries as the content, yes as the HDTV, and a television service of history hd? <context>: CREATE TABLE table_name_56 (package_option VARCHAR, television_service VARCHAR, content VARCHAR, hdtv VARCHAR) | SELECT package_option FROM table_name_56 WHERE content = "documentaries" AND hdtv = "yes" AND television_service = "history hd" |
48,936 | <question>: What was the resolution for the match that ended by Submission (armbar)? <context>: CREATE TABLE table_name_91 (res VARCHAR, method VARCHAR) | SELECT res FROM table_name_91 WHERE method = "submission (armbar)" |
48,937 | <question>: What was the total time for the match that ocurred in Round 3 with opponent Keith Wisniewski? <context>: CREATE TABLE table_name_39 (time VARCHAR, round VARCHAR, opponent VARCHAR) | SELECT time FROM table_name_39 WHERE round = "3" AND opponent = "keith wisniewski" |
48,938 | <question>: Where did the match with opponent Laverne Clark occur? <context>: CREATE TABLE table_name_14 (location VARCHAR, opponent VARCHAR) | SELECT location FROM table_name_14 WHERE opponent = "laverne clark" |
48,939 | <question>: What is the Diameter (mi) when the Longitude is 79.8° e? <context>: CREATE TABLE table_name_65 (diameter__mi_ VARCHAR, longitude VARCHAR) | SELECT diameter__mi_ FROM table_name_65 WHERE longitude = "79.8° e" |
48,940 | <question>: What is the Latitude when the Diameter (km) is 13km, and the Longitude is 72.9° e? <context>: CREATE TABLE table_name_94 (latitude VARCHAR, diameter__km_ VARCHAR, longitude VARCHAR) | SELECT latitude FROM table_name_94 WHERE diameter__km_ = "13km" AND longitude = "72.9° e" |
48,941 | <question>: What shows for the Longitude when there is a Diameter (km) of 31km? <context>: CREATE TABLE table_name_54 (longitude VARCHAR, diameter__km_ VARCHAR) | SELECT longitude FROM table_name_54 WHERE diameter__km_ = "31km" |
48,942 | <question>: What shows for the Diameter (km) when the Diameter (mi) is 8mi, and a Gill is e? <context>: CREATE TABLE table_name_66 (diameter__km_ VARCHAR, diameter__mi_ VARCHAR, gill VARCHAR) | SELECT diameter__km_ FROM table_name_66 WHERE diameter__mi_ = "8mi" AND gill = "e" |
48,943 | <question>: What shows as the Diameter (km) when the Diameter (mi) is 5mi? <context>: CREATE TABLE table_name_5 (diameter__km_ VARCHAR, diameter__mi_ VARCHAR) | SELECT diameter__km_ FROM table_name_5 WHERE diameter__mi_ = "5mi" |
48,944 | <question>: What was the lowest squad with 0 goals? <context>: CREATE TABLE table_name_81 (squad_no INTEGER, goals INTEGER) | SELECT MIN(squad_no) FROM table_name_81 WHERE goals < 0 |
48,945 | <question>: What is the number for overall for angelo craig? <context>: CREATE TABLE table_name_30 (overall VARCHAR, player VARCHAR) | SELECT COUNT(overall) FROM table_name_30 WHERE player = "angelo craig" |
48,946 | <question>: What is the Round when there is an overall of 246? <context>: CREATE TABLE table_name_85 (round VARCHAR, overall VARCHAR) | SELECT round FROM table_name_85 WHERE overall = 246 |
48,947 | <question>: What is the lowest Overall for the wide receiver in a round less than 2? <context>: CREATE TABLE table_name_93 (overall INTEGER, position VARCHAR, round VARCHAR) | SELECT MIN(overall) FROM table_name_93 WHERE position = "wide receiver" AND round < 2 |
48,948 | <question>: What is the Player from appalachian state? <context>: CREATE TABLE table_name_73 (player VARCHAR, college VARCHAR) | SELECT player FROM table_name_73 WHERE college = "appalachian state" |
48,949 | <question>: What is the Production Cost with a Date that is february 2000? <context>: CREATE TABLE table_name_34 (production_cost VARCHAR, date VARCHAR) | SELECT production_cost FROM table_name_34 WHERE date = "february 2000" |
48,950 | <question>: What is the Singapore Gross with a Title that is 2000? <context>: CREATE TABLE table_name_74 (singapore_gross VARCHAR, title VARCHAR) | SELECT singapore_gross FROM table_name_74 WHERE title = "2000" |
48,951 | <question>: What is the Singapore Gross with a Producer that is 2000? <context>: CREATE TABLE table_name_72 (singapore_gross VARCHAR, producer VARCHAR) | SELECT singapore_gross FROM table_name_72 WHERE producer = "2000" |
48,952 | <question>: What is Average Height, when Weight is less than 93, when Spike is less than 336, and when Block is 305? <context>: CREATE TABLE table_name_82 (height INTEGER, block VARCHAR, weight VARCHAR, spike VARCHAR) | SELECT AVG(height) FROM table_name_82 WHERE weight < 93 AND spike < 336 AND block = 305 |
48,953 | <question>: What is Name, when Block is 320, when Spike is more than 336, and when Date of Birth is 12.10.1978? <context>: CREATE TABLE table_name_39 (name VARCHAR, date_of_birth VARCHAR, block VARCHAR, spike VARCHAR) | SELECT name FROM table_name_39 WHERE block = 320 AND spike > 336 AND date_of_birth = "12.10.1978" |
48,954 | <question>: What is the total number of Block(s), when Spike is less than 341, when Weight is greater than 82, and when Name is Theodoros Baev? <context>: CREATE TABLE table_name_41 (block VARCHAR, name VARCHAR, spike VARCHAR, weight VARCHAR) | SELECT COUNT(block) FROM table_name_41 WHERE spike < 341 AND weight > 82 AND name = "theodoros baev" |
48,955 | <question>: What is Name, when Spike is greater than 343, and when Date of Birth is 02.03.1973? <context>: CREATE TABLE table_name_98 (name VARCHAR, spike VARCHAR, date_of_birth VARCHAR) | SELECT name FROM table_name_98 WHERE spike > 343 AND date_of_birth = "02.03.1973" |
48,956 | <question>: What was the date of the Paco Rabanne Open de France? <context>: CREATE TABLE table_name_95 (date VARCHAR, tournament VARCHAR) | SELECT date FROM table_name_95 WHERE tournament = "paco rabanne open de france" |
48,957 | <question>: On which date did Ian Mosey finish runner-up? <context>: CREATE TABLE table_name_49 (date VARCHAR, runner_s__up VARCHAR) | SELECT date FROM table_name_49 WHERE runner_s__up = "ian mosey" |
48,958 | <question>: What set 2 has a set 4 of 21-25? <context>: CREATE TABLE table_name_74 (set_2 VARCHAR, set_4 VARCHAR) | SELECT set_2 FROM table_name_74 WHERE set_4 = "21-25" |
48,959 | <question>: What was the score when set 3 was 26-28? <context>: CREATE TABLE table_name_78 (score VARCHAR, set_3 VARCHAR) | SELECT score FROM table_name_78 WHERE set_3 = "26-28" |
48,960 | <question>: When was set 3 of 18-25? <context>: CREATE TABLE table_name_2 (date VARCHAR, set_3 VARCHAR) | SELECT date FROM table_name_2 WHERE set_3 = "18-25" |
48,961 | <question>: Who was the away captain with a result of Eng by 1 wkt? <context>: CREATE TABLE table_name_43 (away_captain VARCHAR, result VARCHAR) | SELECT away_captain FROM table_name_43 WHERE result = "eng by 1 wkt" |
48,962 | <question>: On what date was the result Eng by 1 wkt? <context>: CREATE TABLE table_name_79 (date VARCHAR, result VARCHAR) | SELECT date FROM table_name_79 WHERE result = "eng by 1 wkt" |
48,963 | <question>: On what date was Arthur Jones the away captain at Sydney Cricket Ground? <context>: CREATE TABLE table_name_33 (date VARCHAR, away_captain VARCHAR, venue VARCHAR) | SELECT date FROM table_name_33 WHERE away_captain = "arthur jones" AND venue = "sydney cricket ground" |
48,964 | <question>: What is the highest place for song that was draw number 6? <context>: CREATE TABLE table_name_83 (place INTEGER, draw VARCHAR) | SELECT MAX(place) FROM table_name_83 WHERE draw = 6 |
48,965 | <question>: What was the result of the game on November 6, 1988? <context>: CREATE TABLE table_name_61 (result VARCHAR, date VARCHAR) | SELECT result FROM table_name_61 WHERE date = "november 6, 1988" |
48,966 | <question>: What was the date of the game against the Los Angeles Rams? <context>: CREATE TABLE table_name_60 (date VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_60 WHERE opponent = "los angeles rams" |
48,967 | <question>: What is the total with a 25-19 set 2 on Jun 17? <context>: CREATE TABLE table_name_57 (total VARCHAR, set_2 VARCHAR, date VARCHAR) | SELECT total FROM table_name_57 WHERE set_2 = "25-19" AND date = "jun 17" |
48,968 | <question>: What is the set 4 with a 2-3 score? <context>: CREATE TABLE table_name_73 (set_4 VARCHAR, score VARCHAR) | SELECT set_4 FROM table_name_73 WHERE score = "2-3" |
48,969 | <question>: What is the set 5 with a 19-25 set 1? <context>: CREATE TABLE table_name_44 (set_5 VARCHAR, set_1 VARCHAR) | SELECT set_5 FROM table_name_44 WHERE set_1 = "19-25" |
48,970 | <question>: What is the set 1 with a 28-30 set 4? <context>: CREATE TABLE table_name_67 (set_1 VARCHAR, set_4 VARCHAR) | SELECT set_1 FROM table_name_67 WHERE set_4 = "28-30" |
48,971 | <question>: What is the result when there's less than 2 goals? <context>: CREATE TABLE table_name_46 (result VARCHAR, goal INTEGER) | SELECT result FROM table_name_46 WHERE goal < 2 |
48,972 | <question>: What is the score when there are less than 2 goals? <context>: CREATE TABLE table_name_18 (score VARCHAR, goal INTEGER) | SELECT score FROM table_name_18 WHERE goal < 2 |
48,973 | <question>: How many points on average had a position smaller than 8, 16 plays, and a lost larger than 9? <context>: CREATE TABLE table_name_20 (points INTEGER, lost VARCHAR, position VARCHAR, played VARCHAR) | SELECT AVG(points) FROM table_name_20 WHERE position < 8 AND played = 16 AND lost > 9 |
48,974 | <question>: What was the lowest Attendance when the Opponent was Maryland? <context>: CREATE TABLE table_name_4 (attendance INTEGER, opponent VARCHAR) | SELECT MIN(attendance) FROM table_name_4 WHERE opponent = "maryland" |
48,975 | <question>: Which Network has a Local name of moj tata je bolji od tvog tate? <context>: CREATE TABLE table_name_56 (network VARCHAR, local_name VARCHAR) | SELECT network FROM table_name_56 WHERE local_name = "moj tata je bolji od tvog tate" |
48,976 | <question>: Which Country has a Network of channel 1? <context>: CREATE TABLE table_name_97 (country VARCHAR, network VARCHAR) | SELECT country FROM table_name_97 WHERE network = "channel 1" |
48,977 | <question>: Which Country has a Network of nelonen? <context>: CREATE TABLE table_name_61 (country VARCHAR, network VARCHAR) | SELECT country FROM table_name_61 WHERE network = "nelonen" |
48,978 | <question>: Which Local name has a Network of nova tv? <context>: CREATE TABLE table_name_60 (local_name VARCHAR, network VARCHAR) | SELECT local_name FROM table_name_60 WHERE network = "nova tv" |
48,979 | <question>: Which Local name has a Network of tvn? <context>: CREATE TABLE table_name_36 (local_name VARCHAR, network VARCHAR) | SELECT local_name FROM table_name_36 WHERE network = "tvn" |
48,980 | <question>: Which Country has a Host of miguel esteban? <context>: CREATE TABLE table_name_18 (country VARCHAR, host VARCHAR) | SELECT country FROM table_name_18 WHERE host = "miguel esteban" |
48,981 | <question>: Can you tell me the lowest Chapter that has the Pinyin of dehua, and the Articles smaller than 16? <context>: CREATE TABLE table_name_54 (chapter INTEGER, pinyin VARCHAR, articles VARCHAR) | SELECT MIN(chapter) FROM table_name_54 WHERE pinyin = "dehua" AND articles < 16 |
48,982 | <question>: Can you tell me the average Chapter that has Articles smaller than 15? <context>: CREATE TABLE table_name_48 (chapter INTEGER, articles INTEGER) | SELECT AVG(chapter) FROM table_name_48 WHERE articles < 15 |
48,983 | <question>: Can you tell me the Chinese that has the Chapter larger than 4, and the English Translation of food transformations? <context>: CREATE TABLE table_name_7 (chinese VARCHAR, chapter VARCHAR, english_translation VARCHAR) | SELECT chinese FROM table_name_7 WHERE chapter > 4 AND english_translation = "food transformations" |
48,984 | <question>: Can you tell me the English Translation that has the Articles of 24? <context>: CREATE TABLE table_name_44 (english_translation VARCHAR, articles VARCHAR) | SELECT english_translation FROM table_name_44 WHERE articles = 24 |
48,985 | <question>: What shows for ICAO when the IATA is sin? <context>: CREATE TABLE table_name_83 (icao VARCHAR, iata VARCHAR) | SELECT icao FROM table_name_83 WHERE iata = "sin" |
48,986 | <question>: What is the IATA when France was the country, and the ICAO was lfrn? <context>: CREATE TABLE table_name_72 (iata VARCHAR, country VARCHAR, icao VARCHAR) | SELECT iata FROM table_name_72 WHERE country = "france" AND icao = "lfrn" |
48,987 | <question>: What is the Airport when France was the country, and Montpellier was the city? <context>: CREATE TABLE table_name_82 (airport VARCHAR, country VARCHAR, city VARCHAR) | SELECT airport FROM table_name_82 WHERE country = "france" AND city = "montpellier" |
48,988 | <question>: What is the ICAO for luqa airport? <context>: CREATE TABLE table_name_66 (icao VARCHAR, airport VARCHAR) | SELECT icao FROM table_name_66 WHERE airport = "luqa airport" |
48,989 | <question>: What is the Airport for New York City? <context>: CREATE TABLE table_name_30 (airport VARCHAR, city VARCHAR) | SELECT airport FROM table_name_30 WHERE city = "new york" |
48,990 | <question>: What is the Country when the IATA was osl? <context>: CREATE TABLE table_name_94 (country VARCHAR, iata VARCHAR) | SELECT country FROM table_name_94 WHERE iata = "osl" |
48,991 | <question>: Which Division has a Year larger than 1996,a Regular Season of 4th, and a Playoffs of final? <context>: CREATE TABLE table_name_76 (division VARCHAR, playoffs VARCHAR, year VARCHAR, regular_season VARCHAR) | SELECT division FROM table_name_76 WHERE year > 1996 AND regular_season = "4th" AND playoffs = "final" |
48,992 | <question>: Which League that has a Open Cup of 1st round, and a Year of 2009? <context>: CREATE TABLE table_name_99 (league VARCHAR, open_cup VARCHAR, year VARCHAR) | SELECT league FROM table_name_99 WHERE open_cup = "1st round" AND year = 2009 |
48,993 | <question>: Which Playoffs has a Division of 2 and a Regular Season of 4th, southeast? <context>: CREATE TABLE table_name_50 (playoffs VARCHAR, division VARCHAR, regular_season VARCHAR) | SELECT playoffs FROM table_name_50 WHERE division = "2" AND regular_season = "4th, southeast" |
48,994 | <question>: What are the least amount of points that have points for greater than 438, and points against greater than 943? <context>: CREATE TABLE table_name_6 (points INTEGER, points_for VARCHAR, points_against VARCHAR) | SELECT MIN(points) FROM table_name_6 WHERE points_for > 438 AND points_against > 943 |
48,995 | <question>: What are the highest losses that have points agaisnt less than 956, high park demons as the club, and points less than 16? <context>: CREATE TABLE table_name_93 (loses INTEGER, points VARCHAR, points_against VARCHAR, club VARCHAR) | SELECT MAX(loses) FROM table_name_93 WHERE points_against < 956 AND club = "high park demons" AND points < 16 |
48,996 | <question>: What club has losses greater than 1, 4 for the wins, with points against less than 894? <context>: CREATE TABLE table_name_83 (club VARCHAR, points_against VARCHAR, loses VARCHAR, wins VARCHAR) | SELECT club FROM table_name_83 WHERE loses > 1 AND wins = 4 AND points_against < 894 |
48,997 | <question>: How many losses have points against greater than 592, with high park demons as the club, and points for greater than 631? <context>: CREATE TABLE table_name_45 (loses VARCHAR, points_for VARCHAR, points_against VARCHAR, club VARCHAR) | SELECT COUNT(loses) FROM table_name_45 WHERE points_against > 592 AND club = "high park demons" AND points_for > 631 |
48,998 | <question>: What losses have points for less than 1175, wins greater than 2, points against greater than 894, and 24 as the points? <context>: CREATE TABLE table_name_84 (loses VARCHAR, points VARCHAR, points_against VARCHAR, points_for VARCHAR, wins VARCHAR) | SELECT loses FROM table_name_84 WHERE points_for < 1175 AND wins > 2 AND points_against > 894 AND points = 24 |
48,999 | <question>: What's the smallest track written by dennis linde that's 2:50 minutes long <context>: CREATE TABLE table_name_37 (track INTEGER, writer_s_ VARCHAR, time VARCHAR) | SELECT MIN(track) FROM table_name_37 WHERE writer_s_ = "dennis linde" AND time = "2:50" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.