answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 484 |
|---|---|---|
SELECT SUM(introduced) FROM table_name_94 WHERE manufacturer = "fokker" AND quantity = 5 AND retired > 1999 | How many in the introduced section had Fokker as a manufacturer, a quantity of 5, and retired later than 1999? | CREATE TABLE table_name_94 (introduced INTEGER, retired VARCHAR, manufacturer VARCHAR, quantity VARCHAR) |
SELECT duration FROM table_name_45 WHERE soap_opera = "the archers" AND actor = "pauline seville" | What's the duration of the Archers with Pauline Seville acting? | CREATE TABLE table_name_45 (duration VARCHAR, soap_opera VARCHAR, actor VARCHAR) |
SELECT 1 AS st_round FROM table_name_67 WHERE team_2 = "olympique lyonnais (d2)" | what is the 1st round when team 2 is olympique lyonnais (d2)? | CREATE TABLE table_name_67 (team_2 VARCHAR) |
SELECT venue FROM table_name_18 WHERE winner = "gary cowan" AND year = "1966" | Where was the 1966 competition with a winner of Gary Cowan held? | CREATE TABLE table_name_18 (venue VARCHAR, winner VARCHAR, year VARCHAR) |
SELECT record FROM table_name_62 WHERE november > 11 AND opponent = "st. louis blues" | What record has a november greater than 11, and st. louis blues as the opponent? | CREATE TABLE table_name_62 (record VARCHAR, november VARCHAR, opponent VARCHAR) |
SELECT score FROM table_name_38 WHERE away_team = "perth wildcats" | What was the score for the Perth Wildcats as away team? | CREATE TABLE table_name_38 (score VARCHAR, away_team VARCHAR) |
SELECT T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid WHERE T2.balance > (SELECT AVG(balance) FROM checking) INTERSECT SELECT T1.name FROM accounts AS T1 JOIN savings AS T2 ON T1.custid = T2.custid WHERE T2.balance < (SELECT AVG(balance) FROM savings) | Find the names of accounts whose checking balance is above the average checking balance, but savings balance is below the average savings balance. | CREATE TABLE checking (custid VARCHAR, balance INTEGER); CREATE TABLE savings (custid VARCHAR, balance INTEGER); CREATE TABLE savings (balance INTEGER); CREATE TABLE checking (balance INTEGER); CREATE TABLE accounts (name VARCHAR, custid VARCHAR) |
SELECT MIN(goals_for) FROM table_name_95 WHERE played < 34 | Which lowest goals for number had a played number of less than 34? | CREATE TABLE table_name_95 (goals_for INTEGER, played INTEGER) |
SELECT COUNT(week) FROM table_name_89 WHERE opponent = "pittsburgh steelers" | How many weeks have pittsburgh steelers as the opponent? | CREATE TABLE table_name_89 (week VARCHAR, opponent VARCHAR) |
SELECT MIN(crowd) FROM table_name_94 WHERE home_team = "essendon" | Who is Essendon's home team? | CREATE TABLE table_name_94 (crowd INTEGER, home_team VARCHAR) |
SELECT record FROM table_11406866_2 WHERE attendance = "61,350" | what's the record where attendance is 61,350 | CREATE TABLE table_11406866_2 (record VARCHAR, attendance VARCHAR) |
SELECT MAX(gold) FROM table_name_87 WHERE bronze < 1 AND total > 4 | Can you tell me the highest Gold that has the Bronze smaller than 1, and the Total larger than 4? | CREATE TABLE table_name_87 (gold INTEGER, bronze VARCHAR, total VARCHAR) |
SELECT MAX(goals) FROM table_name_17 WHERE name = "lee dong-gook" | Which Goals have a Name of lee dong-gook? | CREATE TABLE table_name_17 (goals INTEGER, name VARCHAR) |
SELECT MAX(game) FROM table_name_77 WHERE record = "47-21-3" | What is the highest game with a 47-21-3 record? | CREATE TABLE table_name_77 (game INTEGER, record VARCHAR) |
SELECT hometown FROM table_name_83 WHERE player = "cody zeller" | What is the hometown of Cody Zeller? | CREATE TABLE table_name_83 (hometown VARCHAR, player VARCHAR) |
SELECT english_title FROM table_11839306_2 WHERE rōmaji_title = "Getto Daun" | What is the English version of the title Getto Daun? | CREATE TABLE table_11839306_2 (english_title VARCHAR, rōmaji_title VARCHAR) |
SELECT MIN(enrollment__2009_) FROM table_2076595_1 WHERE location_s_ = "Plainfield" | What is the minimum enrollment for Plainfield? | CREATE TABLE table_2076595_1 (enrollment__2009_ INTEGER, location_s_ VARCHAR) |
SELECT COUNT(*) FROM Student WHERE sex = "M" AND StuID IN (SELECT StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = "food") | Find the number of male (sex is 'M') students who have some food type allery. | CREATE TABLE Has_allergy (Allergy VARCHAR); CREATE TABLE Allergy_Type (Allergy VARCHAR, allergytype VARCHAR); CREATE TABLE Student (sex VARCHAR, StuID VARCHAR) |
SELECT team FROM table_name_21 WHERE draws = "15" | Which team had 15 draws? | CREATE TABLE table_name_21 (team VARCHAR, draws VARCHAR) |
SELECT T1.statement_id, T2.statement_details FROM Accounts AS T1 JOIN Statements AS T2 ON T1.statement_id = T2.statement_id GROUP BY T1.statement_id ORDER BY COUNT(*) DESC LIMIT 1 | Show the statement id and the statement detail for the statement with most number of accounts. | CREATE TABLE Accounts (statement_id VARCHAR); CREATE TABLE Statements (statement_details VARCHAR, statement_id VARCHAR) |
SELECT no_in_series FROM table_18428024_3 WHERE directed_by = "John Banas" | How many series did John Banas direct? | CREATE TABLE table_18428024_3 (no_in_series VARCHAR, directed_by VARCHAR) |
SELECT tournament FROM table_name_49 WHERE margin_of_victory = "playoff" | Which tournament had a playoff with a margin of victory? | CREATE TABLE table_name_49 (tournament VARCHAR, margin_of_victory VARCHAR) |
SELECT incumbent FROM table_1341604_22 WHERE district = "Massachusetts 2" | what's the incumbent with district being massachusetts 2 | CREATE TABLE table_1341604_22 (incumbent VARCHAR, district VARCHAR) |
SELECT MAX(total) FROM table_name_57 WHERE rank < 4 AND nation = "tunisia (tun)" AND gold < 2 | What is the highest Total with a Rank that is smaller than 4 and a Nation of tunisia (tun) with a Gold that is smaller than 2? | CREATE TABLE table_name_57 (total INTEGER, gold VARCHAR, rank VARCHAR, nation VARCHAR) |
SELECT 2008 AS _12 FROM table_name_77 WHERE 2013 = "a" AND tournament = "wimbledon" | Which 2008-12 has a 2013 of A, and a Tournament of wimbledon? | CREATE TABLE table_name_77 (tournament VARCHAR) |
SELECT entrant FROM table_name_25 WHERE points = "42 (45)" AND chassis = "brabham bt20" | who is the entrant when the points is 42 (45) and the chassis is brabham bt20? | CREATE TABLE table_name_25 (entrant VARCHAR, points VARCHAR, chassis VARCHAR) |
SELECT crowd FROM table_name_54 WHERE venue = "arden street oval" | What was the attendance when the Arden Street Oval? | CREATE TABLE table_name_54 (crowd VARCHAR, venue VARCHAR) |
SELECT displacement_ & _configuration FROM table_name_18 WHERE emissions_co2 = "204 g/km" | What is the displacement & configuration with CO2 of 204 g/km emissions? | CREATE TABLE table_name_18 (displacement_ VARCHAR, _configuration VARCHAR, emissions_co2 VARCHAR) |
SELECT player FROM table_name_67 WHERE year = "1981" | Who was the player in 1981? | CREATE TABLE table_name_67 (player VARCHAR, year VARCHAR) |
SELECT score FROM table_name_93 WHERE country = "spain" | What was spain's score? | CREATE TABLE table_name_93 (score VARCHAR, country VARCHAR) |
SELECT team FROM table_28628309_6 WHERE category = "Field goal percentage" | Who was the team when the category is field goal percentage? | CREATE TABLE table_28628309_6 (team VARCHAR, category VARCHAR) |
SELECT nfl_team FROM table_2508633_11 WHERE college = "North Texas State" | What are the NFL Teams in College North Texas State? | CREATE TABLE table_2508633_11 (nfl_team VARCHAR, college VARCHAR) |
SELECT date_successor_seated FROM table_2147588_4 WHERE successor = "John W. Leftwich (UU)" | When john w. leftwich (uu) is the successor what is the date the successor was seated? | CREATE TABLE table_2147588_4 (date_successor_seated VARCHAR, successor VARCHAR) |
SELECT name FROM table_name_6 WHERE longitude = "213.0e" | What name has a longitude of 213.0e? | CREATE TABLE table_name_6 (name VARCHAR, longitude VARCHAR) |
SELECT MAX(tonnage_grt) FROM table_name_80 WHERE date = "16 jan 16" | what is the most tonnage grt of any ship sunk or captured on 16 jan 16? | CREATE TABLE table_name_80 (tonnage_grt INTEGER, date VARCHAR) |
SELECT silver FROM table_name_20 WHERE gold = "li ao" | What Silver has a Golf of Li AO? | CREATE TABLE table_name_20 (silver VARCHAR, gold VARCHAR) |
SELECT COUNT(high_assists) FROM table_17311759_7 WHERE date = "February 4" | how many high assists stats were maade on february 4 | CREATE TABLE table_17311759_7 (high_assists VARCHAR, date VARCHAR) |
SELECT type FROM table_name_14 WHERE rank < 70 AND province = "british columbia" AND capacity___mw__ > 2 OFFSET 480 | what is the type when the rank is smaller than 70, the province is british columbia and the capacity (mw) is more than 2,480? | CREATE TABLE table_name_14 (type VARCHAR, capacity___mw__ VARCHAR, rank VARCHAR, province VARCHAR) |
SELECT COUNT(league_cup_goals) FROM table_name_76 WHERE total_apps = "36" AND total_goals < 1 | How many League Cup Goals have Total Apps of 36, and Total Goals smaller than 1? | CREATE TABLE table_name_76 (league_cup_goals VARCHAR, total_apps VARCHAR, total_goals VARCHAR) |
SELECT school_club_team FROM table_name_22 WHERE years_for_grizzlies = "2006-2009" | Which School/Club Team holds the 2006-2009 Years of Grizzlies ? | CREATE TABLE table_name_22 (school_club_team VARCHAR, years_for_grizzlies VARCHAR) |
SELECT directed_by FROM table_25740548_2 WHERE written_by = "Matthew Lau" | Who was the director for episodes that were written be Matthew Lau? | CREATE TABLE table_25740548_2 (directed_by VARCHAR, written_by VARCHAR) |
SELECT round_of_64 FROM table_17289604_38 WHERE event = "Singles" AND round_of_16 = "Did not advance" AND athlete = "Iveta Benešová" | What was round of 64 of the singles event when the result of round 16 was did not advance and the athlete was Iveta Benešová? | CREATE TABLE table_17289604_38 (round_of_64 VARCHAR, athlete VARCHAR, event VARCHAR, round_of_16 VARCHAR) |
SELECT wiaa_classification FROM table_22058547_1 WHERE high_school = "Vancouver iTech Prepratory" | What wiaa classifications does vancouver itech prepratory have? | CREATE TABLE table_22058547_1 (wiaa_classification VARCHAR, high_school VARCHAR) |
SELECT directed_by FROM table_2342078_4 WHERE written_by = "Brad Radnitz" | List all directors when Brad Radnitz was the writer? | CREATE TABLE table_2342078_4 (directed_by VARCHAR, written_by VARCHAR) |
SELECT gatchaman FROM table_17480471_3 WHERE eagle_riders = "Lukan" | Which gatchaman has eagle riders as lukan? | CREATE TABLE table_17480471_3 (gatchaman VARCHAR, eagle_riders VARCHAR) |
SELECT result FROM table_name_54 WHERE attendance = "50,514" | What was the score when 50,514 people were in attendance? | CREATE TABLE table_name_54 (result VARCHAR, attendance VARCHAR) |
SELECT round_of_32 FROM table_27294107_11 WHERE round_of_16 = "Drenovak ( SRB ) W 20–11" | What is the round of 32 if the round of 16 is drenovak ( srb ) w 20–11? | CREATE TABLE table_27294107_11 (round_of_32 VARCHAR, round_of_16 VARCHAR) |
SELECT title FROM table_15938543_1 WHERE production_code = 109 | Whats the title of the episode with production code 109 | CREATE TABLE table_15938543_1 (title VARCHAR, production_code VARCHAR) |
SELECT MAX(played) FROM table_name_66 WHERE lost < 1 AND difference = "6" AND against > 2 | Which Played is the highest one that has a Lost smaller than 1, and a Difference of 6, and an Against larger than 2? | CREATE TABLE table_name_66 (played INTEGER, against VARCHAR, lost VARCHAR, difference VARCHAR) |
SELECT established FROM table_16432543_1 WHERE institution = "Rowan University" | What is the year Rowan University was established | CREATE TABLE table_16432543_1 (established VARCHAR, institution VARCHAR) |
SELECT set_1 FROM table_name_37 WHERE date = "24 may" AND total = "57–75" | Which Set 1 has a Date of 24 may, and a Total of 57–75? | CREATE TABLE table_name_37 (set_1 VARCHAR, date VARCHAR, total VARCHAR) |
SELECT us_viewers__millions_ FROM table_19401346_1 WHERE no_in_season = 1 | How many millions of people in the US saw the episode with season number 1? | CREATE TABLE table_19401346_1 (us_viewers__millions_ VARCHAR, no_in_season VARCHAR) |
SELECT AVG(lost) FROM table_name_95 WHERE goals_scored > 20 AND played < 18 | What is the average value for Lost, when the value for Goals Scored is greater than 20, and when the value for Played is less than 18? | CREATE TABLE table_name_95 (lost INTEGER, goals_scored VARCHAR, played VARCHAR) |
SELECT points FROM table_name_74 WHERE grid > 8 AND time_retired = "+47.487 secs" | Name the points with grid more than 8 and time/retired of +47.487 secs | CREATE TABLE table_name_74 (points VARCHAR, grid VARCHAR, time_retired VARCHAR) |
SELECT episode FROM table_2102714_1 WHERE run_time = "24:53" | What episode had a run time of 24:53? | CREATE TABLE table_2102714_1 (episode VARCHAR, run_time VARCHAR) |
SELECT AVG(launches) FROM table_name_63 WHERE rocket = "ariane 5" AND partial_failures < 0 | What were the average launches for Ariane 5 and 0 partial failures? | CREATE TABLE table_name_63 (launches INTEGER, rocket VARCHAR, partial_failures VARCHAR) |
SELECT away_team AS score FROM table_name_7 WHERE away_team = "hawthorn" | What is the score for Hawthorn as an away team? | CREATE TABLE table_name_7 (away_team VARCHAR) |
SELECT platform FROM table_name_28 WHERE latest_stable_release = "8.4" | What is the platform for the latest release 8.4? | CREATE TABLE table_name_28 (platform VARCHAR, latest_stable_release VARCHAR) |
SELECT directed_by FROM table_2701851_5 WHERE no_in_season = "10a" | Who was the director for the Episode number in season 10a? | CREATE TABLE table_2701851_5 (directed_by VARCHAR, no_in_season VARCHAR) |
SELECT athlete FROM table_name_67 WHERE city = "riverbank, california" | What is the Athlete from Riverbank, California? | CREATE TABLE table_name_67 (athlete VARCHAR, city VARCHAR) |
SELECT MIN(poles) FROM table_24937583_1 | What is the minimum amount of poles? | CREATE TABLE table_24937583_1 (poles INTEGER) |
SELECT operation_start FROM table_name_51 WHERE construction_start = "phase ii" | Construction start of phase ii has what operation start? | CREATE TABLE table_name_51 (operation_start VARCHAR, construction_start VARCHAR) |
SELECT name FROM table_name_80 WHERE longitude > 103.8 AND latitude = -11.4 | Tell me the name for longitude more than 103.8 and latitude of -11.4 | CREATE TABLE table_name_80 (name VARCHAR, longitude VARCHAR, latitude VARCHAR) |
SELECT COUNT(part_3) FROM table_1745843_6 WHERE verb_meaning = "to freeze" | How many different part 3 verbs are there that mean to freeze? | CREATE TABLE table_1745843_6 (part_3 VARCHAR, verb_meaning VARCHAR) |
SELECT muzzle_device FROM table_19901_1 WHERE colt_model_no = "603" | Which muzzle devices are on the Colt 603? | CREATE TABLE table_19901_1 (muzzle_device VARCHAR, colt_model_no VARCHAR) |
SELECT year__ceremony_ FROM table_name_62 WHERE original_title = "ganito kami noon, paano kayo ngayon" | What is the ceremony year when Ganito Kami Noon, Paano Kayo Ngayon was the original title? | CREATE TABLE table_name_62 (year__ceremony_ VARCHAR, original_title VARCHAR) |
SELECT MAX(attendance) FROM table_name_74 WHERE arena = "arrowhead pond of anaheim" AND loss = "giguere (3–3)" | Which Attendance has an Arena of arrowhead pond of anaheim, and a Loss of giguere (3–3)? | CREATE TABLE table_name_74 (attendance INTEGER, arena VARCHAR, loss VARCHAR) |
SELECT MAX(no_of_episodes) FROM table_17697980_1 WHERE year = "1989" | What is the largest number of episodes for a 1989 season dvd release? | CREATE TABLE table_17697980_1 (no_of_episodes INTEGER, year VARCHAR) |
SELECT college FROM table_15582870_1 WHERE choice = 143 | Which college did draft pick #143 attend? | CREATE TABLE table_15582870_1 (college VARCHAR, choice VARCHAR) |
SELECT wins FROM table_name_19 WHERE starts > 1 AND top_5 = 3 | Can you tell me the Wins that has the Starts larger than 1, and the Top 5 of 3? | CREATE TABLE table_name_19 (wins VARCHAR, starts VARCHAR, top_5 VARCHAR) |
SELECT original_airdate FROM table_17467447_1 WHERE us_viewers__million_ = "5.50" | What is the air date when the U.S. viewers was 5.50 million? | CREATE TABLE table_17467447_1 (original_airdate VARCHAR, us_viewers__million_ VARCHAR) |
SELECT score FROM table_name_94 WHERE home_team = "tottenham hotspur" | What is the score of the home team tottenham hotspur? | CREATE TABLE table_name_94 (score VARCHAR, home_team VARCHAR) |
SELECT COUNT(year) FROM table_name_4 WHERE engine = "mercedes fo 108w 2.4l v8" AND points > 0 | How many entrants have a mercedes fo 108w 2.4l v8 engine and over 0 points? | CREATE TABLE table_name_4 (year VARCHAR, engine VARCHAR, points VARCHAR) |
SELECT home_team FROM table_name_35 WHERE tie_no = "40" | What is the Home team of Tie no 40? | CREATE TABLE table_name_35 (home_team VARCHAR, tie_no VARCHAR) |
SELECT COUNT(area_km_2) FROM table_name_8 WHERE population_in_millions > 4.2 AND member_state = "czech republic" | What is the total number of area km2 with a 4.2 population in millions and is a member state of the Czech Republic? | CREATE TABLE table_name_8 (area_km_2 VARCHAR, population_in_millions VARCHAR, member_state VARCHAR) |
SELECT COUNT AS № FROM table_27905664_1 WHERE us_viewers__million_ = "4.26" | How many episode numbers had US viewership of 4.26 million? | CREATE TABLE table_27905664_1 (COUNT VARCHAR, us_viewers__million_ VARCHAR) |
SELECT SUM(gold) FROM table_name_74 WHERE silver = 4 AND total > 6 | What is the sum of the gold medals of the nation with 4 silvers and more than 6 total medals? | CREATE TABLE table_name_74 (gold INTEGER, silver VARCHAR, total VARCHAR) |
SELECT AVG(black__both_hispanic_and_non_hispanic_) FROM table_name_99 WHERE white__both_hispanic_and_non_hispanic_ < 61.9 AND multiracial__both_hispanic_and_non_hispanic_ < 12.5 AND hispanic__of_any_race_ < 99.4 | What is the average black value (Hispanic/Non-Hispanic) having a white (Hispanic/Non-Hispanic) under 61.9, Multiracial (Hispanic/Non-Hispanic) under 12.5 and Hispanic under 99.4? | CREATE TABLE table_name_99 (black__both_hispanic_and_non_hispanic_ INTEGER, hispanic__of_any_race_ VARCHAR, white__both_hispanic_and_non_hispanic_ VARCHAR, multiracial__both_hispanic_and_non_hispanic_ VARCHAR) |
SELECT circumstances FROM table_name_18 WHERE nature_of_incident = "hostile" AND location = "road to jalalabad" | What were the circumstances of the Hostile incident on the road to Jalalabad? | CREATE TABLE table_name_18 (circumstances VARCHAR, nature_of_incident VARCHAR, location VARCHAR) |
SELECT time FROM table_name_47 WHERE rank = 40 | What is the time of the swimmer in rank 40? | CREATE TABLE table_name_47 (time VARCHAR, rank VARCHAR) |
SELECT no_in_season FROM table_26825349_1 WHERE production_code = "4AKY14" | What is the episode number of the episode with a production code of 4aky14? | CREATE TABLE table_26825349_1 (no_in_season VARCHAR, production_code VARCHAR) |
SELECT date FROM table_27721131_6 WHERE high_assists = "John Wall (11)" | What is the date where john wall (11) had the high assists? | CREATE TABLE table_27721131_6 (date VARCHAR, high_assists VARCHAR) |
SELECT born FROM table_name_27 WHERE age_at_first_step = "38y 9m 7d" | The Apollo astronaut who was 38y 9m 7d when first stepping on the moon is who? | CREATE TABLE table_name_27 (born VARCHAR, age_at_first_step VARCHAR) |
SELECT winner FROM table_name_97 WHERE general_classification = "pavel tonkov" AND stage = "7" | Who was the winner in stage 7 with a general classification of Pavel Tonkov? | CREATE TABLE table_name_97 (winner VARCHAR, general_classification VARCHAR, stage VARCHAR) |
SELECT organisation FROM table_name_8 WHERE year = 2011 AND result = "nominated" AND award = "best info-ed programme host" | What is the organisation in 2011 that was nominated and the award of best info-ed programme host? | CREATE TABLE table_name_8 (organisation VARCHAR, award VARCHAR, year VARCHAR, result VARCHAR) |
SELECT COUNT(matches) FROM table_name_73 WHERE wickets < 537 AND career = "1898/99-1919/20" AND runs > 4476 | Name the total number of matches with wickets less than 537 and career of 1898/99-1919/20 with runs more than 4476 | CREATE TABLE table_name_73 (matches VARCHAR, runs VARCHAR, wickets VARCHAR, career VARCHAR) |
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 WHERE t3.order_quantity = (SELECT MAX(order_quantity) FROM order_items) | What is the name of the customer that made the order with the largest quantity? | CREATE TABLE order_items (order_id VARCHAR, order_quantity INTEGER); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE order_items (order_quantity INTEGER); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR) |
SELECT venue FROM table_name_46 WHERE date = "23,24,26,27,28,29 feb, 1 mar 1912" | What is Venue, when Date is 23,24,26,27,28,29 Feb, 1 Mar 1912? | CREATE TABLE table_name_46 (venue VARCHAR, date VARCHAR) |
SELECT T1.title, T3.book_title FROM movie AS T1 JOIN culture_company AS T2 ON T1.movie_id = T2.movie_id JOIN book_club AS T3 ON T3.book_club_id = T2.book_club_id WHERE T2.incorporated_in = 'China' | Show the movie titles and book titles for all companies in China. | CREATE TABLE movie (title VARCHAR, movie_id VARCHAR); CREATE TABLE culture_company (movie_id VARCHAR, book_club_id VARCHAR, incorporated_in VARCHAR); CREATE TABLE book_club (book_title VARCHAR, book_club_id VARCHAR) |
SELECT title FROM table_24910742_1 WHERE us_viewers__millions_ = "9.64" | What was the title of the episode having exactly 9.64 million US viewers? | CREATE TABLE table_24910742_1 (title VARCHAR, us_viewers__millions_ VARCHAR) |
SELECT date FROM table_name_35 WHERE home_captain = "courtney walsh" AND venue = "queen's park oval" | On which dates played Home Captain Courtney Walsh at the Queen's Park Oval? | CREATE TABLE table_name_35 (date VARCHAR, home_captain VARCHAR, venue VARCHAR) |
SELECT regular_season FROM table_name_19 WHERE division = 4 | WHICH Regular Season has a Division of 4? | CREATE TABLE table_name_19 (regular_season VARCHAR, division VARCHAR) |
SELECT attendance FROM table_name_43 WHERE week = 7 | What was the attendance at the week 7 game? | CREATE TABLE table_name_43 (attendance VARCHAR, week VARCHAR) |
SELECT 家族_family FROM table_1912713_2 WHERE 性情_personality = "Gentle" | Who in the family has a gentle personality? | CREATE TABLE table_1912713_2 (家族_family VARCHAR, 性情_personality VARCHAR) |
SELECT pick__number FROM table_name_82 WHERE round < 7 AND overall < 127 AND name = "robert alford" | Which pick number had a round of less than 7, an overall of less than 127, and where the name was Robert Alford? | CREATE TABLE table_name_82 (pick__number VARCHAR, name VARCHAR, round VARCHAR, overall VARCHAR) |
SELECT COUNT(number) FROM table_1997759_1 WHERE registration = "F-BVFF" | how many number is located at registration f-bvff? | CREATE TABLE table_1997759_1 (number VARCHAR, registration VARCHAR) |
SELECT SUM(year) FROM table_name_25 WHERE film = "klondike annie" | What is the Year of the Film Klondike Annie? | CREATE TABLE table_name_25 (year INTEGER, film VARCHAR) |
SELECT place_ & _date FROM table_23014685_1 WHERE area_damaged = "Apartments area" | What was the place and date that the Apartments area was damaged? | CREATE TABLE table_23014685_1 (place_ VARCHAR, _date VARCHAR, area_damaged VARCHAR) |
SELECT home_leg FROM table_2214582_3 WHERE opponents = "FC Schalke 04" | What was the home leg score against fc schalke 04? | CREATE TABLE table_2214582_3 (home_leg VARCHAR, opponents VARCHAR) |
SELECT player FROM table_name_53 WHERE college = "uab" | What player attended UAB college? | CREATE TABLE table_name_53 (player VARCHAR, college VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.