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