text
stringlengths 114
1.06k
|
---|
### question: Which Score has a High assists of whalen (5)? ### answer: SELECT score FROM table_name_40 WHERE high_assists = "whalen (5)" ### context: CREATE TABLE table_name_40 (score VARCHAR, high_assists VARCHAR) |
### question: Which High rebounds has a Game smaller than 9, and a Opponent of detroit? ### answer: SELECT high_rebounds FROM table_name_94 WHERE game < 9 AND opponent = "detroit" ### context: CREATE TABLE table_name_94 (high_rebounds VARCHAR, game VARCHAR, opponent VARCHAR) |
### question: Which High rebounds has a Score of w 81-69? ### answer: SELECT high_rebounds FROM table_name_62 WHERE score = "w 81-69" ### context: CREATE TABLE table_name_62 (high_rebounds VARCHAR, score VARCHAR) |
### question: Which Surface has a Result of fernando verdasco? ### answer: SELECT surface FROM table_name_10 WHERE result = "fernando verdasco" ### context: CREATE TABLE table_name_10 (surface VARCHAR, result VARCHAR) |
### question: How many events did clay win? ### answer: SELECT NOT COUNT AS event FROM table_name_42 WHERE winner = "clay" ### context: CREATE TABLE table_name_42 (COUNT VARCHAR, winner VARCHAR) |
### question: Which Surface has an Opponent of rafael nadal, and an Event of 2? ### answer: SELECT surface FROM table_name_59 WHERE opponent = "rafael nadal" AND NOT event = 2 ### context: CREATE TABLE table_name_59 (surface VARCHAR, opponent VARCHAR, event VARCHAR) |
### question: Who is iván navarro's opponent? ### answer: SELECT opponent FROM table_name_7 WHERE result = "iván navarro" ### context: CREATE TABLE table_name_7 (opponent VARCHAR, result VARCHAR) |
### question: Which Event has a Surface of semifinal, and a Winner of hard (i)? ### answer: SELECT NOT MAX AS event FROM table_name_23 WHERE surface = "semifinal" AND winner = "hard (i)" ### context: CREATE TABLE table_name_23 (MAX VARCHAR, surface VARCHAR, winner VARCHAR) |
### question: Who was the leader at the summit earlier than 1956, when Carcassonne shows for finish? ### answer: SELECT leader_at_the_summit FROM table_name_82 WHERE year < 1956 AND finish = "carcassonne" ### context: CREATE TABLE table_name_82 (leader_at_the_summit VARCHAR, year VARCHAR, finish VARCHAR) |
### question: What year was finish Toulouse, and stage was larger than 12? ### answer: SELECT SUM(year) FROM table_name_90 WHERE finish = "toulouse" AND stage > 12 ### context: CREATE TABLE table_name_90 (year INTEGER, finish VARCHAR, stage VARCHAR) |
### question: What is the highest stage number for a year later than 1948, leader at the summit was group, and finish was Bagnères-De-Bigorre? ### answer: SELECT MAX(stage) FROM table_name_36 WHERE year > 1948 AND leader_at_the_summit = "group" AND finish = "bagnères-de-bigorre" ### context: CREATE TABLE table_name_36 (stage INTEGER, finish VARCHAR, year VARCHAR, leader_at_the_summit VARCHAR) |
### question: which Vacator has a Reason for change of resigned november 10, 1965? ### answer: SELECT vacator FROM table_name_6 WHERE reason_for_change = "resigned november 10, 1965" ### context: CREATE TABLE table_name_6 (vacator VARCHAR, reason_for_change VARCHAR) |
### question: Which Reason has a State (class) of tennessee (2)? ### answer: SELECT reason_for_change FROM table_name_54 WHERE state__class_ = "tennessee (2)" ### context: CREATE TABLE table_name_54 (reason_for_change VARCHAR, state__class_ VARCHAR) |
### question: Which State (class) has a Successor of harry f. byrd, jr. (d)? Question ### answer: SELECT state__class_ FROM table_name_54 WHERE successor = "harry f. byrd, jr. (d)" ### context: CREATE TABLE table_name_54 (state__class_ VARCHAR, successor VARCHAR) |
### question: Which country has a Col (m) of 1374? ### answer: SELECT country FROM table_name_33 WHERE col__m_ = 1374 ### context: CREATE TABLE table_name_33 (country VARCHAR, col__m_ VARCHAR) |
### question: How many Games have Years at club of 1971–1974, and a Debut year larger than 1971? ### answer: SELECT SUM(games) FROM table_name_94 WHERE years_at_club = "1971–1974" AND debut_year > 1971 ### context: CREATE TABLE table_name_94 (games INTEGER, years_at_club VARCHAR, debut_year VARCHAR) |
### question: Which Games have Years at club of 1974–1975, and Goals of 4? ### answer: SELECT AVG(games) FROM table_name_89 WHERE years_at_club = "1974–1975" AND goals = 4 ### context: CREATE TABLE table_name_89 (games INTEGER, years_at_club VARCHAR, goals VARCHAR) |
### question: Which Years at club have Games smaller than 7, and Goals larger than 2, and a Player of john frazer? ### answer: SELECT years_at_club FROM table_name_10 WHERE games < 7 AND goals > 2 AND player = "john frazer" ### context: CREATE TABLE table_name_10 (years_at_club VARCHAR, player VARCHAR, games VARCHAR, goals VARCHAR) |
### question: Which Games have Years at club of 1977, and Goals of 17, and a Debut year smaller than 1977? ### answer: SELECT AVG(games) FROM table_name_5 WHERE years_at_club = "1977" AND goals = 17 AND debut_year < 1977 ### context: CREATE TABLE table_name_5 (games INTEGER, debut_year VARCHAR, years_at_club VARCHAR, goals VARCHAR) |
### question: Which Goals have Games smaller than 41, and a Player of mark amos? ### answer: SELECT MIN(goals) FROM table_name_57 WHERE games < 41 AND player = "mark amos" ### context: CREATE TABLE table_name_57 (goals INTEGER, games VARCHAR, player VARCHAR) |
### question: What is Melaine Walker's Rank? ### answer: SELECT SUM(rank) FROM table_name_78 WHERE name = "melaine walker" ### context: CREATE TABLE table_name_78 (rank INTEGER, name VARCHAR) |
### question: What is the Name of the Player with a Rank of 23 or less, Heat of 4 and Result of 55.91? ### answer: SELECT name FROM table_name_84 WHERE heat = 4 AND rank < 23 AND result = "55.91" ### context: CREATE TABLE table_name_84 (name VARCHAR, result VARCHAR, heat VARCHAR, rank VARCHAR) |
### question: What is the Heat of the Player with a Rank of 18 or less and Result of 55.15? ### answer: SELECT heat FROM table_name_54 WHERE rank < 18 AND result = "55.15" ### context: CREATE TABLE table_name_54 (heat VARCHAR, rank VARCHAR, result VARCHAR) |
### question: What is the quantity preserved for fleet number(s) 3000–3015? ### answer: SELECT quantity_preserved FROM table_name_11 WHERE fleet_number_s_ = "3000–3015" ### context: CREATE TABLE table_name_11 (quantity_preserved VARCHAR, fleet_number_s_ VARCHAR) |
### question: What manufacturer has a wheel arrangement of 4-6-6-4, and a Class of z-7? ### answer: SELECT manufacturer FROM table_name_34 WHERE wheel_arrangement = "4-6-6-4" AND class = "z-7" ### context: CREATE TABLE table_name_34 (manufacturer VARCHAR, wheel_arrangement VARCHAR, class VARCHAR) |
### question: What is the Year for fleet number 5000? ### answer: SELECT year_made FROM table_name_98 WHERE fleet_number_s_ = "5000" ### context: CREATE TABLE table_name_98 (year_made VARCHAR, fleet_number_s_ VARCHAR) |
### question: What year made has a Quantity made of 4? ### answer: SELECT year_made FROM table_name_63 WHERE quantity_made = "4" ### context: CREATE TABLE table_name_63 (year_made VARCHAR, quantity_made VARCHAR) |
### question: What is the quantity preserved for the serial number of mallet and simple articulated locomotives? ### answer: SELECT quantity_preserved FROM table_name_19 WHERE serial_numbers = "mallet and simple articulated locomotives" ### context: CREATE TABLE table_name_19 (quantity_preserved VARCHAR, serial_numbers VARCHAR) |
### question: How many silver medals did Estonia, which won more than 1 gold and less than 97 medals total, win? ### answer: SELECT silver FROM table_name_20 WHERE gold > 1 AND total < 97 AND nation = "estonia" ### context: CREATE TABLE table_name_20 (silver VARCHAR, nation VARCHAR, gold VARCHAR, total VARCHAR) |
### question: How many gold medals did Denmark win? ### answer: SELECT MIN(gold) FROM table_name_65 WHERE nation = "denmark" ### context: CREATE TABLE table_name_65 (gold INTEGER, nation VARCHAR) |
### question: What is the total number of gold medals won among nations that won more than 27 bronze and less than 305 medals total? ### answer: SELECT COUNT(gold) FROM table_name_59 WHERE bronze > 27 AND total < 305 ### context: CREATE TABLE table_name_59 (gold VARCHAR, bronze VARCHAR, total VARCHAR) |
### question: How many gold medals were won by the nation that won over 4 silver medals, over 14 bronze, and 97 medals total? ### answer: SELECT COUNT(gold) FROM table_name_88 WHERE silver > 4 AND bronze > 14 AND total = 97 ### context: CREATE TABLE table_name_88 (gold VARCHAR, total VARCHAR, silver VARCHAR, bronze VARCHAR) |
### question: What is the highest championship that has 1 as the league cup, and 17 as the total? ### answer: SELECT MAX(championship) FROM table_name_85 WHERE league_cup = 1 AND total = "17" ### context: CREATE TABLE table_name_85 (championship INTEGER, league_cup VARCHAR, total VARCHAR) |
### question: How many league cups have an FA Cup less than 0? ### answer: SELECT COUNT(league_cup) FROM table_name_70 WHERE fa_cup < 0 ### context: CREATE TABLE table_name_70 (league_cup VARCHAR, fa_cup INTEGER) |
### question: What is the average rank of west germany (frg), which has more than 1 silver, less than 11 gold, and 2 bronze medals? ### answer: SELECT AVG(rank) FROM table_name_48 WHERE silver > 1 AND gold < 11 AND bronze = 2 AND nation = "west germany (frg)" ### context: CREATE TABLE table_name_48 (rank INTEGER, nation VARCHAR, bronze VARCHAR, silver VARCHAR, gold VARCHAR) |
### question: What's the date when Yelena Isinbayeva for Russia was in Beijing, China? ### answer: SELECT date FROM table_name_82 WHERE nation = "russia" AND place = "beijing, china" AND athlete = "yelena isinbayeva" ### context: CREATE TABLE table_name_82 (date VARCHAR, athlete VARCHAR, nation VARCHAR, place VARCHAR) |
### question: What's the performance of Dire Tune? ### answer: SELECT performance FROM table_name_89 WHERE athlete = "dire tune" ### context: CREATE TABLE table_name_89 (performance VARCHAR, athlete VARCHAR) |
### question: What place had 14:11.15 as the performance? ### answer: SELECT place FROM table_name_33 WHERE performance = "14:11.15" ### context: CREATE TABLE table_name_33 (place VARCHAR, performance VARCHAR) |
### question: What's the event that had a performance of 14:11.15 by Ethiopia? ### answer: SELECT event FROM table_name_51 WHERE nation = "ethiopia" AND performance = "14:11.15" ### context: CREATE TABLE table_name_51 (event VARCHAR, nation VARCHAR, performance VARCHAR) |
### question: What was the position of the player picked after 94, by the Boston Patriots? ### answer: SELECT position FROM table_name_96 WHERE pick > 94 AND team = "boston patriots" ### context: CREATE TABLE table_name_96 (position VARCHAR, pick VARCHAR, team VARCHAR) |
### question: What college had the 93 pick? ### answer: SELECT college FROM table_name_50 WHERE pick = 93 ### context: CREATE TABLE table_name_50 (college VARCHAR, pick VARCHAR) |
### question: What venue has euro 2004 q. as the competition? ### answer: SELECT venue FROM table_name_60 WHERE competition = "euro 2004 q." ### context: CREATE TABLE table_name_60 (venue VARCHAR, competition VARCHAR) |
### question: What county is Whiteland Community School in? ### answer: SELECT county FROM table_name_72 WHERE school = "whiteland community" ### context: CREATE TABLE table_name_72 (county VARCHAR, school VARCHAR) |
### question: What county has a football team in IHSAA class AAAAA and a school macot of the Grizzly Cubs? ### answer: SELECT county FROM table_name_25 WHERE ihsaa_football_class = "aaaaa" AND mascot = "grizzly cubs" ### context: CREATE TABLE table_name_25 (county VARCHAR, ihsaa_football_class VARCHAR, mascot VARCHAR) |
### question: What county has a school mascot of the Pioneers? ### answer: SELECT county FROM table_name_71 WHERE mascot = "pioneers" ### context: CREATE TABLE table_name_71 (county VARCHAR, mascot VARCHAR) |
### question: What are the IHSAA classes of the Indianapolis schools? ### answer: SELECT ihsaa_class FROM table_name_34 WHERE location = "indianapolis" ### context: CREATE TABLE table_name_34 (ihsaa_class VARCHAR, location VARCHAR) |
### question: Which Song has Points smaller than 53, and a Place larger than 8, and a Draw larger than 1? ### answer: SELECT song FROM table_name_52 WHERE points < 53 AND place > 8 AND draw > 1 ### context: CREATE TABLE table_name_52 (song VARCHAR, draw VARCHAR, points VARCHAR, place VARCHAR) |
### question: What is the result for the Green-Communist party when the Left Bloc has 3.6%? ### answer: SELECT green_communist FROM table_name_64 WHERE left_bloc = "3.6%" ### context: CREATE TABLE table_name_64 (green_communist VARCHAR, left_bloc VARCHAR) |
### question: What is the result for the Green-Communist party when the Left Bloc has 3.0%? ### answer: SELECT green_communist FROM table_name_87 WHERE left_bloc = "3.0%" ### context: CREATE TABLE table_name_87 (green_communist VARCHAR, left_bloc VARCHAR) |
### question: What is the date released when the Left Bloc had 3.2%? ### answer: SELECT date_released FROM table_name_35 WHERE left_bloc = "3.2%" ### context: CREATE TABLE table_name_35 (date_released VARCHAR, left_bloc VARCHAR) |
### question: What is the cardinalatial order of the elector elevated circa 1116? ### answer: SELECT cardinalatial_order_and_title FROM table_name_26 WHERE elevated = "circa 1116" ### context: CREATE TABLE table_name_26 (cardinalatial_order_and_title VARCHAR, elevated VARCHAR) |
### question: When was the elector from pisa elevated? ### answer: SELECT elevated FROM table_name_13 WHERE nationality = "pisa" ### context: CREATE TABLE table_name_13 (elevated VARCHAR, nationality VARCHAR) |
### question: What is the cardinalatial order and title of bosone? ### answer: SELECT cardinalatial_order_and_title FROM table_name_92 WHERE elector = "bosone" ### context: CREATE TABLE table_name_92 (cardinalatial_order_and_title VARCHAR, elector VARCHAR) |
### question: Who is the elevator from crema? ### answer: SELECT elevator FROM table_name_83 WHERE nationality = "crema" ### context: CREATE TABLE table_name_83 (elevator VARCHAR, nationality VARCHAR) |
### question: What is the name of the swimmer from Australia in lane 4 with a heat larger than 4? ### answer: SELECT name FROM table_name_16 WHERE heat > 4 AND lane = 4 AND nationality = "australia" ### context: CREATE TABLE table_name_16 (name VARCHAR, nationality VARCHAR, heat VARCHAR, lane VARCHAR) |
### question: What is the lowest heat number for a swimmer with a time of 2:34.94? ### answer: SELECT MIN(heat) FROM table_name_5 WHERE time = "2:34.94" ### context: CREATE TABLE table_name_5 (heat INTEGER, time VARCHAR) |
### question: What is the rank of the player from Ukraine with react less than 0.26? ### answer: SELECT COUNT(rank) FROM table_name_29 WHERE nationality = "ukraine" AND react < 0.26 ### context: CREATE TABLE table_name_29 (rank VARCHAR, nationality VARCHAR, react VARCHAR) |
### question: What was the highest week with a w 21-17 result, and more than 45,254 in attendance? ### answer: SELECT MAX(week) FROM table_name_81 WHERE result = "w 21-17" AND attendance > 45 OFFSET 254 ### context: CREATE TABLE table_name_81 (week INTEGER, result VARCHAR, attendance VARCHAR) |
### question: What's the Proto-Germanic when the Old English is /d/? ### answer: SELECT proto_germanic FROM table_name_3 WHERE old_english = "/d/" ### context: CREATE TABLE table_name_3 (proto_germanic VARCHAR, old_english VARCHAR) |
### question: What's the Proto Germanic when then German is /s/ or /ts/? ### answer: SELECT proto_germanic FROM table_name_41 WHERE german = "/s/ or /ts/" ### context: CREATE TABLE table_name_41 (proto_germanic VARCHAR, german VARCHAR) |
### question: What's the Dutch when then Old English is /d/? ### answer: SELECT dutch FROM table_name_66 WHERE old_english = "/d/" ### context: CREATE TABLE table_name_66 (dutch VARCHAR, old_english VARCHAR) |
### question: What's the West Germanic when the German is /s/ or /ts/? ### answer: SELECT west_germanic FROM table_name_90 WHERE german = "/s/ or /ts/" ### context: CREATE TABLE table_name_90 (west_germanic VARCHAR, german VARCHAR) |
### question: What's the Proto-Germanic when the German is /t/? ### answer: SELECT proto_germanic FROM table_name_48 WHERE german = "/t/" ### context: CREATE TABLE table_name_48 (proto_germanic VARCHAR, german VARCHAR) |
### question: What is the to par for japan ### answer: SELECT to_par FROM table_name_49 WHERE country = "japan" ### context: CREATE TABLE table_name_49 (to_par VARCHAR, country VARCHAR) |
### question: what player has $187,500 and score 66-75-71-69=281 ### answer: SELECT player FROM table_name_4 WHERE money___$__ = "187,500" AND score = 66 - 75 - 71 - 69 = 281 ### context: CREATE TABLE table_name_4 (player VARCHAR, money___$__ VARCHAR, score VARCHAR) |
### question: what place has score 66-74-68-73=281 ### answer: SELECT place FROM table_name_74 WHERE score = 66 - 74 - 68 - 73 = 281 ### context: CREATE TABLE table_name_74 (place VARCHAR, score VARCHAR) |
### question: what player has place t10 ### answer: SELECT player FROM table_name_37 WHERE place = "t10" ### context: CREATE TABLE table_name_37 (player VARCHAR, place VARCHAR) |
### question: what is the to par for $242,813 with score 68-72-74-66=280 ### answer: SELECT to_par FROM table_name_83 WHERE money___$__ = "242,813" AND score = 68 - 72 - 74 - 66 = 280 ### context: CREATE TABLE table_name_83 (to_par VARCHAR, money___$__ VARCHAR, score VARCHAR) |
### question: Which School has a Size larger than 408, and a Mascot of pacers? ### answer: SELECT school FROM table_name_59 WHERE size > 408 AND mascot = "pacers" ### context: CREATE TABLE table_name_59 (school VARCHAR, size VARCHAR, mascot VARCHAR) |
### question: Which Size has an IHSAA Class of aa, and a Location of milan? ### answer: SELECT SUM(size) FROM table_name_76 WHERE ihsaa_class = "aa" AND location = "milan" ### context: CREATE TABLE table_name_76 (size INTEGER, ihsaa_class VARCHAR, location VARCHAR) |
### question: Which County has a Mascot of pacers? ### answer: SELECT county FROM table_name_36 WHERE mascot = "pacers" ### context: CREATE TABLE table_name_36 (county VARCHAR, mascot VARCHAR) |
### question: Which Mascot has a County of 69 ripley, and an IHSAA Class of aa, and a School of south ripley? ### answer: SELECT mascot FROM table_name_30 WHERE county = "69 ripley" AND ihsaa_class = "aa" AND school = "south ripley" ### context: CREATE TABLE table_name_30 (mascot VARCHAR, school VARCHAR, county VARCHAR, ihsaa_class VARCHAR) |
### question: Who was in Lane 5 and had a heat of 7? ### answer: SELECT name FROM table_name_32 WHERE heat = 7 AND lane = 5 ### context: CREATE TABLE table_name_32 (name VARCHAR, heat VARCHAR, lane VARCHAR) |
### question: What lane number was Hungary and had a heat of 4? ### answer: SELECT COUNT(lane) FROM table_name_22 WHERE heat = 4 AND nationality = "hungary" ### context: CREATE TABLE table_name_22 (lane VARCHAR, heat VARCHAR, nationality VARCHAR) |
### question: What's the date when the score was 690.3? ### answer: SELECT date FROM table_name_77 WHERE score = "690.3" ### context: CREATE TABLE table_name_77 (date VARCHAR, score VARCHAR) |
### question: What's the place of 1989 with a comp of ECH? ### answer: SELECT place FROM table_name_94 WHERE comp = "ech" AND date = "1989" ### context: CREATE TABLE table_name_94 (place VARCHAR, comp VARCHAR, date VARCHAR) |
### question: Who was the shooter with a score of 686.4? ### answer: SELECT shooter FROM table_name_59 WHERE score = "686.4" ### context: CREATE TABLE table_name_59 (shooter VARCHAR, score VARCHAR) |
### question: what is the year for borderlands 2? ### answer: SELECT year FROM table_name_81 WHERE game = "borderlands 2" ### context: CREATE TABLE table_name_81 (year VARCHAR, game VARCHAR) |
### question: what is the year for the game dead space 2? ### answer: SELECT year FROM table_name_53 WHERE game = "dead space 2" ### context: CREATE TABLE table_name_53 (year VARCHAR, game VARCHAR) |
### question: who is the developers for demon's souls? ### answer: SELECT developer_s_ FROM table_name_8 WHERE game = "demon's souls" ### context: CREATE TABLE table_name_8 (developer_s_ VARCHAR, game VARCHAR) |
### question: In what year is Zaxxon the Standalone? ### answer: SELECT year FROM table_name_88 WHERE standalone = "zaxxon" ### context: CREATE TABLE table_name_88 (year VARCHAR, standalone VARCHAR) |
### question: What is the Standalone in the year when Space Invaders is the Console? ### answer: SELECT standalone FROM table_name_43 WHERE console = "space invaders" ### context: CREATE TABLE table_name_43 (standalone VARCHAR, console VARCHAR) |
### question: What is the Standalone when Tron is the Arcade? ### answer: SELECT standalone FROM table_name_99 WHERE arcade = "tron" ### context: CREATE TABLE table_name_99 (standalone VARCHAR, arcade VARCHAR) |
### question: What is the Console when Space Invaders is the Arcade? ### answer: SELECT console FROM table_name_59 WHERE arcade = "space invaders" ### context: CREATE TABLE table_name_59 (console VARCHAR, arcade VARCHAR) |
### question: What position does the player from the Arizona Diamondbacks play? ### answer: SELECT position FROM table_name_6 WHERE team = "arizona diamondbacks" ### context: CREATE TABLE table_name_6 (position VARCHAR, team VARCHAR) |
### question: What school did P Jay Gehrke of the Kansas City Royals attend? ### answer: SELECT school FROM table_name_30 WHERE position = "p" AND team = "kansas city royals" AND player = "jay gehrke" ### context: CREATE TABLE table_name_30 (school VARCHAR, player VARCHAR, position VARCHAR, team VARCHAR) |
### question: What country does Adam van Koeverden play for? ### answer: SELECT country FROM table_name_31 WHERE athletes = "adam van koeverden" ### context: CREATE TABLE table_name_31 (country VARCHAR, athletes VARCHAR) |
### question: what is the pick when the school is jasper hs (jasper, texas)? ### answer: SELECT pick FROM table_name_63 WHERE school = "jasper hs (jasper, texas)" ### context: CREATE TABLE table_name_63 (pick VARCHAR, school VARCHAR) |
### question: who is the player when the position is p and the team is oakland athletics? ### answer: SELECT player FROM table_name_99 WHERE position = "p" AND team = "oakland athletics" ### context: CREATE TABLE table_name_99 (player VARCHAR, position VARCHAR, team VARCHAR) |
### question: what is the school when the team is new york yankees? ### answer: SELECT school FROM table_name_1 WHERE team = "new york yankees" ### context: CREATE TABLE table_name_1 (school VARCHAR, team VARCHAR) |
### question: who is the player when the school is spring hs (spring, texas)? ### answer: SELECT player FROM table_name_24 WHERE school = "spring hs (spring, texas)" ### context: CREATE TABLE table_name_24 (player VARCHAR, school VARCHAR) |
### question: What's the melamine content of 英雄牌嬰幼兒配方乳粉 having more than 1 samples failed? ### answer: SELECT melamine_content_mg_kg_ FROM table_name_31 WHERE samples_failed > 1 AND product = "英雄牌嬰幼兒配方乳粉" ### context: CREATE TABLE table_name_31 (melamine_content_mg_kg_ VARCHAR, samples_failed VARCHAR, product VARCHAR) |
### question: What's the most melamine content that has more than 1 samples failed and produced by Guangzhou Jinding Dairy Products Factory? ### answer: SELECT MAX(melamine_content_mg_kg_) FROM table_name_48 WHERE producer = "guangzhou jinding dairy products factory" AND samples_failed > 1 ### context: CREATE TABLE table_name_48 (melamine_content_mg_kg_ INTEGER, producer VARCHAR, samples_failed VARCHAR) |
### question: What's the product that has less than 98.6 melamine content, more than 1 sample failed and took less than 3 samples? ### answer: SELECT product FROM table_name_88 WHERE melamine_content_mg_kg_ < 98.6 AND samples_failed > 1 AND samples_taken < 3 ### context: CREATE TABLE table_name_88 (product VARCHAR, samples_taken VARCHAR, melamine_content_mg_kg_ VARCHAR, samples_failed VARCHAR) |
### question: What the most samples failed for 可淇牌嬰幼兒配方乳粉 and had less than 1 samples taken? ### answer: SELECT MAX(samples_failed) FROM table_name_77 WHERE product = "可淇牌嬰幼兒配方乳粉" AND samples_taken < 1 ### context: CREATE TABLE table_name_77 (samples_failed INTEGER, product VARCHAR, samples_taken VARCHAR) |
### question: How many samples taken from producer Qingdao Suncare Nutritional Technology with a melamine content less than 53.4? ### answer: SELECT SUM(samples_taken) FROM table_name_12 WHERE melamine_content_mg_kg_ < 53.4 AND producer = "qingdao suncare nutritional technology" ### context: CREATE TABLE table_name_12 (samples_taken INTEGER, melamine_content_mg_kg_ VARCHAR, producer VARCHAR) |
### question: What did the golfer from Australia score? ### answer: SELECT score FROM table_name_13 WHERE country = "australia" ### context: CREATE TABLE table_name_13 (score VARCHAR, country VARCHAR) |
### question: Which date has an Opera usage percentage of 5.1% and Internet Explorer usage of 59.5%? ### answer: SELECT date FROM table_name_64 WHERE opera = "5.1%" AND internet_explorer = "59.5%" ### context: CREATE TABLE table_name_64 (date VARCHAR, opera VARCHAR, internet_explorer VARCHAR) |
### question: Which source has a date of June 2008? ### answer: SELECT source FROM table_name_28 WHERE date = "june 2008" ### context: CREATE TABLE table_name_28 (source VARCHAR, date VARCHAR) |
### question: Which source date has an Internet Explorer usage of 60.2%? ### answer: SELECT source FROM table_name_52 WHERE internet_explorer = "60.2%" ### context: CREATE TABLE table_name_52 (source VARCHAR, internet_explorer VARCHAR) |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.