question
stringlengths 12
243
| answer
stringlengths 18
557
| context
stringlengths 27
489
|
---|---|---|
What was lost against 383 points? | SELECT lost FROM table_name_59 WHERE points_against = "383" | CREATE TABLE table_name_59 (lost VARCHAR, points_against VARCHAR) |
What is the best preliminary score from a contestant from Oklahoma with evening gown less than 8.853? | SELECT MAX(preliminary) FROM table_name_63 WHERE state = "oklahoma" AND evening_gown < 8.853 | CREATE TABLE table_name_63 (preliminary INTEGER, state VARCHAR, evening_gown VARCHAR) |
When Heather Christensen was featured in Week 2, who was the cyber girl for Week 3? | SELECT week_3 FROM table_name_11 WHERE week_2 = "heather christensen" | CREATE TABLE table_name_11 (week_3 VARCHAR, week_2 VARCHAR) |
What is the release date of vhs super callanetics? | SELECT release_date FROM table_name_96 WHERE format = "vhs" AND title = "super callanetics" | CREATE TABLE table_name_96 (release_date VARCHAR, format VARCHAR, title VARCHAR) |
who is the the聽club (city/town)聽with聽goals for/against聽being 14-2 | SELECT club__city_town_ FROM table_14181578_1 WHERE goals_for_against = "14-2" | CREATE TABLE table_14181578_1 (club__city_town_ VARCHAR, goals_for_against VARCHAR) |
A list of the top 5 countries by number of invoices. List country name and number of invoices. | SELECT billing_country, COUNT(*) FROM invoices GROUP BY billing_country ORDER BY COUNT(*) DESC LIMIT 5 | CREATE TABLE invoices (billing_country VARCHAR) |
What is the all games for Maryland? | SELECT all_games FROM table_16372244_1 WHERE team = "Maryland" | CREATE TABLE table_16372244_1 (all_games VARCHAR, team VARCHAR) |
What is the Position, when the Birthplace is Buffalo, New York? | SELECT position FROM table_name_92 WHERE birthplace = "buffalo, new york" | CREATE TABLE table_name_92 (position VARCHAR, birthplace VARCHAR) |
What was the away team at mcg? | SELECT away_team FROM table_name_44 WHERE venue = "mcg" | CREATE TABLE table_name_44 (away_team VARCHAR, venue VARCHAR) |
On which date was the Dodge Dealers Grand Prix GTS class race? | SELECT date FROM table_name_46 WHERE race = "dodge dealers grand prix" AND class = "gts" | CREATE TABLE table_name_46 (date VARCHAR, race VARCHAR, class VARCHAR) |
Who was the partner for the tournament in Lyon, France? | SELECT partnering FROM table_name_29 WHERE tournament = "lyon, france" | CREATE TABLE table_name_29 (partnering VARCHAR, tournament VARCHAR) |
What is the total number of cuts made when the top-25 is more than 0, and top-5 is more than 1? | SELECT COUNT(cuts_made) FROM table_name_68 WHERE top_25 > 0 AND top_5 > 1 | CREATE TABLE table_name_68 (cuts_made VARCHAR, top_25 VARCHAR, top_5 VARCHAR) |
What Airport's ICAO is ENTO? | SELECT airport FROM table_name_23 WHERE icao = "ento" | CREATE TABLE table_name_23 (airport VARCHAR, icao VARCHAR) |
List name of all amenities which Anonymous Donor Hall has, and sort the results in alphabetic order. | SELECT T1.amenity_name FROM dorm_amenity AS T1 JOIN has_amenity AS T2 ON T2.amenid = T1.amenid JOIN dorm AS T3 ON T2.dormid = T3.dormid WHERE T3.dorm_name = 'Anonymous Donor Hall' ORDER BY T1.amenity_name | CREATE TABLE has_amenity (amenid VARCHAR, dormid VARCHAR); CREATE TABLE dorm_amenity (amenity_name VARCHAR, amenid VARCHAR); CREATE TABLE dorm (dormid VARCHAR, dorm_name VARCHAR) |
What Date does the Name (location) Belyanitsky, Ivanovo, and Balino have? | SELECT date FROM table_name_28 WHERE name__location_ = "belyanitsky, ivanovo, and balino" | CREATE TABLE table_name_28 (date VARCHAR, name__location_ VARCHAR) |
What is the tally with a total larger than 8, Waterford was the opposition? | SELECT tally FROM table_name_73 WHERE total > 8 AND opposition = "waterford" | CREATE TABLE table_name_73 (tally VARCHAR, total VARCHAR, opposition VARCHAR) |
What is the broadcast date of the 16mm t/r episode? | SELECT broadcast_date FROM table_1849243_1 WHERE archive = "16mm t/r" | CREATE TABLE table_1849243_1 (broadcast_date VARCHAR, archive VARCHAR) |
What town has the reserve with an area of 163,62? | SELECT district___town FROM table_26013618_1 WHERE area__ha_ = "163,62" | CREATE TABLE table_26013618_1 (district___town VARCHAR, area__ha_ VARCHAR) |
What is the team located at philips arena 18,227? | SELECT team FROM table_11961582_6 WHERE location_attendance = "Philips Arena 18,227" | CREATE TABLE table_11961582_6 (team VARCHAR, location_attendance VARCHAR) |