answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT COUNT(grid) FROM table_name_64 WHERE laps > 102 AND time_retired = "+ 6.18"
How many grids have 102 laps and a Time/Retired of + 6.18?
CREATE TABLE table_name_64 (grid VARCHAR, laps VARCHAR, time_retired VARCHAR)
SELECT MIN(pct) FROM table_name_54 WHERE independent = "old dominion" AND years > 4
What is the lowest PCT when Old Dominion is the independent and the years is more than 4?
CREATE TABLE table_name_54 (pct INTEGER, independent VARCHAR, years VARCHAR)
SELECT ground FROM table_name_19 WHERE away_team = "essendon"
What was the ground for away team essendon?
CREATE TABLE table_name_19 (ground VARCHAR, away_team VARCHAR)
SELECT citation FROM table_name_6 WHERE employed = "1970–1996"
What citation is shown for the employed years of 1970–1996?
CREATE TABLE table_name_6 (citation VARCHAR, employed VARCHAR)
SELECT COUNT(Ends) AS lost FROM table_26745426_2 WHERE stolen_ends = 6
Name the number of ends lost for 6 stolen ends
CREATE TABLE table_26745426_2 (Ends VARCHAR, stolen_ends VARCHAR)
SELECT method FROM table_name_5 WHERE round < 3 AND time = "3:36"
What method has a round less than 3, and 3:36 as the time?
CREATE TABLE table_name_5 (method VARCHAR, round VARCHAR, time VARCHAR)
SELECT T2.transcript_date, T1.transcript_id FROM Transcript_Contents AS T1 JOIN Transcripts AS T2 ON T1.transcript_id = T2.transcript_id GROUP BY T1.transcript_id HAVING COUNT(*) >= 2
Show the date and id of the transcript with at least 2 course results.
CREATE TABLE Transcript_Contents (transcript_id VARCHAR); CREATE TABLE Transcripts (transcript_date VARCHAR, transcript_id VARCHAR)
SELECT cpu FROM table_11703336_1 WHERE ram = "28 KB of ram" AND display_size = "128×64 pixels 21×8 characters"
what is the cpu for the calculator with 28 kb of ram and display size 128×64 pixels 21×8 characters?
CREATE TABLE table_11703336_1 (cpu VARCHAR, ram VARCHAR, display_size VARCHAR)
SELECT MAX(played) FROM table_name_23 WHERE goals_scored < 18 AND lost > 10
Name the highest Played of Goals Scored smaller than 18 and a Lost larger than 10?
CREATE TABLE table_name_23 (played INTEGER, goals_scored VARCHAR, lost VARCHAR)
SELECT MAX(money___) AS £__ FROM table_name_44 WHERE country = "south africa"
What shows for money (£) when South Africa is the country?
CREATE TABLE table_name_44 (money___ INTEGER, country VARCHAR)
SELECT player FROM table_2897457_4 WHERE pick__number = 64
Which player is pick 64?
CREATE TABLE table_2897457_4 (player VARCHAR, pick__number VARCHAR)
SELECT record FROM table_17288825_8 WHERE score = "L 93–104 (OT)"
Name the record for score of l 93–104 (ot)
CREATE TABLE table_17288825_8 (record VARCHAR, score VARCHAR)
SELECT centerfold_model FROM table_name_96 WHERE interview_subject = "josé napoleón duarte"
Who was the Centerfold model in the issue in which the Interview subject was José Napoleón Duarte?
CREATE TABLE table_name_96 (centerfold_model VARCHAR, interview_subject VARCHAR)
SELECT hometown_school FROM table_name_79 WHERE pick > 30 AND position = "of" AND team = "cleveland indians"
What Hometown/School had a pick above 30, position of OF and team of Cleveland Indians?
CREATE TABLE table_name_79 (hometown_school VARCHAR, team VARCHAR, pick VARCHAR, position VARCHAR)
SELECT AVG(crowd) FROM table_name_38 WHERE venue = "western oval"
In the Western Oval venue, what is the average crowd?
CREATE TABLE table_name_38 (crowd INTEGER, venue VARCHAR)
SELECT AVG(points) FROM table_name_40 WHERE chassis = "zakspeed 881"
What are the average points with a Chassis of zakspeed 881?
CREATE TABLE table_name_40 (points INTEGER, chassis VARCHAR)
SELECT arabic_country_name FROM table_name_68 WHERE english_capital_name = "moroni"
What is the name of the country in Arabic that has Moroni as the name of its capital in English?
CREATE TABLE table_name_68 (arabic_country_name VARCHAR, english_capital_name VARCHAR)
SELECT T1.School_name, T1.Mascot, T1.IHSAA_Football_Class FROM school AS T1 JOIN budget AS T2 ON T1.school_id = T2.school_id WHERE Budgeted > 6000 OR YEAR < 2003 ORDER BY T2.total_budget_percent_invested, T2.total_budget_percent_budgeted
List the name, IHSAA Football Class, and Mascot of the schools that have more than 6000 of budgeted amount or were founded before 2003, in the order of percent of total invested budget and total budgeted budget.
CREATE TABLE school (School_name VARCHAR, Mascot VARCHAR, IHSAA_Football_Class VARCHAR, school_id VARCHAR); CREATE TABLE budget (school_id VARCHAR, total_budget_percent_invested VARCHAR, total_budget_percent_budgeted VARCHAR)
SELECT match FROM table_name_9 WHERE player = "clem hill (sa)"
What match has Clem Hill (sa) as the player?
CREATE TABLE table_name_9 (match VARCHAR, player VARCHAR)
SELECT MIN(year) FROM table_name_42 WHERE author = "reki kawahara"
what is the earliest year when the author is reki kawahara?
CREATE TABLE table_name_42 (year INTEGER, author VARCHAR)
SELECT team FROM table_name_52 WHERE position_in_table = "pre-season" AND manner_of_departure = "end of tenure as caretaker"
What Team's Pre-Season Manager's manner of departure was the end of tenure as caretaker?
CREATE TABLE table_name_52 (team VARCHAR, position_in_table VARCHAR, manner_of_departure VARCHAR)
SELECT to_par FROM table_name_18 WHERE place = "t5" AND country = "united states"
What is To Par, when Place is "T5", and when Country is "United States"?
CREATE TABLE table_name_18 (to_par VARCHAR, place VARCHAR, country VARCHAR)
SELECT status FROM table_name_12 WHERE novelty = "gen et sp" AND name = "haplocanthosaurus"
What is the Status with a novelty of gen et sp, and the name is haplocanthosaurus?
CREATE TABLE table_name_12 (status VARCHAR, novelty VARCHAR, name VARCHAR)
SELECT high_points FROM table_25461946_5 WHERE date = "November 17"
Who scored the most points on November 17?
CREATE TABLE table_25461946_5 (high_points VARCHAR, date VARCHAR)
SELECT MAX(rank) FROM table_22355_68
Name the most rank
CREATE TABLE table_22355_68 (rank INTEGER)
SELECT length FROM table_name_29 WHERE year = "2012-2013"
What is the length for years 2012-2013?
CREATE TABLE table_name_29 (length VARCHAR, year VARCHAR)
SELECT method FROM table_name_75 WHERE round = "2" AND res = "win" AND opponent = "nick gilardi"
What is the method in the round 2 win over Nick Gilardi?
CREATE TABLE table_name_75 (method VARCHAR, opponent VARCHAR, round VARCHAR, res VARCHAR)
SELECT MIN(draft) FROM table_name_80 WHERE nationality = "usa" AND player = "justin martin"
What is the lowest draft of player justin martin from the USA?
CREATE TABLE table_name_80 (draft INTEGER, nationality VARCHAR, player VARCHAR)
SELECT score FROM table_name_15 WHERE place = "t4" AND player = "nick price"
What is T4 Place Player Nick Price's Score?
CREATE TABLE table_name_15 (score VARCHAR, place VARCHAR, player VARCHAR)
SELECT lost FROM table_name_52 WHERE played = "22" AND losing_bp = "2" AND club = "merthyr rfc"
What is the total number of games lost when 22 have been played, the losing BP number is 2, and the club is Merthyr RFC?
CREATE TABLE table_name_52 (lost VARCHAR, club VARCHAR, played VARCHAR, losing_bp VARCHAR)
SELECT fastest_lap FROM table_10706961_2 WHERE name = "Escort Radar Warning 200"
What was the fastest lap time in the Escort Radar Warning 200?
CREATE TABLE table_10706961_2 (fastest_lap VARCHAR, name VARCHAR)
SELECT COUNT(original_3rd_us_tour_cast) FROM table_24353141_1 WHERE original_uk_cast = "Alyssa DiPalma"
How many original 3rd us tour cast were there while the original uk cast was alyssa dipalma?
CREATE TABLE table_24353141_1 (original_3rd_us_tour_cast VARCHAR, original_uk_cast VARCHAR)
SELECT production__latest_figures_ FROM table_250309_1 WHERE parent_company = "Ariel"
what is the production where the parent company is ariel?
CREATE TABLE table_250309_1 (production__latest_figures_ VARCHAR, parent_company VARCHAR)
SELECT COUNT(rank) FROM table_name_35 WHERE player = "giuseppe meazza" AND titles > 3
How many rankings are associated with giuseppe meazza holding over 3 titles?
CREATE TABLE table_name_35 (rank VARCHAR, player VARCHAR, titles VARCHAR)
SELECT per­cent­age FROM table_177766_1 WHERE area__sqdeg_ = "248.885"
What is the percentage of this constellation with an area of 248.885 sq. deg.?
CREATE TABLE table_177766_1 (per­cent­age VARCHAR, area__sqdeg_ VARCHAR)
SELECT score FROM table_name_44 WHERE result = "3-0"
What was the score of the match with a 3-0 result?
CREATE TABLE table_name_44 (score VARCHAR, result VARCHAR)
SELECT zodiac_sign FROM table_180802_2 WHERE abbr = "มี.ค."
What's the zodiac sing for the month abbreviated as มี.ค.?
CREATE TABLE table_180802_2 (zodiac_sign VARCHAR, abbr VARCHAR)
SELECT title FROM table_20967430_2 WHERE original_air_date = "November 08, 1985"
Name the title that aired for november 08, 1985
CREATE TABLE table_20967430_2 (title VARCHAR, original_air_date VARCHAR)
SELECT COUNT(original_air_date) FROM table_24649082_1 WHERE written_by = "David H. Goodman & Andrew Kreisberg"
How many original air dates for the episode written by David H. Goodman & Andrew Kreisberg?
CREATE TABLE table_24649082_1 (original_air_date VARCHAR, written_by VARCHAR)
SELECT price_range FROM HOTELS
What are the price ranges of hotels?
CREATE TABLE HOTELS (price_range VARCHAR)
SELECT performer FROM table_19189856_1 WHERE last_performance = "04/08/1963"
who was the performer that did last performance on 04/08/1963
CREATE TABLE table_19189856_1 (performer VARCHAR, last_performance VARCHAR)
SELECT _number___county FROM table_name_54 WHERE school = "new palestine"
Name the # country for new palestine
CREATE TABLE table_name_54 (_number___county VARCHAR, school VARCHAR)
SELECT nation FROM table_name_70 WHERE athlete_s_ = "elizabeth yarnold"
What is Elizabeth Yarnold's nation?
CREATE TABLE table_name_70 (nation VARCHAR, athlete_s_ VARCHAR)
SELECT opponent FROM table_name_53 WHERE match_day > 33 AND date = "12 may"
Who was the opponent on 12 May, when the match day was more than 33?
CREATE TABLE table_name_53 (opponent VARCHAR, match_day VARCHAR, date VARCHAR)
SELECT week FROM table_name_85 WHERE kickoff_[a_] = "1:00" AND record = "4-5-1"
Which week has a Kickoff time of 1:00 with a record of 4-5-1?
CREATE TABLE table_name_85 (week VARCHAR, record VARCHAR, kickoff_ VARCHAR, a_ VARCHAR)
SELECT originalairdate FROM table_13403120_1 WHERE repeatairdate_s_ = "26/01/1969"
What is the original date of the repeat air date of 26/01/1969?
CREATE TABLE table_13403120_1 (originalairdate VARCHAR, repeatairdate_s_ VARCHAR)
SELECT COUNT(pick) FROM table_name_84 WHERE round = 6
How many picks were from round 6?
CREATE TABLE table_name_84 (pick VARCHAR, round VARCHAR)
SELECT senator FROM table_name_82 WHERE party = "republican" AND home_town = "houston" AND district = 7
Which Senator has a Party of republican, a Home Town of houston, and a District of 7?
CREATE TABLE table_name_82 (senator VARCHAR, district VARCHAR, party VARCHAR, home_town VARCHAR)
SELECT SUM(goals) FROM table_name_65 WHERE player = "dave taylor" AND tries > 1
What is the number of goals Dave Taylor, who has more than 1 tries, has?
CREATE TABLE table_name_65 (goals INTEGER, player VARCHAR, tries VARCHAR)
SELECT loss_gain FROM table_25818630_2 WHERE votes__cast = 166
What was the loss/gain when the votes -cast was 166?
CREATE TABLE table_25818630_2 (loss_gain VARCHAR, votes__cast VARCHAR)
SELECT winner FROM table_name_47 WHERE win__number > 3
Who had more than 3 wins?
CREATE TABLE table_name_47 (winner VARCHAR, win__number INTEGER)
SELECT name FROM table_name_49 WHERE year_at_cu = "1st" AND alma_mater = "dayton ('07)"
Who has the alma mater of Dayton ('07), and was in their 1st year at CU?
CREATE TABLE table_name_49 (name VARCHAR, year_at_cu VARCHAR, alma_mater VARCHAR)
SELECT winning_driver FROM table_name_98 WHERE date = "29 march"
Name the winner for 29 march
CREATE TABLE table_name_98 (winning_driver VARCHAR, date VARCHAR)
SELECT COUNT(title) FROM table_11951237_2 WHERE original_air_date = "August 31, 1995"
How many episodes originally aired on August 31, 1995?
CREATE TABLE table_11951237_2 (title VARCHAR, original_air_date VARCHAR)
SELECT season FROM table_name_31 WHERE score = "3 – 3 aet , 4–3 pen"
Which Season has a Score of 3 – 3 aet , 4–3 pen
CREATE TABLE table_name_31 (season VARCHAR, score VARCHAR)
SELECT written_by FROM table_12030612_3 WHERE series__number = 25
Who were the authors of series episode #25?
CREATE TABLE table_12030612_3 (written_by VARCHAR, series__number VARCHAR)
SELECT director FROM table_10953197_2 WHERE production_code = "2393059"
Who was the director of the episode with a production code of 2393059?
CREATE TABLE table_10953197_2 (director VARCHAR, production_code VARCHAR)
SELECT fumrec FROM table_25773915_11 WHERE player = "Reed Doughty"
If the player is Reed Doughty, what isthe fumrec?
CREATE TABLE table_25773915_11 (fumrec VARCHAR, player VARCHAR)
SELECT results FROM table_name_71 WHERE incumbent = "bill shuster"
What are the results for Bill Shuster?
CREATE TABLE table_name_71 (results VARCHAR, incumbent VARCHAR)
SELECT venue FROM table_name_6 WHERE date = "30 may 2004"
Where was the game played on 30 May 2004?
CREATE TABLE table_name_6 (venue VARCHAR, date VARCHAR)
SELECT launched FROM table_name_23 WHERE commissioned = "august 31, 1964"
Tell me the launched for august 31, 1964
CREATE TABLE table_name_23 (launched VARCHAR, commissioned VARCHAR)
SELECT MAX(Weeks_on_Top), MIN(Weeks_on_Top) FROM volume
What are the maximum and minimum week on top of all volumes?
CREATE TABLE volume (Weeks_on_Top INTEGER)
SELECT title FROM table_20205538_4 WHERE episode__number = 2
What was the title for episode 2?
CREATE TABLE table_20205538_4 (title VARCHAR, episode__number VARCHAR)
SELECT Speed FROM roller_coaster ORDER BY LENGTH DESC LIMIT 1
What are the speeds of the longest roller coaster?
CREATE TABLE roller_coaster (Speed VARCHAR, LENGTH VARCHAR)
SELECT first_performance FROM table_19189856_1 WHERE last_performance = "03/29/1957"
what is the first performance of the last performance on 03/29/1957
CREATE TABLE table_19189856_1 (first_performance VARCHAR, last_performance VARCHAR)
SELECT AVG(gold) FROM table_name_28 WHERE nation = "yugoslavia" AND silver > 0
What is the average Gold, when Nation is Yugoslavia, and when Silver is greater than 0?
CREATE TABLE table_name_28 (gold INTEGER, nation VARCHAR, silver VARCHAR)
SELECT weekly_rank FROM table_11178271_1 WHERE air_date = "November 12, 2007"
What is the weekly rank with an air date is november 12, 2007?
CREATE TABLE table_11178271_1 (weekly_rank VARCHAR, air_date VARCHAR)
SELECT result FROM table_name_48 WHERE year = 2013
What was the Result in 2013?
CREATE TABLE table_name_48 (result VARCHAR, year VARCHAR)
SELECT driver FROM table_name_1 WHERE constructor = "renault" AND time_retired = "+38.600"
Who was the driver, when the constructor was Renault, and when the Time/Retired was +38.600?
CREATE TABLE table_name_1 (driver VARCHAR, constructor VARCHAR, time_retired VARCHAR)
SELECT COUNT(womens_singles) FROM table_12194021_1 WHERE mens_doubles = "Rupesh Kumar Sanave Thomas" AND womens_doubles = "Jwala Gutta Ashwini Ponnappa"
How many total titles did Rupesh Kumar Sanave Thomas and Jwala Gutta Ashwini Ponnappa win total?
CREATE TABLE table_12194021_1 (womens_singles VARCHAR, mens_doubles VARCHAR, womens_doubles VARCHAR)
SELECT MIN(pick) FROM table_name_51 WHERE position = "back" AND player = "chuck morris"
When was chuck morris, back, drafted?
CREATE TABLE table_name_51 (pick INTEGER, position VARCHAR, player VARCHAR)
SELECT home_team FROM table_name_65 WHERE crowd > 23 OFFSET 327
When the Crowd is larger than 23,327, what Home team is playing?
CREATE TABLE table_name_65 (home_team VARCHAR, crowd INTEGER)
SELECT COUNT(bronze) FROM table_name_90 WHERE gold < 1 AND nation = "sweden (swe)" AND silver < 1
What's the total number of bronze medals for Sweden (SWE) having less than 1 gold and silver?
CREATE TABLE table_name_90 (bronze VARCHAR, silver VARCHAR, gold VARCHAR, nation VARCHAR)
SELECT type FROM table_name_48 WHERE characters = "廣利"
What type has the characters 廣利?
CREATE TABLE table_name_48 (type VARCHAR, characters VARCHAR)
SELECT venue FROM table_name_1 WHERE date = "17/02/2008"
What was the venue on 17/02/2008?
CREATE TABLE table_name_1 (venue VARCHAR, date VARCHAR)
SELECT COUNT(failures) FROM table_name_76 WHERE country = "russia" AND family = "r14 r-14" AND partial_failures < 0
What is the number of failure for the country of Russia, and a Family of r14 r-14, and a Partial failures smaller than 0?
CREATE TABLE table_name_76 (failures VARCHAR, partial_failures VARCHAR, country VARCHAR, family VARCHAR)
SELECT f_id FROM song WHERE resolution > (SELECT AVG(resolution) FROM song WHERE genre_is = "modern")
What is ids of the songs whose resolution is higher than the average resolution of songs in modern genre?
CREATE TABLE song (f_id VARCHAR, resolution INTEGER, genre_is VARCHAR)
SELECT institution FROM table_20887670_1 WHERE location = "Sparta, WI"
what is the name of the institution of the sparta, wi location?
CREATE TABLE table_20887670_1 (institution VARCHAR, location VARCHAR)
SELECT character FROM table_name_6 WHERE category = "favourite maa" AND year = 2004
In 2004 who was favourite maa?
CREATE TABLE table_name_6 (character VARCHAR, category VARCHAR, year VARCHAR)
SELECT date FROM table_name_20 WHERE home = "ny islanders"
When was the home game for the NY Islanders?
CREATE TABLE table_name_20 (date VARCHAR, home VARCHAR)
SELECT finished FROM table_name_16 WHERE exited = "day 19" AND entered = "day 1"
What position did the celebrity finish that entered on day 1 and exited on day 19?
CREATE TABLE table_name_16 (finished VARCHAR, exited VARCHAR, entered VARCHAR)
SELECT mens_doubles FROM table_12275654_1 WHERE mens_singles = "Chou Tien-chen"
Who won the men's double when Chou Tien-Chen won the men's single?
CREATE TABLE table_12275654_1 (mens_doubles VARCHAR, mens_singles VARCHAR)
SELECT player FROM match_season ORDER BY College
Return all players sorted by college in ascending alphabetical order.
CREATE TABLE match_season (player VARCHAR, College VARCHAR)
SELECT format FROM table_name_48 WHERE year > 2000 AND label = "myuzyk" AND catalog_number = "mzykn08"
Tell me the format with year more than 2000 and label of myuzyk with catalog number of mzykn08
CREATE TABLE table_name_48 (format VARCHAR, catalog_number VARCHAR, year VARCHAR, label VARCHAR)
SELECT regular_season FROM table_15409403_1 WHERE year = 2012
What was the regular season from year 2012?
CREATE TABLE table_15409403_1 (regular_season VARCHAR, year VARCHAR)
SELECT elector FROM table_name_31 WHERE elevator = "alexander iii" AND cardinalatial_title = "bishop of palestrina"
What Elector has an Elevator of Alexander III and a Cardinalatial title of Bishop of Palestrina?
CREATE TABLE table_name_31 (elector VARCHAR, elevator VARCHAR, cardinalatial_title VARCHAR)
SELECT 2004 FROM table_name_20 WHERE 2003 = "1r" AND 2006 = "a"
What is 2004, when 2003 is "1R", and when 2006 is "A"?
CREATE TABLE table_name_20 (Id VARCHAR)
SELECT name FROM table_15463188_16 WHERE school_club_team = "Visayas"
Name the name for visayas
CREATE TABLE table_15463188_16 (name VARCHAR, school_club_team VARCHAR)
SELECT card_number, name, hometown FROM member ORDER BY LEVEL DESC
Show card number, name, and hometown for all members in a descending order of level.
CREATE TABLE member (card_number VARCHAR, name VARCHAR, hometown VARCHAR, LEVEL VARCHAR)
SELECT nationality FROM table_name_70 WHERE school_club_team = "ucla"
What country is team ucla come from?
CREATE TABLE table_name_70 (nationality VARCHAR, school_club_team VARCHAR)
SELECT catalog FROM table_name_23 WHERE year > 2000
What catalog came out after 2000?
CREATE TABLE table_name_23 (catalog VARCHAR, year INTEGER)
SELECT attendance FROM table_name_40 WHERE week > 5 AND opponent = "bye"
What is the attendance in the bye week after week 5?
CREATE TABLE table_name_40 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)
SELECT T1.name FROM physician AS T1 JOIN affiliated_with AS T2 ON T1.EmployeeID = T2.physician JOIN department AS T3 ON T2.department = T3.DepartmentID WHERE T3.name = 'Surgery' OR T3.name = 'Psychiatry'
Find the name of physicians who are affiliated with Surgery or Psychiatry department.
CREATE TABLE affiliated_with (physician VARCHAR, department VARCHAR); CREATE TABLE department (DepartmentID VARCHAR, name VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR)
SELECT COUNT(total) FROM table_name_51 WHERE bronze < 8 AND nation = "netherlands" AND rank < 16
What is the total number for less than 8 bronze, the Netherlands nation, and is ranked less than 16?
CREATE TABLE table_name_51 (total VARCHAR, rank VARCHAR, bronze VARCHAR, nation VARCHAR)
SELECT SUM(usn_2013) FROM table_name_63 WHERE bw_2013 < 1000 AND forbes_2011 > 17 AND cnn_2011 < 13
What is the USN 2013 ranking with a BW 2013 ranking less than 1000, a Forbes 2011 ranking larger than 17, and a CNN 2011 ranking less than 13?
CREATE TABLE table_name_63 (usn_2013 INTEGER, cnn_2011 VARCHAR, bw_2013 VARCHAR, forbes_2011 VARCHAR)
SELECT AVG(year) FROM table_name_51 WHERE trim = "ls/lt" AND power = "hp (kw)"
What's the Year average that's got Trim of LS/LT and Power of HP (KW)?
CREATE TABLE table_name_51 (year INTEGER, trim VARCHAR, power VARCHAR)
SELECT AVG(losses) FROM table_name_87 WHERE scored = 9 AND points > 8
Which Losses has Scored of 9, and Points larger than 8?
CREATE TABLE table_name_87 (losses INTEGER, scored VARCHAR, points VARCHAR)
SELECT Party FROM party WHERE NOT Party_ID IN (SELECT Party FROM election)
What are the names of parties that do not have delegates in election?
CREATE TABLE election (Party VARCHAR, Party_ID VARCHAR); CREATE TABLE party (Party VARCHAR, Party_ID VARCHAR)
SELECT date FROM table_name_54 WHERE game = "game 1"
On what date was Game 1?
CREATE TABLE table_name_54 (date VARCHAR, game VARCHAR)
SELECT club FROM table_name_83 WHERE loses > 1 AND wins = 4 AND points_against < 894
What club has losses greater than 1, 4 for the wins, with points against less than 894?
CREATE TABLE table_name_83 (club VARCHAR, points_against VARCHAR, loses VARCHAR, wins VARCHAR)