answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT record FROM table_name_22 WHERE attendance = "30,452"
What was the team's record at the game attended by 30,452?
CREATE TABLE table_name_22 (record VARCHAR, attendance VARCHAR)
SELECT MAX(bronze) FROM table_name_86 WHERE rank = 2 AND gold < 8
What is the largest bronze with a Rank of 2, and a Gold smaller than 8?
CREATE TABLE table_name_86 (bronze INTEGER, rank VARCHAR, gold VARCHAR)
SELECT ranking FROM table_name_95 WHERE nationality = "spain" AND goals = 26
What ranking has the nationality of spain and the goals of 26?
CREATE TABLE table_name_95 (ranking VARCHAR, nationality VARCHAR, goals VARCHAR)
SELECT iucn FROM table_name_98 WHERE est < 1998 AND reserve = "cockscomb basin"
What is the IUCN for the Cockscomb Basin reserve when the Est. is less than 1998?
CREATE TABLE table_name_98 (iucn VARCHAR, est VARCHAR, reserve VARCHAR)
SELECT COUNT(us_airdate) FROM table_19422702_1 WHERE no_in_season = 4
How many U.S. air dates were from an episode in Season 4?
CREATE TABLE table_19422702_1 (us_airdate VARCHAR, no_in_season VARCHAR)
SELECT COUNT(candidates) FROM table_1341549_33 WHERE party = "Democratic" AND district = "New York5"
how many candidates with party being democratic and dbeingtrict being new york5
CREATE TABLE table_1341549_33 (candidates VARCHAR, party VARCHAR, district VARCHAR)
SELECT record FROM table_10722506_6 WHERE round_of_32 = 0 AND conference = "Metro Atlantic"
What is the record when round of 32 is 0 and metro atlantic conference?
CREATE TABLE table_10722506_6 (record VARCHAR, round_of_32 VARCHAR, conference VARCHAR)
SELECT MAX(specific_impulse__s_) FROM table_15944_5 WHERE effective_exhaust_velocity__m_s_ = 4423
What is the maximum specific impulse with a 4423 m/s effective exhaust velocity?
CREATE TABLE table_15944_5 (specific_impulse__s_ INTEGER, effective_exhaust_velocity__m_s_ VARCHAR)
SELECT COUNT(district_home) FROM table_2841865_2 WHERE congress = "87th"
How many entries for district home are listed for the 87th congress?
CREATE TABLE table_2841865_2 (district_home VARCHAR, congress VARCHAR)
SELECT runner_up FROM table_name_87 WHERE event = "mancora peru classic"
What is Runner-up, when Event is Mancora Peru Classic?
CREATE TABLE table_name_87 (runner_up VARCHAR, event VARCHAR)
SELECT party FROM table_1341718_14 WHERE incumbent = "Sidney R. Yates"
what is the party when the incumbent is sidney r. yates?
CREATE TABLE table_1341718_14 (party VARCHAR, incumbent VARCHAR)
SELECT lost FROM table_13758945_1 WHERE points_for = "353"
What are the lost where points lost is 353?
CREATE TABLE table_13758945_1 (lost VARCHAR, points_for VARCHAR)
SELECT label FROM table_name_70 WHERE date = "14 november 2003" AND catalogue = "tojp 60121-22"
What is the Label for Date of 14 November 2003, and Catalogue tojp 60121-22?
CREATE TABLE table_name_70 (label VARCHAR, date VARCHAR, catalogue VARCHAR)
SELECT home_team AS score FROM table_name_79 WHERE crowd > 24 OFFSET 000
What was the home team's score at the game that had a crowd larger than 24,000?
CREATE TABLE table_name_79 (home_team VARCHAR, crowd INTEGER)
SELECT system FROM table_2296507_1 WHERE constellation = "Aries"
Name the system for aries
CREATE TABLE table_2296507_1 (system VARCHAR, constellation VARCHAR)
SELECT location FROM table_255188_3 WHERE nickname = "49ers"
What location is nicknamed the 49ers?
CREATE TABLE table_255188_3 (location VARCHAR, nickname VARCHAR)
SELECT to_par FROM table_name_71 WHERE player = "tom kite"
What was Tom Kite's to par?
CREATE TABLE table_name_71 (to_par VARCHAR, player VARCHAR)
SELECT home_team FROM table_name_9 WHERE away_team = "hawthorn"
Which Home team faced the Away team, Hawthorn?
CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR)
SELECT name FROM table_name_61 WHERE goals = 135
What is the Name with Goals that are 135?
CREATE TABLE table_name_61 (name VARCHAR, goals VARCHAR)
SELECT recnet FROM table_name_38 WHERE identifier = "cbf-fm-20"
What's the RECNet when the identifier is cbf-fm-20?
CREATE TABLE table_name_38 (recnet VARCHAR, identifier VARCHAR)
SELECT SUM(interview) FROM table_name_11 WHERE swimsuit > 7.6 AND province = "la vega" AND average < 8.38
Which Interview has a Swimsuit larger than 7.6, and a Province of la vega, and an Average smaller than 8.38?
CREATE TABLE table_name_11 (interview INTEGER, average VARCHAR, swimsuit VARCHAR, province VARCHAR)
SELECT result FROM table_name_32 WHERE opponent = "at detroit lions"
What is the result of the game that was played at Detroit Lions?
CREATE TABLE table_name_32 (result VARCHAR, opponent VARCHAR)
SELECT location_attendance FROM table_name_2 WHERE score = "4-5 (ot)"
What is Location/Attendance, when Score is "4-5 (OT)"?
CREATE TABLE table_name_2 (location_attendance VARCHAR, score VARCHAR)
SELECT runner_up FROM table_16331144_1 WHERE third_place = "Mohamed Ali"
Who was the runner-up when Mohamed Ali got third?
CREATE TABLE table_16331144_1 (runner_up VARCHAR, third_place VARCHAR)
SELECT date FROM table_name_77 WHERE competition = "uefa euro 2012 qualifying"
What date has the competition of uefa euro 2012 qualifying?
CREATE TABLE table_name_77 (date VARCHAR, competition VARCHAR)
SELECT MIN(money_list_rank) FROM table_22839669_12 WHERE year = 2001
What was his money list rank in 2001?
CREATE TABLE table_22839669_12 (money_list_rank INTEGER, year VARCHAR)
SELECT MIN(silver) FROM table_name_97 WHERE bronze = 40 AND gold > 42
What is the fewest number of silver medals received by a nation who received 40 bronze medals and more than 42 gold medals?
CREATE TABLE table_name_97 (silver INTEGER, bronze VARCHAR, gold VARCHAR)
SELECT displacement_cc FROM table_name_94 WHERE year = "1965"
What is the CC displacement for 1965?
CREATE TABLE table_name_94 (displacement_cc VARCHAR, year VARCHAR)
SELECT percentage FROM table_name_80 WHERE first_game = 1998
What Percentage did the First game of 1998 have?
CREATE TABLE table_name_80 (percentage VARCHAR, first_game VARCHAR)
SELECT winner_2nd FROM table_15926991_1 WHERE time = "1:35.98"
Which horse won with a time of 1:35.98 and what was their position?
CREATE TABLE table_15926991_1 (winner_2nd VARCHAR, time VARCHAR)
SELECT city FROM table_name_86 WHERE stadium = "estádio dr. magalhães pessoa"
What city is the Stadium estádio dr. magalhães pessoa in?
CREATE TABLE table_name_86 (city VARCHAR, stadium VARCHAR)
SELECT location FROM table_name_70 WHERE game = 42
What is Location, when Game is 42?
CREATE TABLE table_name_70 (location VARCHAR, game VARCHAR)
SELECT COUNT(attendance) FROM table_21436373_7 WHERE date_year = "2005"
When 2005 is the date/year how many measurements of attendance are there?
CREATE TABLE table_21436373_7 (attendance VARCHAR, date_year VARCHAR)
SELECT COUNT(*) FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t3.characteristic_name = "hot"
How many products have the characteristic named "hot"?
CREATE TABLE products (product_id VARCHAR); CREATE TABLE CHARACTERISTICS (characteristic_id VARCHAR, characteristic_name VARCHAR); CREATE TABLE product_characteristics (product_id VARCHAR, characteristic_id VARCHAR)
SELECT uk_broadcast_date FROM table_15211468_1 WHERE countries_visited = "USA"
What was the UK broadcast date for the episode which visited USA?
CREATE TABLE table_15211468_1 (uk_broadcast_date VARCHAR, countries_visited VARCHAR)
SELECT grid FROM table_name_84 WHERE driver = "jacques villeneuve"
Jacques Villeneuve was on what grid?
CREATE TABLE table_name_84 (grid VARCHAR, driver VARCHAR)
SELECT team FROM table_27734577_7 WHERE location_attendance = "Philips Arena 12,140"
What is every team with location attendance of Philips Arena 12,140?
CREATE TABLE table_27734577_7 (team VARCHAR, location_attendance VARCHAR)
SELECT social_sec_leeds FROM table_name_23 WHERE fixtures_sec = "n/a" AND general_sec = "n/a" AND season = "2005–2006"
Name the Social Sec Leeds has Fixtures Sec of n/a, and a General Sec of n/a, and the Season of 2005–2006?
CREATE TABLE table_name_23 (social_sec_leeds VARCHAR, season VARCHAR, fixtures_sec VARCHAR, general_sec VARCHAR)
SELECT years FROM table_name_15 WHERE tied < 31 AND pct = 0.5451
How many years for the team with under 31 ties and a percentage of 0.5451?
CREATE TABLE table_name_15 (years VARCHAR, tied VARCHAR, pct VARCHAR)
SELECT high_assists FROM table_22893781_6 WHERE date = "January 15"
Name the high assists for january 15
CREATE TABLE table_22893781_6 (high_assists VARCHAR, date VARCHAR)
SELECT current_conference FROM table_27816698_2 WHERE institution = "Boise State University"
Which conference did boise state university play at?
CREATE TABLE table_27816698_2 (current_conference VARCHAR, institution VARCHAR)
SELECT SUM(wins) FROM table_name_79 WHERE team = "sweden" AND played < 5
What is the sum of Wins, when Team is Sweden, and when Played is less than 5?
CREATE TABLE table_name_79 (wins INTEGER, team VARCHAR, played VARCHAR)
SELECT SUM(2000) FROM table_name_88 WHERE 1969 = 54.3 AND 1979 < 48.4
What is the 2000 number when the 1969 is 54.3, and the 1979 is less than 48.4?
CREATE TABLE table_name_88 (Id VARCHAR)
SELECT pressure_in_hpa__mbar_ FROM table_170097_1 WHERE vacuum_range = "Ultra high vacuum"
What is the pressure in ultra high vacuum?
CREATE TABLE table_170097_1 (pressure_in_hpa__mbar_ VARCHAR, vacuum_range VARCHAR)
SELECT candidates FROM table_1342331_11 WHERE incumbent = "John S. Wood"
What candidates ran in the election when john s. wood was the incumbent?
CREATE TABLE table_1342331_11 (candidates VARCHAR, incumbent VARCHAR)
SELECT report FROM table_2175685_1 WHERE average_speed__mph_ = "87.599"
What was the report when the average speed (mph) was 87.599?
CREATE TABLE table_2175685_1 (report VARCHAR, average_speed__mph_ VARCHAR)
SELECT home_team FROM table_name_36 WHERE away_team = "richmond"
What team was the home team when Richmond was the away team?
CREATE TABLE table_name_36 (home_team VARCHAR, away_team VARCHAR)
SELECT team FROM table_27383390_2 WHERE head_coach = "Ali Daei"
Which team has Ali Daei as head coach?
CREATE TABLE table_27383390_2 (team VARCHAR, head_coach VARCHAR)
SELECT SUM(round) FROM table_name_28 WHERE player = "todd fedoruk"
Which Round has a Player of todd fedoruk?
CREATE TABLE table_name_28 (round INTEGER, player VARCHAR)
SELECT county FROM table_name_64 WHERE opposition = "offaly"
Which County has an Opposition of offaly?
CREATE TABLE table_name_64 (county VARCHAR, opposition VARCHAR)
SELECT SUM(_number_of_episodes) FROM table_name_91 WHERE character = "nick lucas"
How many episodes had the character of Nick Lucas?
CREATE TABLE table_name_91 (_number_of_episodes INTEGER, character VARCHAR)
SELECT type FROM table_255602_1 WHERE area__km²_ = "155.77"
What are all the political types where area is 155.77?
CREATE TABLE table_255602_1 (type VARCHAR, area__km²_ VARCHAR)
SELECT MAX(attendance) FROM table_28181401_4 WHERE round = "Semi Final (2nd leg)"
When semi final (2nd leg) is the round what is the highest attendance?
CREATE TABLE table_28181401_4 (attendance INTEGER, round VARCHAR)
SELECT year FROM table_name_45 WHERE opponent_in_the_final = "john higgins category:articles with hcards"
What year was the opponent in the final john higgins category:articles with hcards?
CREATE TABLE table_name_45 (year VARCHAR, opponent_in_the_final VARCHAR)
SELECT T3.name FROM course AS T1 JOIN takes AS T2 ON T1.course_id = T2.course_id JOIN student AS T3 ON T2.id = T3.id WHERE T1.dept_name = 'Statistics'
Find the name of students who took some course offered by Statistics department.
CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE takes (course_id VARCHAR, id VARCHAR); CREATE TABLE course (course_id VARCHAR, dept_name VARCHAR)
SELECT AVG(lane) FROM table_name_93 WHERE time = "1:00.66"
What's the lane with a time of 1:00.66?
CREATE TABLE table_name_93 (lane INTEGER, time VARCHAR)
SELECT program FROM table_12591022_2 WHERE focus = "Risk Management and Regulation"
What is the program where the focus is risk management and regulation?
CREATE TABLE table_12591022_2 (program VARCHAR, focus VARCHAR)
SELECT opponent FROM table_name_46 WHERE arena = "staples center"
Who was the opponent at the Staples Center?
CREATE TABLE table_name_46 (opponent VARCHAR, arena VARCHAR)
SELECT COUNT(week) FROM table_name_79 WHERE date = "dec. 19"
What was the week number when they played on Dec. 19?
CREATE TABLE table_name_79 (week VARCHAR, date VARCHAR)
SELECT largest_ethnic_group__2002_ FROM table_2562572_25 WHERE cyrillic_name_other_names = "Дероње"
When дероње is the cyrillic name other names what is the largest ethnic group of 2002?
CREATE TABLE table_2562572_25 (largest_ethnic_group__2002_ VARCHAR, cyrillic_name_other_names VARCHAR)
SELECT MIN(losses) FROM table_name_58 WHERE against < 1464 AND draws < 1 AND wins > 7
Which Losses have an Against smaller than 1464, and Draws smaller than 1, and Wins larger than 7?
CREATE TABLE table_name_58 (losses INTEGER, wins VARCHAR, against VARCHAR, draws VARCHAR)
SELECT MAX(attendance) FROM table_name_75 WHERE date = "may 21"
What was the attendance on may 21?
CREATE TABLE table_name_75 (attendance INTEGER, date VARCHAR)
SELECT artist_name FROM song WHERE resolution > 500 GROUP BY languages ORDER BY COUNT(*) DESC LIMIT 1
What is the language that was used most often in songs with resolution above 500?
CREATE TABLE song (artist_name VARCHAR, languages VARCHAR, resolution INTEGER)
SELECT SUM(match) FROM table_name_39 WHERE opponent = "fcr 2001 duisburg"
Which match did FCR 2001 Duisburg participate as the opponent?
CREATE TABLE table_name_39 (match INTEGER, opponent VARCHAR)
SELECT COUNT(heat) FROM table_name_64 WHERE time = "2:08.54"
What's the heat that was timed 2:08.54?
CREATE TABLE table_name_64 (heat VARCHAR, time VARCHAR)
SELECT page__number FROM table_name_79 WHERE word__number > 5 AND bits = "18–22"
What is the page count and word count greater than 5 with Bits of 18–22?
CREATE TABLE table_name_79 (page__number VARCHAR, word__number VARCHAR, bits VARCHAR)
SELECT date FROM table_name_54 WHERE race_name = "gp città di camaiore"
What is the date of the gp città di camaiore race?
CREATE TABLE table_name_54 (date VARCHAR, race_name VARCHAR)
SELECT SUM(goals_for) FROM table_name_14 WHERE points < 30 AND position < 10 AND goals_against > 57
What is the sum of the goals with less than 30 points, a position less than 10, and more than 57 goals against?
CREATE TABLE table_name_14 (goals_for INTEGER, goals_against VARCHAR, points VARCHAR, position VARCHAR)
SELECT COUNT(party) FROM table_1341453_34 WHERE results = "Retired Democratic hold"
How many elections have resulted in retired democratic hold?
CREATE TABLE table_1341453_34 (party VARCHAR, results VARCHAR)
SELECT score FROM table_name_55 WHERE home = "etobicoke kangaroos"
What was the score of the game with the Etobicoke Kangaroos as the home team?
CREATE TABLE table_name_55 (score VARCHAR, home VARCHAR)
SELECT persian FROM table_name_84 WHERE domari = "na"
What Persian word has the same meaning as the Domari word na?
CREATE TABLE table_name_84 (persian VARCHAR, domari VARCHAR)
SELECT pick__number FROM table_24540893_6 WHERE school = "Western Ontario" AND position = "OL"
What numbered pick attended western ontario and is an OL?
CREATE TABLE table_24540893_6 (pick__number VARCHAR, school VARCHAR, position VARCHAR)
SELECT AVG(attendance) FROM table_name_68 WHERE opponent = "brewers" AND score = "6–3"
What is the average attendance when Brewers are the opponent with a score of 6–3?
CREATE TABLE table_name_68 (attendance INTEGER, opponent VARCHAR, score VARCHAR)
SELECT rank FROM table_name_14 WHERE assists = "13"
What was the rank of the player who had 13 assists?
CREATE TABLE table_name_14 (rank VARCHAR, assists VARCHAR)
SELECT country FROM table_17521433_1 WHERE swimsuit = "8.788"
What country had a swimsuit score of 8.788?
CREATE TABLE table_17521433_1 (country VARCHAR, swimsuit VARCHAR)
SELECT order__number FROM table_26250145_1 WHERE original_artist = "Sarah McLachlan"
What is the order # for the original artist sarah mclachlan?
CREATE TABLE table_26250145_1 (order__number VARCHAR, original_artist VARCHAR)
SELECT COUNT(payout___us) AS $__ FROM table_24427210_1 WHERE date = "December 28, 2009"
Name the total number of payout for december 28, 2009
CREATE TABLE table_24427210_1 (payout___us VARCHAR, date VARCHAR)
SELECT high_points FROM table_name_20 WHERE high_rebounds = "nick collison (14)"
Who scored the High points in the game with High rebounds by Nick Collison (14)?
CREATE TABLE table_name_20 (high_points VARCHAR, high_rebounds VARCHAR)
SELECT team FROM table_name_53 WHERE first_round = "1:00"
What Team had the first round of 1:00?
CREATE TABLE table_name_53 (team VARCHAR, first_round VARCHAR)
SELECT surface FROM table_name_15 WHERE opponent = "michael berrer"
On what surface was the opponent Michael Berrer?
CREATE TABLE table_name_15 (surface VARCHAR, opponent VARCHAR)
SELECT h_a_n FROM table_name_10 WHERE score = "104-109"
What is H/A/N, when Score is 104-109?
CREATE TABLE table_name_10 (h_a_n VARCHAR, score VARCHAR)
SELECT COUNT(total_career_titles) FROM table_23408094_14 WHERE span_of_years_led = 5
What were the total career titles of the player who led for 5 years?
CREATE TABLE table_23408094_14 (total_career_titles VARCHAR, span_of_years_led VARCHAR)
SELECT score FROM table_15869204_7 WHERE team = "San Antonio"
What was the score when they played against San Antonio?
CREATE TABLE table_15869204_7 (score VARCHAR, team VARCHAR)
SELECT icao FROM table_name_79 WHERE country = "france" AND iata = "ory"
What is the ICAO in France with an IATA of Ory?
CREATE TABLE table_name_79 (icao VARCHAR, country VARCHAR, iata VARCHAR)
SELECT COUNT(silver) FROM table_name_31 WHERE gold > 0 AND bronze > 1
Gold larger than 0, and a Bronze larger than 1 includes what total number of silver?
CREATE TABLE table_name_31 (silver VARCHAR, gold VARCHAR, bronze VARCHAR)
SELECT passed FROM table_256286_63 WHERE _percentage_yes = "42.87%"
Did the legislation pass that had 42.87% yes votes?
CREATE TABLE table_256286_63 (passed VARCHAR, _percentage_yes VARCHAR)
SELECT MIN(area__km²_) FROM table_name_26 WHERE province = "napoli" AND comune = "piano di sorrento" AND total__km²_ < 121.14
What is the Piano di Sorrento, Napoli lowest km2 with a total smaller than 121.14 km2?
CREATE TABLE table_name_26 (area__km²_ INTEGER, total__km²_ VARCHAR, province VARCHAR, comune VARCHAR)
SELECT mens_singles FROM table_12204717_1 WHERE year = 2009
Who won the mens singles in 2009?
CREATE TABLE table_12204717_1 (mens_singles VARCHAR, year VARCHAR)
SELECT MIN(points) FROM table_name_96 WHERE year = 2004
What are the lowest points in 2004?
CREATE TABLE table_name_96 (points INTEGER, year VARCHAR)
SELECT AVG(games) FROM table_name_65 WHERE season = "2003/2004" AND red_cards < 5
Which Games has a Season of 2003/2004, and a Red Cards smaller than 5?
CREATE TABLE table_name_65 (games INTEGER, season VARCHAR, red_cards VARCHAR)
SELECT T2.Name, T3.Location FROM member_attendance AS T1 JOIN member AS T2 ON T1.Member_ID = T2.Member_ID JOIN performance AS T3 ON T1.Performance_ID = T3.Performance_ID ORDER BY T2.Name
Show the names of members and the location of performances they attended in ascending alphabetical order of their names.
CREATE TABLE performance (Location VARCHAR, Performance_ID VARCHAR); CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE member_attendance (Member_ID VARCHAR, Performance_ID VARCHAR)
SELECT college FROM table_name_58 WHERE school = "liberty county high school"
What college did the player from Liberty County High School attend?
CREATE TABLE table_name_58 (college VARCHAR, school VARCHAR)
SELECT lost FROM table_name_40 WHERE try_bonus = "5" AND points_against = "298"
What is the lost when the try bonus is 5, and points against is 298?
CREATE TABLE table_name_40 (lost VARCHAR, try_bonus VARCHAR, points_against VARCHAR)
SELECT season FROM table_name_27 WHERE poles > 14
Which Season was the Poles greater than 14?
CREATE TABLE table_name_27 (season VARCHAR, poles INTEGER)
SELECT T1.editor_id, T1.Name, COUNT(*) FROM editor AS T1 JOIN journal_committee AS T2 ON T1.Editor_ID = T2.Editor_ID GROUP BY T1.editor_id
Show the id, name of each editor and the number of journal committees they are on.
CREATE TABLE editor (editor_id VARCHAR, Name VARCHAR, Editor_ID VARCHAR); CREATE TABLE journal_committee (Editor_ID VARCHAR)
SELECT SUM(field_goals) FROM table_name_14 WHERE player = "carter" AND extra_points < 0
How many field goals did Carter get when he had 0 extra points?
CREATE TABLE table_name_14 (field_goals INTEGER, player VARCHAR, extra_points VARCHAR)
SELECT date FROM table_name_98 WHERE score_in_the_final = "3–6, 6–3, 6–4" AND opponents_in_the_final = "penny barg paula smith"
What is the date of the final that has a score of 3–6, 6–3, 6–4 and penny barg paula smith was the opponent?
CREATE TABLE table_name_98 (date VARCHAR, score_in_the_final VARCHAR, opponents_in_the_final VARCHAR)
SELECT to_par FROM table_name_87 WHERE place = "t4" AND player = "wayne grady"
Which To par has a Place of t4, and wayne grady is in?
CREATE TABLE table_name_87 (to_par VARCHAR, place VARCHAR, player VARCHAR)
SELECT class FROM table_name_96 WHERE city_of_license = "appleton, wisconsin"
What was the class for Appleton, Wisconsin?
CREATE TABLE table_name_96 (class VARCHAR, city_of_license VARCHAR)
SELECT date FROM table_name_99 WHERE company_name = "samsung electronics co ltd" AND hardware_model = "gt-i9100"
When did Samsung Electronics Co LTD make the GT-i9100?
CREATE TABLE table_name_99 (date VARCHAR, company_name VARCHAR, hardware_model VARCHAR)