text
stringlengths
114
1.06k
### question: In italy, when the stolen ends were 10 and blank ends were under 14, what's the lowest ends won? ### answer: SELECT MIN(ends_won) FROM table_name_45 WHERE stolen_ends = 10 AND locale = "italy" AND blank_ends < 14 ### context: CREATE TABLE table_name_45 (ends_won INTEGER, blank_ends VARCHAR, stolen_ends VA...
### question: When ends won were below 57 but stolen ends are more than 14, what's the highest blank ends found? ### answer: SELECT MAX(blank_ends) FROM table_name_53 WHERE stolen_ends > 14 AND ends_won < 57 ### context: CREATE TABLE table_name_53 (blank_ends INTEGER, stolen_ends VARCHAR, ends_won VARCHAR)
### question: What was the attendance record for Leicester City? ### answer: SELECT attendance FROM table_name_17 WHERE home_team = "leicester city" ### context: CREATE TABLE table_name_17 (attendance VARCHAR, home_team VARCHAR)
### question: What was the attendance for Arsenal? ### answer: SELECT attendance FROM table_name_11 WHERE home_team = "arsenal" ### context: CREATE TABLE table_name_11 (attendance VARCHAR, home_team VARCHAR)
### question: Who was the home team against the Bolton Wanderers? ### answer: SELECT home_team FROM table_name_13 WHERE away_team = "bolton wanderers" ### context: CREATE TABLE table_name_13 (home_team VARCHAR, away_team VARCHAR)
### question: Who was the opponent of the match in South Dakota, United States which has 2 rounds? ### answer: SELECT opponent FROM table_name_63 WHERE round = 2 AND location = "south dakota, united states" ### context: CREATE TABLE table_name_63 (opponent VARCHAR, round VARCHAR, location VARCHAR)
### question: What is the total ATMs with off-site ATMs greater than 3672, and less than 1685 as the number of branches? ### answer: SELECT COUNT(total_atms) FROM table_name_32 WHERE off_site_atms > 3672 AND number_of_branches < 1685 ### context: CREATE TABLE table_name_32 (total_atms VARCHAR, off_site_atms VARCHAR, nu...
### question: What is the total number of branches when the on-site ATMS is 1548, and the off-site ATMs is bigger than 3672? ### answer: SELECT SUM(number_of_branches) FROM table_name_84 WHERE on_site_atms = 1548 AND off_site_atms > 3672 ### context: CREATE TABLE table_name_84 (number_of_branches INTEGER, on_site_atms ...
### question: What is the minimum total ATMs with new private sector banks as the bank type, and the on-site ATMs are greater than 1883? ### answer: SELECT MIN(total_atms) FROM table_name_42 WHERE bank_type = "new private sector banks" AND on_site_atms > 1883 ### context: CREATE TABLE table_name_42 (total_atms INTEGER,...
### question: What is the mean on-site ATMS that have off-site ATMs of 1567, and the total number of ATMs less than 4772? ### answer: SELECT AVG(on_site_atms) FROM table_name_20 WHERE off_site_atms = 1567 AND total_atms < 4772 ### context: CREATE TABLE table_name_20 (on_site_atms INTEGER, off_site_atms VARCHAR, total_a...
### question: With foreign banks as the bank type, and on-site ATMS less than 218, what is the average off-site ATMs? ### answer: SELECT AVG(off_site_atms) FROM table_name_66 WHERE bank_type = "foreign banks" AND on_site_atms < 218 ### context: CREATE TABLE table_name_66 (off_site_atms INTEGER, bank_type VARCHAR, on_si...
### question: What is Effect, when Weapon is "35mm/Small arms fire"? ### answer: SELECT effect FROM table_name_53 WHERE weapon = "35mm/small arms fire" ### context: CREATE TABLE table_name_53 (effect VARCHAR, weapon VARCHAR)
### question: What is Date, when Effect is "Shot Down", and when Place is "South of Stanley Airport"? ### answer: SELECT date FROM table_name_82 WHERE effect = "shot down" AND place = "south of stanley airport" ### context: CREATE TABLE table_name_82 (date VARCHAR, effect VARCHAR, place VARCHAR)
### question: What is Place, when Weapon is "35mm fire", and when Date is "27 May 1982"? ### answer: SELECT place FROM table_name_15 WHERE weapon = "35mm fire" AND date = "27 may 1982" ### context: CREATE TABLE table_name_15 (place VARCHAR, weapon VARCHAR, date VARCHAR)
### question: What is Pilot, when Place is "Goose Green", and when Date is "27 May 1982"? ### answer: SELECT pilot FROM table_name_8 WHERE place = "goose green" AND date = "27 may 1982" ### context: CREATE TABLE table_name_8 (pilot VARCHAR, place VARCHAR, date VARCHAR)
### question: What is Place, when Weapon is "35mm/Small arms fire"? ### answer: SELECT place FROM table_name_6 WHERE weapon = "35mm/small arms fire" ### context: CREATE TABLE table_name_6 (place VARCHAR, weapon VARCHAR)
### question: What is Pilot, when Weapon is "35mm fire", and when Date is "4 May 1982"? ### answer: SELECT pilot FROM table_name_48 WHERE weapon = "35mm fire" AND date = "4 may 1982" ### context: CREATE TABLE table_name_48 (pilot VARCHAR, weapon VARCHAR, date VARCHAR)
### question: Who is the player with a Jersey Number(s) greater than 30? ### answer: SELECT player FROM table_name_22 WHERE jersey_number_s_ > 30 ### context: CREATE TABLE table_name_22 (player VARCHAR, jersey_number_s_ INTEGER)
### question: What is the Years of the player with Jersey Number(s) of 44? ### answer: SELECT years FROM table_name_73 WHERE jersey_number_s_ = 44 ### context: CREATE TABLE table_name_73 (years VARCHAR, jersey_number_s_ VARCHAR)
### question: What was the population in North Jeolla? ### answer: SELECT population__2010_ FROM table_name_63 WHERE province = "north jeolla" ### context: CREATE TABLE table_name_63 (population__2010_ VARCHAR, province VARCHAR)
### question: What's Korean for 南楊州 Hanja? ### answer: SELECT korean FROM table_name_46 WHERE hanja = "南楊州" ### context: CREATE TABLE table_name_46 (korean VARCHAR, hanja VARCHAR)
### question: What's the Korean word for Pohang? ### answer: SELECT korean FROM table_name_89 WHERE city = "pohang" ### context: CREATE TABLE table_name_89 (korean VARCHAR, city VARCHAR)
### question: What's the team nickname of the private/catholic school whose enrollment is larger than 3,490? ### answer: SELECT team_nickname FROM table_name_25 WHERE affiliation = "private/catholic" AND enrollment > 3 OFFSET 490 ### context: CREATE TABLE table_name_25 (team_nickname VARCHAR, affiliation VARCHAR, enrol...
### question: What's the total enrollment of public schools located in Buffalo, New York that were founded after 1846? ### answer: SELECT SUM(enrollment) FROM table_name_62 WHERE location = "buffalo, new york" AND affiliation = "public" AND founded > 1846 ### context: CREATE TABLE table_name_62 (enrollment INTEGER, fou...
### question: What year did Bangkok University and Chunnam Dragons have a score of 0-0? ### answer: SELECT SUM(season) FROM table_name_31 WHERE team_1 = "bangkok university" AND score = "0-0" AND team_2 = "chunnam dragons" ### context: CREATE TABLE table_name_31 (season INTEGER, team_2 VARCHAR, team_1 VARCHAR, score VA...
### question: What is the transfer window for Christian Nerlinger? ### answer: SELECT transfer_window FROM table_name_23 WHERE name = "christian nerlinger" ### context: CREATE TABLE table_name_23 (transfer_window VARCHAR, name VARCHAR)
### question: What is the name for the end of contract because they're moving to Falkirk? ### answer: SELECT name FROM table_name_63 WHERE type = "end of contract" AND moving_to = "falkirk" ### context: CREATE TABLE table_name_63 (name VARCHAR, type VARCHAR, moving_to VARCHAR)
### question: What type of transfer window is winter in Ita? ### answer: SELECT type FROM table_name_8 WHERE transfer_window = "winter" AND nat = "ita" ### context: CREATE TABLE table_name_8 (type VARCHAR, transfer_window VARCHAR, nat VARCHAR)
### question: What is the type of loan and the transfer fee loan? ### answer: SELECT nat FROM table_name_32 WHERE type = "loan" AND transfer_fee = "loan" ### context: CREATE TABLE table_name_32 (nat VARCHAR, type VARCHAR, transfer_fee VARCHAR)
### question: On what date did a streak start on November 14? ### answer: SELECT streak FROM table_name_30 WHERE date = "november 14" ### context: CREATE TABLE table_name_30 (streak VARCHAR, date VARCHAR)
### question: What was the score of game 36? ### answer: SELECT score FROM table_name_97 WHERE game = 36 ### context: CREATE TABLE table_name_97 (score VARCHAR, game VARCHAR)
### question: Where was the third bridge over panama canal? ### answer: SELECT location FROM table_name_83 WHERE name = "third bridge over panama canal" ### context: CREATE TABLE table_name_83 (location VARCHAR, name VARCHAR)
### question: Name the Comp which has a Name of smith? ### answer: SELECT comp FROM table_name_71 WHERE name = "smith" ### context: CREATE TABLE table_name_71 (comp VARCHAR, name VARCHAR)
### question: Name the sum of Comp which has a Yds/game smaller than 209.5,brytus Name, and a Rating smaller than 100? ### answer: SELECT SUM(comp) FROM table_name_94 WHERE yds_game < 209.5 AND name = "brytus" AND rating < 100 ### context: CREATE TABLE table_name_94 (comp INTEGER, rating VARCHAR, yds_game VARCHAR, name...
### question: Name the highest Comp which has a Yds/game larger than 0, bostick, and a Rating smaller than 91.77? ### answer: SELECT MAX(comp) FROM table_name_19 WHERE yds_game > 0 AND name = "bostick" AND rating < 91.77 ### context: CREATE TABLE table_name_19 (comp INTEGER, rating VARCHAR, yds_game VARCHAR, name VARCH...
### question: Can you tell me the sum of Score that has the Place of t5, and the Country of united states, and the Player of jeff maggert? ### answer: SELECT SUM(score) FROM table_name_27 WHERE place = "t5" AND country = "united states" AND player = "jeff maggert" ### context: CREATE TABLE table_name_27 (score INTEGER,...
### question: Which event had a decision method? ### answer: SELECT event FROM table_name_12 WHERE method = "decision" ### context: CREATE TABLE table_name_12 (event VARCHAR, method VARCHAR)
### question: Where was the method of tko? ### answer: SELECT location FROM table_name_34 WHERE method = "tko" ### context: CREATE TABLE table_name_34 (location VARCHAR, method VARCHAR)
### question: What is the time of kenya, which is ranked 2? ### answer: SELECT time FROM table_name_30 WHERE nation = "kenya" AND rank = "2" ### context: CREATE TABLE table_name_30 (time VARCHAR, nation VARCHAR, rank VARCHAR)
### question: What race is on 26 June 2011? ### answer: SELECT race FROM table_name_18 WHERE date = "26 june 2011" ### context: CREATE TABLE table_name_18 (race VARCHAR, date VARCHAR)
### question: What is the time of the peachtree road race in kenya? ### answer: SELECT time FROM table_name_57 WHERE nation = "kenya" AND race = "peachtree road race" ### context: CREATE TABLE table_name_57 (time VARCHAR, nation VARCHAR, race VARCHAR)
### question: What is the score of team chicago? ### answer: SELECT score FROM table_name_64 WHERE team = "chicago" ### context: CREATE TABLE table_name_64 (score VARCHAR, team VARCHAR)
### question: What is the record of team utah? ### answer: SELECT record FROM table_name_61 WHERE team = "utah" ### context: CREATE TABLE table_name_61 (record VARCHAR, team VARCHAR)
### question: What is the location and attendance of game 63? ### answer: SELECT location_attendance FROM table_name_29 WHERE game = 63 ### context: CREATE TABLE table_name_29 (location_attendance VARCHAR, game VARCHAR)
### question: What is the nationality of the person who played small forward? ### answer: SELECT nationality FROM table_name_82 WHERE position = "small forward" ### context: CREATE TABLE table_name_82 (nationality VARCHAR, position VARCHAR)
### question: What position did Rich Manning play? ### answer: SELECT position FROM table_name_87 WHERE player = "rich manning" ### context: CREATE TABLE table_name_87 (position VARCHAR, player VARCHAR)
### question: What position did the player who was with the grizzlies from 2007-2009 play? ### answer: SELECT position FROM table_name_89 WHERE years_for_grizzlies = "2007-2009" ### context: CREATE TABLE table_name_89 (position VARCHAR, years_for_grizzlies VARCHAR)
### question: Who is the player in the 2008 draft with a pick greater than 5? ### answer: SELECT player FROM table_name_26 WHERE draft = 2008 AND pick > 5 ### context: CREATE TABLE table_name_26 (player VARCHAR, draft VARCHAR, pick VARCHAR)
### question: What is the total pick number of the player from a round greater than 1, a draft before 2002, and with the college/high school/club of western kentucky? ### answer: SELECT COUNT(pick) FROM table_name_51 WHERE round > 1 AND draft < 2002 AND college_high_school_club = "western kentucky" ### context: CREATE ...
### question: What is the lowest draft number with a 48 pick? ### answer: SELECT MIN(draft) FROM table_name_94 WHERE pick = 48 ### context: CREATE TABLE table_name_94 (draft INTEGER, pick VARCHAR)
### question: Which Name has a AAFC Team of los angeles dons, and a Position of fb, and a College of oklahoma a&m? ### answer: SELECT name FROM table_name_70 WHERE aafc_team = "los angeles dons" AND position = "fb" AND college = "oklahoma a&m" ### context: CREATE TABLE table_name_70 (name VARCHAR, college VARCHAR, aafc...
### question: Which Round has a College of tulsa, and a Pick larger than 61? ### answer: SELECT AVG(round) FROM table_name_78 WHERE college = "tulsa" AND pick > 61 ### context: CREATE TABLE table_name_78 (round INTEGER, college VARCHAR, pick VARCHAR)
### question: Which Position has a Round smaller than 5, and a Pick of 5? ### answer: SELECT position FROM table_name_75 WHERE round < 5 AND pick = 5 ### context: CREATE TABLE table_name_75 (position VARCHAR, round VARCHAR, pick VARCHAR)
### question: Which College has a Name of hardy brown? ### answer: SELECT college FROM table_name_93 WHERE name = "hardy brown" ### context: CREATE TABLE table_name_93 (college VARCHAR, name VARCHAR)
### question: Who was the winner for Peter Jackson Racing at Mallala Motor Sport Park? ### answer: SELECT winner FROM table_name_9 WHERE team = "peter jackson racing" AND circuit = "mallala motor sport park" ### context: CREATE TABLE table_name_9 (winner VARCHAR, team VARCHAR, circuit VARCHAR)
### question: What city had a series of atcc round 1? ### answer: SELECT city___state FROM table_name_96 WHERE series = "atcc round 1" ### context: CREATE TABLE table_name_96 (city___state VARCHAR, series VARCHAR)
### question: Who was the winner for ASTC round 8? ### answer: SELECT winner FROM table_name_63 WHERE series = "astc round 8" ### context: CREATE TABLE table_name_63 (winner VARCHAR, series VARCHAR)
### question: Which Nationality has a College/Junior/Club Team (League) of swift current broncos (wchl)? ### answer: SELECT nationality FROM table_name_84 WHERE college_junior_club_team__league_ = "swift current broncos (wchl)" ### context: CREATE TABLE table_name_84 (nationality VARCHAR, college_junior_club_team__leag...
### question: Which Round has a College/Junior/Club Team (League) of hamilton red wings (oha), and a Position of rw? ### answer: SELECT AVG(round) FROM table_name_63 WHERE college_junior_club_team__league_ = "hamilton red wings (oha)" AND position = "rw" ### context: CREATE TABLE table_name_63 (round INTEGER, college_j...
### question: Which Round has a Position of lw, and a College/Junior/Club Team (League) of swift current broncos (wchl)? ### answer: SELECT AVG(round) FROM table_name_11 WHERE position = "lw" AND college_junior_club_team__league_ = "swift current broncos (wchl)" ### context: CREATE TABLE table_name_11 (round INTEGER, p...
### question: What is round 10's nationality? ### answer: SELECT nationality FROM table_name_55 WHERE round = 10 ### context: CREATE TABLE table_name_55 (nationality VARCHAR, round VARCHAR)
### question: Which driver was in 8 rounds with a chassis of dallara f306? ### answer: SELECT driver FROM table_name_57 WHERE chassis = "dallara f306" AND rounds = "8" ### context: CREATE TABLE table_name_57 (driver VARCHAR, chassis VARCHAR, rounds VARCHAR)
### question: How many rounds did Nil Montserrat drive in? ### answer: SELECT rounds FROM table_name_94 WHERE driver = "nil montserrat" ### context: CREATE TABLE table_name_94 (rounds VARCHAR, driver VARCHAR)
### question: How many rounds did germán sánchez drive in where the chassis was dallara f308? ### answer: SELECT rounds FROM table_name_34 WHERE chassis = "dallara f308" AND driver = "germán sánchez" ### context: CREATE TABLE table_name_34 (rounds VARCHAR, chassis VARCHAR, driver VARCHAR)
### question: What is the chassis for Augusto Scalbi on Team RP Motorsport? ### answer: SELECT chassis FROM table_name_34 WHERE team = "rp motorsport" AND driver = "augusto scalbi" ### context: CREATE TABLE table_name_34 (chassis VARCHAR, team VARCHAR, driver VARCHAR)
### question: In what Week was the Result W 24-17? ### answer: SELECT MAX(week) FROM table_name_65 WHERE result = "w 24-17" ### context: CREATE TABLE table_name_65 (week INTEGER, result VARCHAR)
### question: What was the Week number on November 20, 1977? ### answer: SELECT SUM(week) FROM table_name_54 WHERE date = "november 20, 1977" ### context: CREATE TABLE table_name_54 (week INTEGER, date VARCHAR)
### question: Who played hte home team when the score was 2:1? ### answer: SELECT home FROM table_name_45 WHERE score = "2:1" ### context: CREATE TABLE table_name_45 (home VARCHAR, score VARCHAR)
### question: Who was the home team when real juventud was the away team when there were more than 1189 in attendance? ### answer: SELECT home FROM table_name_4 WHERE attendance > 1189 AND away = "real juventud" ### context: CREATE TABLE table_name_4 (home VARCHAR, attendance VARCHAR, away VARCHAR)
### question: What was the average attendance when marathon was the away team? ### answer: SELECT AVG(attendance) FROM table_name_6 WHERE away = "marathon" ### context: CREATE TABLE table_name_6 (attendance INTEGER, away VARCHAR)
### question: Who was the home team when the score was 0:1? ### answer: SELECT home FROM table_name_90 WHERE score = "0:1" ### context: CREATE TABLE table_name_90 (home VARCHAR, score VARCHAR)
### question: Which company in the oil and gas industry has assets (billion $) under 235.45, sales (billion $) larger than 159.29 and brings in profits (billion $) of 19.28? ### answer: SELECT company FROM table_name_86 WHERE assets__billion_$_ < 235.45 AND sales__billion_$_ > 159.29 AND industry = "oil and gas" AND pr...
### question: How many profits is the company that is headquartered in the USA, in the banking industry, and has sales (billion $) less than 98.64 bringing in? ### answer: SELECT SUM(profits__billion_) AS $_ FROM table_name_54 WHERE headquarters = "usa" AND industry = "banking" AND sales__billion_$_ < 98.64 ### context...
### question: What test had 49,608 students? ### answer: SELECT test FROM table_name_86 WHERE number_of_students = "49,608" ### context: CREATE TABLE table_name_86 (test VARCHAR, number_of_students VARCHAR)
### question: What was the Tie no when the Home team was Ramsgate? ### answer: SELECT tie_no FROM table_name_20 WHERE home_team = "ramsgate" ### context: CREATE TABLE table_name_20 (tie_no VARCHAR, home_team VARCHAR)
### question: What was the Tie no when the Home team was carshalton athletic? ### answer: SELECT tie_no FROM table_name_50 WHERE home_team = "carshalton athletic" ### context: CREATE TABLE table_name_50 (tie_no VARCHAR, home_team VARCHAR)
### question: Who was the away team when the home team was Ramsgate? ### answer: SELECT away_team FROM table_name_30 WHERE home_team = "ramsgate" ### context: CREATE TABLE table_name_30 (away_team VARCHAR, home_team VARCHAR)
### question: What was the home team when the Tie no was 60? ### answer: SELECT home_team FROM table_name_31 WHERE tie_no = "60" ### context: CREATE TABLE table_name_31 (home_team VARCHAR, tie_no VARCHAR)
### question: What was the Tie no when the Home team was wealdstone? ### answer: SELECT tie_no FROM table_name_34 WHERE home_team = "wealdstone" ### context: CREATE TABLE table_name_34 (tie_no VARCHAR, home_team VARCHAR)
### question: Which format has january 21, 2002 as the date? ### answer: SELECT format FROM table_name_11 WHERE date = "january 21, 2002" ### context: CREATE TABLE table_name_11 (format VARCHAR, date VARCHAR)
### question: What format has France as the region, with Universal Licensing Music (ulm) as the label? ### answer: SELECT format FROM table_name_72 WHERE region = "france" AND label = "universal licensing music (ulm)" ### context: CREATE TABLE table_name_72 (format VARCHAR, region VARCHAR, label VARCHAR)
### question: What label has the netherlands as the region, and magik muzik 802-1 as the catalog? ### answer: SELECT label FROM table_name_83 WHERE region = "netherlands" AND catalog = "magik muzik 802-1" ### context: CREATE TABLE table_name_83 (label VARCHAR, region VARCHAR, catalog VARCHAR)
### question: What is the record at 3:00? ### answer: SELECT record FROM table_name_71 WHERE time = "3:00" ### context: CREATE TABLE table_name_71 (record VARCHAR, time VARCHAR)
### question: What opponent used the Ko method, and a 6-0 record? ### answer: SELECT opponent FROM table_name_12 WHERE method = "ko" AND record = "6-0" ### context: CREATE TABLE table_name_12 (opponent VARCHAR, method VARCHAR, record VARCHAR)
### question: What is the ground of the game where the home team was Adelaide? ### answer: SELECT ground FROM table_name_88 WHERE home_team = "adelaide" ### context: CREATE TABLE table_name_88 (ground VARCHAR, home_team VARCHAR)
### question: What is Manufacturer, when Quantity Made is 2, and when Year Made is 1884? ### answer: SELECT manufacturer FROM table_name_25 WHERE quantity_made = "2" AND year_made = "1884" ### context: CREATE TABLE table_name_25 (manufacturer VARCHAR, quantity_made VARCHAR, year_made VARCHAR)
### question: What is Quantity Made, when Manufacturer is "Baldwin"? ### answer: SELECT quantity_made FROM table_name_3 WHERE manufacturer = "baldwin" ### context: CREATE TABLE table_name_3 (quantity_made VARCHAR, manufacturer VARCHAR)
### question: What is Wheel Arrangement, when Manufacturer is "Baldwin", and when Quantity Made is 12? ### answer: SELECT wheel_arrangement FROM table_name_52 WHERE manufacturer = "baldwin" AND quantity_made = "12" ### context: CREATE TABLE table_name_52 (wheel_arrangement VARCHAR, manufacturer VARCHAR, quantity_made V...
### question: What is Quantity Made, when Year Made is "4-4-0 — oooo — american"? ### answer: SELECT quantity_made FROM table_name_65 WHERE year_made = "4-4-0 — oooo — american" ### context: CREATE TABLE table_name_65 (quantity_made VARCHAR, year_made VARCHAR)
### question: What is Wheel Arrangement, when Quantity Made is 44? ### answer: SELECT wheel_arrangement FROM table_name_8 WHERE quantity_made = "44" ### context: CREATE TABLE table_name_8 (wheel_arrangement VARCHAR, quantity_made VARCHAR)
### question: What is Quantitiy Made, when Quantity Preserved is "4-4-0 — oooo — american"? ### answer: SELECT quantity_made FROM table_name_23 WHERE quantity_preserved = "4-4-0 — oooo — american" ### context: CREATE TABLE table_name_23 (quantity_made VARCHAR, quantity_preserved VARCHAR)
### question: What's the highest game found when the record is 2-1? ### answer: SELECT MAX(game) FROM table_name_10 WHERE record = "2-1" ### context: CREATE TABLE table_name_10 (game INTEGER, record VARCHAR)
### question: What was the game date when the opponent was Houston? ### answer: SELECT date FROM table_name_8 WHERE opponent = "houston" ### context: CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR)
### question: Can you tell me the highest Season that has the Home Team of chonburi, and the Away Team of melbourne victory? ### answer: SELECT MAX(season) FROM table_name_8 WHERE home_team = "chonburi" AND away_team = "melbourne victory" ### context: CREATE TABLE table_name_8 (season INTEGER, home_team VARCHAR, away_t...
### question: Can you tell me the Season that has the Score of 1-0? ### answer: SELECT season FROM table_name_34 WHERE score = "1-0" ### context: CREATE TABLE table_name_34 (season VARCHAR, score VARCHAR)
### question: WHAT IS THE LOWEST $50-1/2 OZ COIN WITH A 1997 YEAR AND $25-1/4 OZ LARGER THAN $27,100? ### answer: SELECT MIN AS $50___1_2_oz FROM table_name_59 WHERE year = 1997 AND $25___1_4_oz > 27 OFFSET 100 ### context: CREATE TABLE table_name_59 (MIN VARCHAR, year VARCHAR, $25___1_4_oz VARCHAR)
### question: WHAT IS THE LOWEST $25-1/4 OZ COIN WITH A $10-1/10 OZ OF $70,250? ### answer: SELECT MIN AS $25___1_4_oz FROM table_name_57 WHERE $10___1_10_oz = "70,250" ### context: CREATE TABLE table_name_57 (MIN VARCHAR, $10___1_10_oz VARCHAR)
### question: What is the model number for the GPU and 320 mhz? ### answer: SELECT model_number FROM table_name_98 WHERE gpu_frequency = "320 mhz" ### context: CREATE TABLE table_name_98 (model_number VARCHAR, gpu_frequency VARCHAR)
### question: What is the socket of the model atom e680t? ### answer: SELECT socket FROM table_name_55 WHERE model_number = "atom e680t" ### context: CREATE TABLE table_name_55 (socket VARCHAR, model_number VARCHAR)
### question: What is the memory for ct80618005844ab? ### answer: SELECT memory FROM table_name_78 WHERE part_number_s_ = "ct80618005844ab" ### context: CREATE TABLE table_name_78 (memory VARCHAR, part_number_s_ VARCHAR)