answer
stringlengths 18
557
| question
stringlengths 12
244
| context
stringlengths 27
489
|
|---|---|---|
SELECT build_date FROM table_name_55 WHERE model = "fa-2"
|
What is the build date of the locomotive with a fa-2 model?
|
CREATE TABLE table_name_55 (build_date VARCHAR, model VARCHAR)
|
SELECT SUM(no_in_series) FROM table_name_38 WHERE director = "jefferson kibbee" AND production_code = "2398191"
|
What is the total series numbers that is directed by Jefferson Kibbee and has a production code of 2398191?
|
CREATE TABLE table_name_38 (no_in_series INTEGER, director VARCHAR, production_code VARCHAR)
|
SELECT high_assists FROM table_name_75 WHERE game < 78 AND date = "april 8"
|
What were the assists on April 8 in game less than 78?
|
CREATE TABLE table_name_75 (high_assists VARCHAR, game VARCHAR, date VARCHAR)
|
SELECT SUM(b_score) FROM table_name_2 WHERE total > 15.325 AND a_score < 6.4
|
Which B Score has a Total larger than 15.325, and an A Score smaller than 6.4?
|
CREATE TABLE table_name_2 (b_score INTEGER, total VARCHAR, a_score VARCHAR)
|
SELECT release_date FROM table_name_40 WHERE series = "mm" AND title = "tom thumb in trouble"
|
What is the release date of the mm series, which has the title tom thumb in trouble?
|
CREATE TABLE table_name_40 (release_date VARCHAR, series VARCHAR, title VARCHAR)
|
SELECT branding FROM table_name_53 WHERE callsign = "dwfm"
|
What is the branding for callsign DWFM?
|
CREATE TABLE table_name_53 (branding VARCHAR, callsign VARCHAR)
|
SELECT lifespan FROM table_name_21 WHERE party = "democratic" AND state = "new york" AND representative = "terence j. quinn"
|
What is the lifespan of the democratic party in New York, for which Terence J. Quinn is a representative?
|
CREATE TABLE table_name_21 (lifespan VARCHAR, representative VARCHAR, party VARCHAR, state VARCHAR)
|
SELECT 2007 FROM table_name_36 WHERE 2009 = "1r" AND 2011 = "2r" AND tournament = "wimbledon"
|
What is the 2007 value with 1r in 2009 and 2r in 2011 at the Tournament of Wimbledon?
|
CREATE TABLE table_name_36 (tournament VARCHAR)
|
SELECT MAX(avg_g) FROM table_name_35 WHERE gain = 1 OFFSET 380
|
With a gain of 1,380, what is the highest Avg/G?
|
CREATE TABLE table_name_35 (avg_g INTEGER, gain VARCHAR)
|
SELECT winner FROM table_name_86 WHERE stage = "ss2"
|
What was Stage SS2's Winner?
|
CREATE TABLE table_name_86 (winner VARCHAR, stage VARCHAR)
|
SELECT result FROM table_1133844_4 WHERE senator = "Lindsey Graham"
|
tell the final for lindsey graham
|
CREATE TABLE table_1133844_4 (result VARCHAR, senator VARCHAR)
|
SELECT COUNT(shot_pct) FROM table_1505809_2 WHERE blank_ends = 8
|
What is the total of all Shot PCT occurrences when the value of Blank Ends is 8?
|
CREATE TABLE table_1505809_2 (shot_pct VARCHAR, blank_ends VARCHAR)
|
SELECT COUNT(candidates) FROM table_2668393_18 WHERE incumbent = "John Dawson Redistricted from the 15th district"
|
How many times was the incumbent john dawson redistricted from the 15th district?
|
CREATE TABLE table_2668393_18 (candidates VARCHAR, incumbent VARCHAR)
|
SELECT COUNT(*) FROM Person WHERE age > 30 AND job = 'engineer'
|
How many people whose age is greater 30 and job is engineer?
|
CREATE TABLE Person (age VARCHAR, job VARCHAR)
|
SELECT height_in_ft FROM table_name_77 WHERE no_s_ = "10"
|
What is the height in feet of number 10?
|
CREATE TABLE table_name_77 (height_in_ft VARCHAR, no_s_ VARCHAR)
|
SELECT driver FROM table_name_27 WHERE laps > 66 AND grid = 5
|
Who drove the car with over 66 laps with a grid of 5?
|
CREATE TABLE table_name_27 (driver VARCHAR, laps VARCHAR, grid VARCHAR)
|
SELECT COUNT(complement) FROM table_name_28 WHERE commander = "valkenburg"
|
What is the sum of complement commander Valkenburg received?
|
CREATE TABLE table_name_28 (complement VARCHAR, commander VARCHAR)
|
SELECT COUNT(team) FROM table_22297198_3 WHERE outgoing_manager = "Farhad Kazemi"
|
How many teams did Farhad Kazemi leave?
|
CREATE TABLE table_22297198_3 (team VARCHAR, outgoing_manager VARCHAR)
|
SELECT directed_by FROM table_18712423_3 WHERE written_by = "Matt Ford"
|
Who directed the episode written by Matt Ford?
|
CREATE TABLE table_18712423_3 (directed_by VARCHAR, written_by VARCHAR)
|
SELECT year FROM table_name_67 WHERE position = "21st (q)"
|
When did a Position of 21st (q) happen?
|
CREATE TABLE table_name_67 (year VARCHAR, position VARCHAR)
|
SELECT bats FROM table_name_93 WHERE surname = "baron"
|
Which player has a last name of baron?
|
CREATE TABLE table_name_93 (bats VARCHAR, surname VARCHAR)
|
SELECT MIN(week) FROM table_name_26 WHERE date = "december 19, 2004"
|
I want to know the lowest week with a date of december 19, 2004
|
CREATE TABLE table_name_26 (week INTEGER, date VARCHAR)
|
SELECT customer_name FROM customers EXCEPT SELECT t1.customer_name FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id JOIN products AS t4 ON t3.product_id = t4.product_id WHERE t4.product_details = 'Latte'
|
Find the names of customers who never ordered product Latte.
|
CREATE TABLE order_items (order_id VARCHAR, product_id VARCHAR); CREATE TABLE customers (customer_name VARCHAR); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR); CREATE TABLE products (product_id VARCHAR, product_details VARCHAR); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR)
|
SELECT MIN(subject) FROM table_name_58 WHERE plural = "tãder (their)"
|
What is the lowest Subject, when Plural is tãder (their)?
|
CREATE TABLE table_name_58 (subject INTEGER, plural VARCHAR)
|
SELECT zodiac_sign FROM table_20354_5 WHERE transcription = "karakadakhom"
|
What's the zodiac sing for the month whose transcription is Karakadakhom?
|
CREATE TABLE table_20354_5 (zodiac_sign VARCHAR, transcription VARCHAR)
|
SELECT builder FROM table_name_71 WHERE br_no = 30782
|
Which Builder has BR No. 30782?
|
CREATE TABLE table_name_71 (builder VARCHAR, br_no VARCHAR)
|
SELECT COUNT(event_2_truck_pull) FROM table_24302700_2 WHERE event_1_medley = "6 (16.6m)"
|
How many men had an event 1 medley score of 6 (16.6m)?
|
CREATE TABLE table_24302700_2 (event_2_truck_pull VARCHAR, event_1_medley VARCHAR)
|
SELECT COUNT(lost) FROM table_15319684_1 WHERE against = 46
|
Name the number of lost for against being 46
|
CREATE TABLE table_15319684_1 (lost VARCHAR, against VARCHAR)
|
SELECT COUNT(week_of) FROM table_21584646_10 WHERE champion = "John McEnroe 6–2, 6–3"
|
How many weeks are shown for the champion of john mcenroe 6–2, 6–3?
|
CREATE TABLE table_21584646_10 (week_of VARCHAR, champion VARCHAR)
|
SELECT league FROM table_name_47 WHERE games = "10"
|
What is the league name that has a Games listing of 10?
|
CREATE TABLE table_name_47 (league VARCHAR, games VARCHAR)
|
SELECT COUNT(air_dates) FROM table_16976547_2 WHERE cycle_no = "05"
|
Name the total number of air dates for 05 cycle
|
CREATE TABLE table_16976547_2 (air_dates VARCHAR, cycle_no VARCHAR)
|
SELECT team_usa FROM table_19072602_5 WHERE team_europe = "Paul Moor"
|
When paul moor is on the europe team who is on the usa team?
|
CREATE TABLE table_19072602_5 (team_usa VARCHAR, team_europe VARCHAR)
|
SELECT circuit FROM table_name_53 WHERE fastest_lap = "john surtees" AND winning_driver = "john surtees"
|
Name the circuit when the fastest lap was john surtees and the winning driver was john surtees.
|
CREATE TABLE table_name_53 (circuit VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR)
|
SELECT family FROM table_name_40 WHERE name = "humpback whale"
|
Which family has a Name of humpback whale?
|
CREATE TABLE table_name_40 (family VARCHAR, name VARCHAR)
|
SELECT score FROM table_23486853_7 WHERE date = "February 11"
|
What scores happened on February 11?
|
CREATE TABLE table_23486853_7 (score VARCHAR, date VARCHAR)
|
SELECT others FROM table_20453681_1 WHERE mccain_percentage = "65.5%"
|
How many people voted for others in the county where McCain got 65.5% of the votes?
|
CREATE TABLE table_20453681_1 (others VARCHAR, mccain_percentage VARCHAR)
|
SELECT took_office FROM table_name_53 WHERE vice > 6
|
When did the vice president with a vice over 6 take office?
|
CREATE TABLE table_name_53 (took_office VARCHAR, vice INTEGER)
|
SELECT COUNT(t_c__) AS °c_ FROM table_2282444_1 WHERE magnet = "Nd 2 Fe 14 B (bonded)"
|
When nd 2 fe 14 b (bonded) is the magnet how many measurements of tc (°c)?
|
CREATE TABLE table_2282444_1 (t_c__ VARCHAR, magnet VARCHAR)
|
SELECT COUNT(wins) FROM table_name_93 WHERE draws < 5 AND goals_against > 49 AND played > 30
|
What is the total number of Wins, when Draws is less than 5, when Goals is greater than 49, and when Played is greater than 30?
|
CREATE TABLE table_name_93 (wins VARCHAR, played VARCHAR, draws VARCHAR, goals_against VARCHAR)
|
SELECT prothrombin_time FROM table_1557752_1 WHERE partial_thromboplastin_time = "Prolonged" AND bleeding_time = "Prolonged"
|
If the partial thromboplastin and bleeding time is prolonged, what is the prothrombin time?
|
CREATE TABLE table_1557752_1 (prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR, bleeding_time VARCHAR)
|
SELECT COUNT(location) FROM table_22171978_1 WHERE athletic_nickname = "Blue Crusaders"
|
How many locations are there for the athletic nickname is blue crusaders?
|
CREATE TABLE table_22171978_1 (location VARCHAR, athletic_nickname VARCHAR)
|
SELECT outcome FROM table_name_19 WHERE tournament = "milan , italy"
|
Which Outcome that has a Tournament of milan , italy?
|
CREATE TABLE table_name_19 (outcome VARCHAR, tournament VARCHAR)
|
SELECT episode FROM table_27208311_1 WHERE writer = "Barry Purchese"
|
What is every episode with Barry Purchese as the writer?
|
CREATE TABLE table_27208311_1 (episode VARCHAR, writer VARCHAR)
|
SELECT torque FROM table_name_68 WHERE engine = "amc power tech i6"
|
What Torque has an AMC Power Tech I6 Engine?
|
CREATE TABLE table_name_68 (torque VARCHAR, engine VARCHAR)
|
SELECT launched FROM table_name_22 WHERE commissioned = "july 1948" AND bow_number = "ps-31"
|
When did the ship that was commissioned July 1948 with a bow number of ps-31 launch?
|
CREATE TABLE table_name_22 (launched VARCHAR, commissioned VARCHAR, bow_number VARCHAR)
|
SELECT event FROM table_name_28 WHERE round = 1 AND record = "5-1"
|
Which event is in round 1 with a record at 5-1?
|
CREATE TABLE table_name_28 (event VARCHAR, round VARCHAR, record VARCHAR)
|
SELECT MIN(attendance) FROM table_name_47 WHERE away = "vida"
|
What was the lowest attendance by the game that had an away team of Vida?
|
CREATE TABLE table_name_47 (attendance INTEGER, away VARCHAR)
|
SELECT venue FROM table_name_91 WHERE competition = "1982 fifa world cup qualification"
|
In what venue did the 1982 FIFA World Cup Qualification take place?
|
CREATE TABLE table_name_91 (venue VARCHAR, competition VARCHAR)
|
SELECT constituency FROM table_name_4 WHERE swing_to_gain < 6.05 AND rank = 2
|
I want the constituency which has a swing to gain less than 6.05 and a rank of 2
|
CREATE TABLE table_name_4 (constituency VARCHAR, swing_to_gain VARCHAR, rank VARCHAR)
|
SELECT set_5 FROM table_name_25 WHERE set_2 = "26-24" AND set_1 = "27-25"
|
What is the set 5 of the match with a set 2 of 26-24 and a set 1 of 27-25?
|
CREATE TABLE table_name_25 (set_5 VARCHAR, set_2 VARCHAR, set_1 VARCHAR)
|
SELECT MAX(conceded) FROM table_name_4 WHERE played < 5
|
Please name the highest Conceded which has a Played smaller than 5?
|
CREATE TABLE table_name_4 (conceded INTEGER, played INTEGER)
|
SELECT score FROM table_name_80 WHERE location = "olympia fields, illinois"
|
what is the score at Olympia fields, illinois?
|
CREATE TABLE table_name_80 (score VARCHAR, location VARCHAR)
|
SELECT COUNT(origin) FROM table_29635868_1 WHERE title_ & _link_to_episode_on_youtube = "Samoan Cricket Bats"
|
How many origins have titles of Samoan cricket bats?
|
CREATE TABLE table_29635868_1 (origin VARCHAR, title_ VARCHAR, _link_to_episode_on_youtube VARCHAR)
|
SELECT COUNT(attendance) FROM table_name_76 WHERE opponent = "new york mets" AND record = "18-18"
|
What is the total attendance at games against the New York Mets with a record of 18-18?
|
CREATE TABLE table_name_76 (attendance VARCHAR, opponent VARCHAR, record VARCHAR)
|
SELECT incumbent FROM table_name_99 WHERE district = "california 5"
|
Which Incumbent has a District of California 5?
|
CREATE TABLE table_name_99 (incumbent VARCHAR, district VARCHAR)
|
SELECT MIN(average) FROM table_14003020_5 WHERE highest = 2363
|
what is the minimum average with highest being 2363
|
CREATE TABLE table_14003020_5 (average INTEGER, highest VARCHAR)
|
SELECT venue FROM table_name_2 WHERE round = "gs" AND result = "0–3"
|
Which Venue has a Round of gs, and a Result of 0–3?
|
CREATE TABLE table_name_2 (venue VARCHAR, round VARCHAR, result VARCHAR)
|
SELECT result FROM table_name_79 WHERE competition = "friendly" AND date = "9 october 2010"
|
Name the result for friendly competition on 9 october 2010
|
CREATE TABLE table_name_79 (result VARCHAR, competition VARCHAR, date VARCHAR)
|
SELECT filename_extension FROM table_name_64 WHERE interactivity_support = "no" AND open_standard = "yes" AND image_support = "no"
|
Which Filename extension has an Interactivity support of no, an Open standard of yes, and an Image support of no?
|
CREATE TABLE table_name_64 (filename_extension VARCHAR, image_support VARCHAR, interactivity_support VARCHAR, open_standard VARCHAR)
|
SELECT author FROM table_name_1 WHERE tv_companions_featured = "peri brown" AND title = "race against time"
|
What is Author, when TV Companions Featured is "Peri Brown", and when Title is "Race Against Time"?
|
CREATE TABLE table_name_1 (author VARCHAR, tv_companions_featured VARCHAR, title VARCHAR)
|
SELECT score FROM table_name_59 WHERE place = "t3" AND country = "spain"
|
What was the score in Spain T3?
|
CREATE TABLE table_name_59 (score VARCHAR, place VARCHAR, country VARCHAR)
|
SELECT report FROM table_1137704_2 WHERE winning_constructor = "Williams - Renault" AND grand_prix = "South African grand_prix"
|
what are all the report where winning constructor is williams - renault and grand prix is south african grand prix
|
CREATE TABLE table_1137704_2 (report VARCHAR, winning_constructor VARCHAR, grand_prix VARCHAR)
|
SELECT date FROM table_name_56 WHERE attendance = "45,943"
|
What date was the game when 45,943 attended?
|
CREATE TABLE table_name_56 (date VARCHAR, attendance VARCHAR)
|
SELECT Name, SurfaceArea, IndepYear FROM country ORDER BY Population LIMIT 1
|
What are the name, independence year, and surface area of the country with the smallest population?
|
CREATE TABLE country (Name VARCHAR, SurfaceArea VARCHAR, IndepYear VARCHAR, Population VARCHAR)
|
SELECT category FROM table_name_69 WHERE tournament = "rodez, france"
|
What is the Category of the Rodez, France Tournament?
|
CREATE TABLE table_name_69 (category VARCHAR, tournament VARCHAR)
|
SELECT hometown FROM table_name_20 WHERE position = "defensive back" AND college = "alabama"
|
What is the hometown for the player that is defensive back and went to alabama?
|
CREATE TABLE table_name_20 (hometown VARCHAR, position VARCHAR, college VARCHAR)
|
SELECT COUNT(laps) FROM table_name_24 WHERE time_retired = "+37.351"
|
How many laps were ridden in the race that had a Time/Retired of +37.351?
|
CREATE TABLE table_name_24 (laps VARCHAR, time_retired VARCHAR)
|
SELECT MAX(laps) FROM table_name_62 WHERE class = "oc" AND qual_pos = 7
|
What are the most laps for the Qual position of 7 in the OC class?
|
CREATE TABLE table_name_62 (laps INTEGER, class VARCHAR, qual_pos VARCHAR)
|
SELECT original_air_date FROM table_23399481_2 WHERE directed_by = "David Paymer"
|
What is the original air date of the episode that was directed by David Paymer?
|
CREATE TABLE table_23399481_2 (original_air_date VARCHAR, directed_by VARCHAR)
|
SELECT date FROM table_name_60 WHERE competition = "1996 tiger cup" AND result = "drew"
|
what is the date when the competition is 1996 tiger cup and the result is drew?
|
CREATE TABLE table_name_60 (date VARCHAR, competition VARCHAR, result VARCHAR)
|
SELECT transaction_id FROM TRANSACTIONS WHERE transaction_type_code = 'PUR'
|
Show all transaction ids with transaction code 'PUR'.
|
CREATE TABLE TRANSACTIONS (transaction_id VARCHAR, transaction_type_code VARCHAR)
|
SELECT AVG(goals_against) FROM table_name_98 WHERE wins > 12 AND losses = 12 AND position > 3
|
What is the average number of goals against with more than 12 wins, 12 losses, and a position greater than 3?
|
CREATE TABLE table_name_98 (goals_against INTEGER, position VARCHAR, wins VARCHAR, losses VARCHAR)
|
SELECT nationality FROM table_2886617_6 WHERE player = "Peter Slamiar"
|
What nationality was peter slamiar?
|
CREATE TABLE table_2886617_6 (nationality VARCHAR, player VARCHAR)
|
SELECT MIN(division) FROM table_2361911_2
|
Name the least division
|
CREATE TABLE table_2361911_2 (division INTEGER)
|
SELECT chinese_title FROM table_11926114_1 WHERE average = 31
|
What is the Chinese name that has a 31 average?
|
CREATE TABLE table_11926114_1 (chinese_title VARCHAR, average VARCHAR)
|
SELECT record FROM table_name_57 WHERE time = "4:15"
|
What was the record after the bout lasting 4:15?
|
CREATE TABLE table_name_57 (record VARCHAR, time VARCHAR)
|
SELECT name FROM airports WHERE country = 'Cuba' OR country = 'Argentina'
|
Find the name of the airports located in Cuba or Argentina.
|
CREATE TABLE airports (name VARCHAR, country VARCHAR)
|
SELECT djurgården_scorers FROM table_name_21 WHERE venue = "idrottsparken"
|
Who were the Djurgarden scorers when the venue was Idrottsparken?
|
CREATE TABLE table_name_21 (djurgården_scorers VARCHAR, venue VARCHAR)
|
SELECT MAX(round) FROM table_name_59 WHERE nationality = "sweden" AND position = "right wing"
|
What is the highest round of a player from Sweden who plays right wing?
|
CREATE TABLE table_name_59 (round INTEGER, nationality VARCHAR, position VARCHAR)
|
SELECT country FROM table_28498999_4 WHERE player = "Charley Hoffman"
|
What country is charley hoffman from?
|
CREATE TABLE table_28498999_4 (country VARCHAR, player VARCHAR)
|
SELECT T1.title, T1.i_id FROM item AS T1 JOIN review AS T2 ON T1.i_id = T2.i_id GROUP BY T2.i_id ORDER BY AVG(T2.rank) DESC LIMIT 1
|
Find the name and id of the good with the highest average rank.
|
CREATE TABLE review (i_id VARCHAR, rank INTEGER); CREATE TABLE item (title VARCHAR, i_id VARCHAR)
|
SELECT name FROM table_name_56 WHERE city = "louisville" AND floors > 35
|
What building in Louisville had more than 35 floors?
|
CREATE TABLE table_name_56 (name VARCHAR, city VARCHAR, floors VARCHAR)
|
SELECT categoría FROM table_27501971_2 WHERE country = "E.E.U.U"
|
What was the categoria when E.E.U.U was the country?
|
CREATE TABLE table_27501971_2 (categoría VARCHAR, country VARCHAR)
|
SELECT grand_prix FROM table_name_55 WHERE motogp_winner = "casey stoner" AND circuit = "losail"
|
Name the grand prix for casey stoner and circuit of losail
|
CREATE TABLE table_name_55 (grand_prix VARCHAR, motogp_winner VARCHAR, circuit VARCHAR)
|
SELECT team FROM table_name_6 WHERE long = "67"
|
Which team has a long of 67?
|
CREATE TABLE table_name_6 (team VARCHAR, long VARCHAR)
|
SELECT migration FROM table_13677808_1 WHERE trade = "5.7"
|
What is the migration rating when trade is 5.7?
|
CREATE TABLE table_13677808_1 (migration VARCHAR, trade VARCHAR)
|
SELECT archbishop FROM table_name_42 WHERE vacated_throne = "may 17, 1907"
|
Which archbishop vacated the throne on May 17, 1907?
|
CREATE TABLE table_name_42 (archbishop VARCHAR, vacated_throne VARCHAR)
|
SELECT COUNT(entrants) FROM table_name_21 WHERE year = 2011
|
How many entrants were there in 2011?
|
CREATE TABLE table_name_21 (entrants VARCHAR, year VARCHAR)
|
SELECT MAX(rank) FROM table_name_4 WHERE passengers < 124 OFFSET 296
|
What is the highest rank when there are fewer than 124,296 passengers?
|
CREATE TABLE table_name_4 (rank INTEGER, passengers INTEGER)
|
SELECT winner FROM table_name_78 WHERE trofeo_fast_team = "metauro mobili-pinarello" AND general_classification = "giuseppe saronni"
|
Which Winner has a Trofeo Fast Team of metauro mobili-pinarello, and a General classification of giuseppe saronni?
|
CREATE TABLE table_name_78 (winner VARCHAR, trofeo_fast_team VARCHAR, general_classification VARCHAR)
|
SELECT score FROM table_name_5 WHERE team_2 = "stade lavallois (d1)"
|
What was the score of team 2 Stade Lavallois (D1)?
|
CREATE TABLE table_name_5 (score VARCHAR, team_2 VARCHAR)
|
SELECT home_team FROM table_26842217_4 WHERE time = "7:30pm" AND broadcast = "ESPN"
|
What home team is at 7:30pm in ESPN?
|
CREATE TABLE table_26842217_4 (home_team VARCHAR, time VARCHAR, broadcast VARCHAR)
|
SELECT vietnamese_name FROM table_name_23 WHERE chinese_name_¹ = "芒種 (芒种) mángzhòng"
|
WHICH Vietnamese name has a Chinese name ¹ of 芒種 (芒种) mángzhòng?
|
CREATE TABLE table_name_23 (vietnamese_name VARCHAR, chinese_name_¹ VARCHAR)
|
SELECT record FROM table_name_19 WHERE game < 3 AND score = "l 91–96 (ot)"
|
What is the Record for a game less than 3 and the score was l 91–96 (ot)?
|
CREATE TABLE table_name_19 (record VARCHAR, game VARCHAR, score VARCHAR)
|
SELECT series FROM table_name_95 WHERE opponent = "edmonton oilers" AND game = 3
|
Opponent of edmonton oilers, and a Game of 3 is what series?
|
CREATE TABLE table_name_95 (series VARCHAR, opponent VARCHAR, game VARCHAR)
|
SELECT caps FROM table_name_97 WHERE position = "fly-half" AND player = "paddy wallace"
|
Paddy Wallace who plays the position of fly-half has how many Caps?
|
CREATE TABLE table_name_97 (caps VARCHAR, position VARCHAR, player VARCHAR)
|
SELECT SUM(pick__number) FROM table_name_17 WHERE player = "mike zaher"
|
How many picks did Mike Zaher have?
|
CREATE TABLE table_name_17 (pick__number INTEGER, player VARCHAR)
|
SELECT COUNT(games_played) FROM table_name_33 WHERE goals_scored < 40 AND loses = 9 AND goals_conceded = 39 AND draws > 2
|
What is the total number of games played of the club with less than 40 goals scored, 9 losses, 39 goals conceded, and more than 2 draws?
|
CREATE TABLE table_name_33 (games_played VARCHAR, draws VARCHAR, goals_conceded VARCHAR, goals_scored VARCHAR, loses VARCHAR)
|
SELECT dish FROM table_name_46 WHERE official_website = "ksat.com"
|
Which dish belongs to the network that has the official website of ksat.com?
|
CREATE TABLE table_name_46 (dish VARCHAR, official_website VARCHAR)
|
SELECT new_membership_total FROM table_27671835_3 WHERE conference = "NCHC (men only)"
|
What was the new membership total at the nchc (men only) conference?
|
CREATE TABLE table_27671835_3 (new_membership_total VARCHAR, conference VARCHAR)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.