answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT country FROM table_name_26 WHERE to_par < 5 AND player = "sam snead" | What Country is Player Sam Snead with a To par of less than 5 from? | CREATE TABLE table_name_26 (country VARCHAR, to_par VARCHAR, player VARCHAR) |
SELECT date FROM table_name_80 WHERE opponent = "leeds united" | what is the date when the opponent is leeds united? | CREATE TABLE table_name_80 (date VARCHAR, opponent VARCHAR) |
SELECT MAX(total) FROM table_name_43 WHERE bronze = 7 AND silver > 12 | What is the highest total medals won by a nation that had 7 bronze but more than 12 silver medals? | CREATE TABLE table_name_43 (total INTEGER, bronze VARCHAR, silver VARCHAR) |
SELECT bowling_figures_wickets_runs__overs_ FROM table_name_19 WHERE venue = "pietermaritzburg" | What were the bowling figures for the competition at Pietermaritzburg? | CREATE TABLE table_name_19 (bowling_figures_wickets_runs__overs_ VARCHAR, venue VARCHAR) |
SELECT COUNT(original_air_date) FROM table_29273115_1 WHERE written_by = "Charlie Day" | On how many different dates was the episode written by Charlie Day aired for the first time? | CREATE TABLE table_29273115_1 (original_air_date VARCHAR, written_by VARCHAR) |
SELECT years FROM table_name_41 WHERE decile < 6 AND area = "te kuiti" AND authority = "state integrated" | Which years have a Decile smaller than 6, an Area of te kuiti, and an Authority of state integrated? | CREATE TABLE table_name_41 (years VARCHAR, authority VARCHAR, decile VARCHAR, area VARCHAR) |
SELECT COUNT(age) FROM table_23495048_2 WHERE represent = "Mitteldeutschland" | How many contestants where from mitteldeutschland? | CREATE TABLE table_23495048_2 (age VARCHAR, represent VARCHAR) |
SELECT 2004 FROM table_name_55 WHERE 2005 = "a" AND 2008 = "a" AND 2009 = "lq" | What is the 2004 value with A in 2005, A in 2008, and lq in 2009? | CREATE TABLE table_name_55 (Id VARCHAR) |
SELECT measurement FROM table_name_21 WHERE estimated_function__percentage < 20 | What is the measurement where the estimated function % is less than 20? | CREATE TABLE table_name_21 (measurement VARCHAR, estimated_function__percentage INTEGER) |
SELECT date FROM table_name_60 WHERE partnering = "nicolas pereira" | Tell me the date for nicolas pereira | CREATE TABLE table_name_60 (date VARCHAR, partnering VARCHAR) |
SELECT owner FROM table_name_28 WHERE name = "thai pbs" | Who's the owner of Thai PBS? | CREATE TABLE table_name_28 (owner VARCHAR, name VARCHAR) |
SELECT first_broadcast_uk___bbc_four__ FROM table_26591309_2 WHERE episode = 9 | When was the first UK broadcast for episode 9? | CREATE TABLE table_26591309_2 (first_broadcast_uk___bbc_four__ VARCHAR, episode VARCHAR) |
SELECT competition FROM table_name_54 WHERE result = "win" AND date = "august 15, 2012" | Which competition did he win on August 15, 2012? | CREATE TABLE table_name_54 (competition VARCHAR, result VARCHAR, date VARCHAR) |
SELECT debut FROM table_name_58 WHERE name = "scott tunbridge" | What round was the debut of Scott Tunbridge? | CREATE TABLE table_name_58 (debut VARCHAR, name VARCHAR) |
SELECT school FROM table_name_65 WHERE nationality = "united states" AND pick = "595" | Which school's nationality was United States when its pick was 595? | CREATE TABLE table_name_65 (school VARCHAR, nationality VARCHAR, pick VARCHAR) |
SELECT Name, population, HeadOfState FROM country ORDER BY SurfaceArea DESC LIMIT 1 | What are the population, name and leader of the country with the largest area? | CREATE TABLE country (Name VARCHAR, population VARCHAR, HeadOfState VARCHAR, SurfaceArea VARCHAR) |
SELECT building, COUNT(*) FROM Faculty GROUP BY building | Show all the buildings along with the number of faculty members the buildings have. | CREATE TABLE Faculty (building VARCHAR) |
SELECT time FROM table_20626467_1 WHERE weight__kg_ = "54.4kg" | What time for the entrant weighing 54.4kg? | CREATE TABLE table_20626467_1 (time VARCHAR, weight__kg_ VARCHAR) |
SELECT first_broadcast_denmark___dr1__ FROM table_26591309_3 WHERE official_barb_ratings = "1,036,000" | When was the episode with a 1,036,000 BARB rating first aired in Denmark? | CREATE TABLE table_26591309_3 (first_broadcast_denmark___dr1__ VARCHAR, official_barb_ratings VARCHAR) |
SELECT sunday_sōl__sun_ FROM table_1277350_1 WHERE friday_venus__venus_ = "vernes" | what's the sunday sōl (sun) with friday venus (venus) being vernes | CREATE TABLE table_1277350_1 (sunday_sōl__sun_ VARCHAR, friday_venus__venus_ VARCHAR) |
SELECT chassis FROM table_name_1 WHERE year = 1971 | Which chassis was used in 1971? | CREATE TABLE table_name_1 (chassis VARCHAR, year VARCHAR) |
SELECT change__2011_to_2012_ FROM table_14752049_6 WHERE change__2010_to_2011_ = "+1.0%" | When the change (2010 to 2011) is +1.0% what is the change (2011 to 2012)? | CREATE TABLE table_14752049_6 (change__2011_to_2012_ VARCHAR, change__2010_to_2011_ VARCHAR) |
SELECT tv_network_s_ FROM table_18821196_1 WHERE country = "Belgium" | What is every TV network in Belgium? | CREATE TABLE table_18821196_1 (tv_network_s_ VARCHAR, country VARCHAR) |
SELECT Major, COUNT(*) FROM Student GROUP BY Major HAVING COUNT(Major) BETWEEN 2 AND 30 | Which major has between 2 and 30 number of students? List major and the number of students. | CREATE TABLE Student (Major VARCHAR) |
SELECT away_team FROM table_name_80 WHERE tie_no = "3" | Which away team has Tie no 3? | CREATE TABLE table_name_80 (away_team VARCHAR, tie_no VARCHAR) |
SELECT candidates FROM table_2668416_7 WHERE district = "Maryland 1" | Who is the candidates for district maryland 1? | CREATE TABLE table_2668416_7 (candidates VARCHAR, district VARCHAR) |
SELECT location FROM table_name_77 WHERE distance__km_ < 7.1 AND rapid = "●" | What location is less than 7.1 km away, and has a Rapid of ●? | CREATE TABLE table_name_77 (location VARCHAR, distance__km_ VARCHAR, rapid VARCHAR) |
SELECT SUM(year_opened) FROM table_name_13 WHERE span_feet > 1247 AND span_metres = 384 | What is the sum of Year opened when the span feet is more than 1247, and the spam metres is 384? | CREATE TABLE table_name_13 (year_opened INTEGER, span_feet VARCHAR, span_metres VARCHAR) |
SELECT games FROM table_name_71 WHERE marks = "21" | Name the games with marks of 21 | CREATE TABLE table_name_71 (games VARCHAR, marks VARCHAR) |
SELECT average FROM table_name_26 WHERE matches < 5 AND wickets > 9 | what is the average when matches is less than 5 and wickets is more than 9? | CREATE TABLE table_name_26 (average VARCHAR, matches VARCHAR, wickets VARCHAR) |
SELECT opponent FROM table_name_54 WHERE week > 8 AND date = "december 4, 1960" | Who was the opponent in a week over 8 on December 4, 1960? | CREATE TABLE table_name_54 (opponent VARCHAR, week VARCHAR, date VARCHAR) |
SELECT team FROM table_name_74 WHERE points = "test driver" | Which team has the points category of test driver? | CREATE TABLE table_name_74 (team VARCHAR, points VARCHAR) |
SELECT tournament FROM table_name_29 WHERE year = 1984 | Where was the 1984 Olympics hosted? | CREATE TABLE table_name_29 (tournament VARCHAR, year VARCHAR) |
SELECT score FROM table_name_65 WHERE year = 1992 AND result = "loss" | What's the score for 1992, with the result of a loss? | CREATE TABLE table_name_65 (score VARCHAR, year VARCHAR, result VARCHAR) |
SELECT login_name, family_name FROM Course_Authors_and_Tutors | List all the login names and family names of course author and tutors. | CREATE TABLE Course_Authors_and_Tutors (login_name VARCHAR, family_name VARCHAR) |
SELECT MAX(year) FROM table_name_19 WHERE points = "2" | in what year were 2 points scored? | CREATE TABLE table_name_19 (year INTEGER, points VARCHAR) |
SELECT final_position___round FROM table_name_22 WHERE competition = "fa community shield" | Tell me the final position for fa community shield | CREATE TABLE table_name_22 (final_position___round VARCHAR, competition VARCHAR) |
SELECT melbourne FROM table_name_35 WHERE perth = "yes" AND auckland = "yes" | Which Melbourne has a Perth of yes, and an Auckland of yes? | CREATE TABLE table_name_35 (melbourne VARCHAR, perth VARCHAR, auckland VARCHAR) |
SELECT nationality FROM table_name_98 WHERE round = "9" | In round 9 what was the nationality? | CREATE TABLE table_name_98 (nationality VARCHAR, round VARCHAR) |
SELECT drawn FROM table_12828723_5 WHERE points_against = "416" | What were the drawn with points against at 416? | CREATE TABLE table_12828723_5 (drawn VARCHAR, points_against VARCHAR) |
SELECT venue FROM table_name_47 WHERE team = "neman" | what is the venue of neman | CREATE TABLE table_name_47 (venue VARCHAR, team VARCHAR) |
SELECT winner FROM table_name_39 WHERE prize = "zł 1,226,711" | Who was the winner of the prize zł 1,226,711? | CREATE TABLE table_name_39 (winner VARCHAR, prize VARCHAR) |
SELECT district FROM table_1341663_10 WHERE candidates = "Charles Edward Bennett (D) Unopposed" | what is the district where the candidates are charles edward bennett (d) unopposed? | CREATE TABLE table_1341663_10 (district VARCHAR, candidates VARCHAR) |
SELECT date FROM table_1566852_5 WHERE interview_subject = "Oliver Stone" | Name the date for oliver stone | CREATE TABLE table_1566852_5 (date VARCHAR, interview_subject VARCHAR) |
SELECT education FROM table_name_47 WHERE hometown = "st. louis, missouri" | For natives of St. Louis, Missouri, what was listed under education? | CREATE TABLE table_name_47 (education VARCHAR, hometown VARCHAR) |
SELECT date FROM table_name_69 WHERE home_team = "essendon" | What day is essendon the home team? | CREATE TABLE table_name_69 (date VARCHAR, home_team VARCHAR) |
SELECT away_team FROM table_name_53 WHERE venue = "arden street oval" | Who was the away team at the game held at Arden Street Oval? | CREATE TABLE table_name_53 (away_team VARCHAR, venue VARCHAR) |
SELECT MAX(fastest_laps) FROM table_name_65 WHERE season = "2009" AND poles < 0 | Which the Fastest Lap has a Season of 2009 and Poles smaller than 0? | CREATE TABLE table_name_65 (fastest_laps INTEGER, season VARCHAR, poles VARCHAR) |
SELECT points_diff FROM table_name_73 WHERE points_against = "123" | What is points diff when points against is 123? | CREATE TABLE table_name_73 (points_diff VARCHAR, points_against VARCHAR) |
SELECT bleeding_time FROM table_1099080_1 WHERE partial_thromboplastin_time = "Unaffected" AND platelet_count = "Unaffected" | What were the bleeding times when both the platelet count was unaffected and the partial thromboplastin time was unaffected | CREATE TABLE table_1099080_1 (bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR, platelet_count VARCHAR) |
SELECT pop_density__per_km_2__ FROM table_255829_1 WHERE municipality = "Caramoran" | What is the population density of Caramoran? | CREATE TABLE table_255829_1 (pop_density__per_km_2__ VARCHAR, municipality VARCHAR) |
SELECT result FROM table_name_1 WHERE category = "best urban/alternative performance" AND year > 2003 | WHAT IS THE RESULT FOR best urban/alternative performance, IN 2003 OR GREATER? | CREATE TABLE table_name_1 (result VARCHAR, category VARCHAR, year VARCHAR) |
SELECT effect FROM table_name_53 WHERE weapon = "35mm/small arms fire" | What is Effect, when Weapon is "35mm/Small arms fire"? | CREATE TABLE table_name_53 (effect VARCHAR, weapon VARCHAR) |
SELECT MAX(population) FROM table_name_41 WHERE median_family_income = "$53,946" | Which Population has a Median family income of $53,946? | CREATE TABLE table_name_41 (population INTEGER, median_family_income VARCHAR) |
SELECT years_in_orlando FROM table_15621965_1 WHERE school_club_team = "Penn State" | Name the years in orlando for penn state | CREATE TABLE table_15621965_1 (years_in_orlando VARCHAR, school_club_team VARCHAR) |
SELECT SUM(money___) AS $__ FROM table_name_5 WHERE player = "willie klein" AND to_par > 13 | How much money did Willie Klein take home from the game in which he had a to par score larger than 13? | CREATE TABLE table_name_5 (money___ INTEGER, player VARCHAR, to_par VARCHAR) |
SELECT man_of_the_match FROM table_17103566_1 WHERE match_number = 5 | Who is man of the match for match number 5? | CREATE TABLE table_17103566_1 (man_of_the_match VARCHAR, match_number VARCHAR) |
SELECT source FROM table_name_14 WHERE type = "transfer" AND nat = "mex" | WHAT IS THE SOURCE WITH A TYPE OF TRANSFER AND MEX? | CREATE TABLE table_name_14 (source VARCHAR, type VARCHAR, nat VARCHAR) |
SELECT conductor FROM table_20683381_2 WHERE undecided = "18%" AND sample_size = 2000 | Who conducted the poll with sample size of 2000 that shows 18% undecided? | CREATE TABLE table_20683381_2 (conductor VARCHAR, undecided VARCHAR, sample_size VARCHAR) |
SELECT date FROM table_name_62 WHERE result = "bye" | When was the Bye week? | CREATE TABLE table_name_62 (date VARCHAR, result VARCHAR) |
SELECT SUM(skin_depth), _inches FROM table_name_30 WHERE resistivity__10_−6_ohm_inches_ = 1.12 AND relative_permeability > 1 | What is the sum of skin depth with a resistivity of 1.12 and a relative permeability larger than 1? | CREATE TABLE table_name_30 (_inches VARCHAR, skin_depth INTEGER, resistivity__10_−6_ohm_inches_ VARCHAR, relative_permeability VARCHAR) |
SELECT place FROM table_name_59 WHERE to_par < 15 AND score = 76 - 72 - 75 - 71 = 294 | What is Place, when To Par is less than 15, and when Score is 76-72-75-71=294? | CREATE TABLE table_name_59 (place VARCHAR, to_par VARCHAR, score VARCHAR) |
SELECT COUNT(attendance) FROM table_name_24 WHERE home = "hawks" | What was the attendance when the Hawks played? | CREATE TABLE table_name_24 (attendance VARCHAR, home VARCHAR) |
SELECT fname, lname FROM authors ORDER BY lname | Retrieve all the first and last names of authors in the alphabetical order of last names. | CREATE TABLE authors (fname VARCHAR, lname VARCHAR) |
SELECT date_of_birth FROM table_name_66 WHERE goals < 4 AND games > 1 AND years_at_club = "1945" AND player = "jim young" | what is the date of birth for the player with goals less than 4, games more than 1, years at club, 1945 and named jim young? | CREATE TABLE table_name_66 (date_of_birth VARCHAR, player VARCHAR, years_at_club VARCHAR, goals VARCHAR, games VARCHAR) |
SELECT caps FROM table_name_49 WHERE province___club = "drfc" AND position = "center" | What is Caps, when Province / Club is DRFC, and when Position is Center? | CREATE TABLE table_name_49 (caps VARCHAR, province___club VARCHAR, position VARCHAR) |
SELECT funny_car FROM table_name_57 WHERE pro_stock = "jim yates" AND year > 1996 | Who won Funny Car when Jim Yates won Pro Stock, in years after 1996? | CREATE TABLE table_name_57 (funny_car VARCHAR, pro_stock VARCHAR, year VARCHAR) |
SELECT t3.customer_details FROM claim_headers AS t1 JOIN policies AS t2 ON t1.policy_id = t2.policy_id JOIN customers AS t3 ON t2.customer_id = t3.customer_id WHERE t1.amount_claimed = (SELECT MAX(amount_claimed) FROM claim_headers) | What is the name of the customer who has made the largest amount of claim in a single claim? | CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE claim_headers (amount_claimed INTEGER); CREATE TABLE policies (policy_id VARCHAR, customer_id VARCHAR); CREATE TABLE claim_headers (policy_id VARCHAR, amount_claimed INTEGER) |
SELECT game FROM table_name_8 WHERE field_judge = "al jury" | What game had Al Jury as field judge? | CREATE TABLE table_name_8 (game VARCHAR, field_judge VARCHAR) |
SELECT rank FROM table_name_42 WHERE wins = 0 AND class = "350cc" | What is the rank associated with 0 wins and a 350cc class? | CREATE TABLE table_name_42 (rank VARCHAR, wins VARCHAR, class VARCHAR) |
SELECT AVG(rank) FROM table_name_9 WHERE total > 5 AND gold > 6 | What was the average rank for the team that had more than 5 medals and more than 6 gold medals? | CREATE TABLE table_name_9 (rank INTEGER, total VARCHAR, gold VARCHAR) |
SELECT title FROM table_16951593_1 WHERE production_code = "4014" | Namee the title for production code for 4014 | CREATE TABLE table_16951593_1 (title VARCHAR, production_code VARCHAR) |
SELECT date FROM table_name_29 WHERE catalog = "scyl-934,623" AND region = "australia" | On what date was the catalog scyl-934,623 for Australia? | CREATE TABLE table_name_29 (date VARCHAR, catalog VARCHAR, region VARCHAR) |
SELECT home_team AS score FROM table_name_9 WHERE home_team = "south melbourne" | What was South Melbourne's score when they played as the home team? | CREATE TABLE table_name_9 (home_team VARCHAR) |
SELECT winning_amount FROM table_name_51 WHERE contestant_name = "himesh reshammiya" | What winning amount has himesh reshammiya as the contestant name? | CREATE TABLE table_name_51 (winning_amount VARCHAR, contestant_name VARCHAR) |
SELECT method FROM table_name_10 WHERE round = "1" AND res = "win" AND record = "13-5" | What method did Mikhail Ilyukhin win the fight in round 1 when his record was 13-5? | CREATE TABLE table_name_10 (method VARCHAR, record VARCHAR, round VARCHAR, res VARCHAR) |
SELECT spoofed_title FROM table_name_97 WHERE artist = "mort drucker" AND issue = 88 | Which Spoofed title had Mort Drucker as the artist in issue 88? | CREATE TABLE table_name_97 (spoofed_title VARCHAR, artist VARCHAR, issue VARCHAR) |
SELECT COUNT(years_for_rockets) FROM table_11734041_1 WHERE position = "Center" AND school_club_team_country = "Oral Roberts" | How many times did a center that attended Oral Roberts play for the Rockets? | CREATE TABLE table_11734041_1 (years_for_rockets VARCHAR, position VARCHAR, school_club_team_country VARCHAR) |
SELECT date FROM table_name_90 WHERE week < 4 AND attendance = "44,851" | When was the attendance less than 44,851 during the first 4 weeks of the season? | CREATE TABLE table_name_90 (date VARCHAR, week VARCHAR, attendance VARCHAR) |
SELECT COUNT(high_assists) FROM table_23248940_10 WHERE game = 71 | How many people led in assists on game 71? | CREATE TABLE table_23248940_10 (high_assists VARCHAR, game VARCHAR) |
SELECT MIN(points) FROM table_name_51 WHERE make = "chevrolet" AND driver = "sterling marlin" AND car__number < 14 | Which is the lowest points value that had a Chevrolet car, whose driver was Sterling Marlin, and whose car number was less than 14? | CREATE TABLE table_name_51 (points INTEGER, car__number VARCHAR, make VARCHAR, driver VARCHAR) |
SELECT venue FROM table_name_96 WHERE result = "1–0" | Which venue has a Result of 1–0? | CREATE TABLE table_name_96 (venue VARCHAR, result VARCHAR) |
SELECT score FROM table_name_21 WHERE result = "2–1" AND competition = "friendly" AND goal < 17 | Which Score has a Result of 2–1, and a Competition of friendly, and a Goal smaller than 17? | CREATE TABLE table_name_21 (score VARCHAR, goal VARCHAR, result VARCHAR, competition VARCHAR) |
SELECT AVG(series__number) FROM table_name_42 WHERE directed_by = "matthew penn" | What is the average of the Series #s that were directed by Matthew Penn? | CREATE TABLE table_name_42 (series__number INTEGER, directed_by VARCHAR) |
SELECT report FROM table_name_98 WHERE circuit = "caen" | What does the Circuit of caen report? | CREATE TABLE table_name_98 (report VARCHAR, circuit VARCHAR) |
SELECT COUNT(week) FROM table_name_66 WHERE date = "october 9, 1938" | What week was October 9, 1938? | CREATE TABLE table_name_66 (week VARCHAR, date VARCHAR) |
SELECT starter FROM table_14342480_6 WHERE position = "Left end" | Name the starter for position being left end | CREATE TABLE table_14342480_6 (starter VARCHAR, position VARCHAR) |
SELECT score FROM table_name_93 WHERE save = "||27,108||63–44" | What score occurred when the save was ||27,108||63–44? | CREATE TABLE table_name_93 (score VARCHAR, save VARCHAR) |
SELECT home_team FROM table_name_86 WHERE venue = "windy hill" | Which home team's venue is Windy Hill? | CREATE TABLE table_name_86 (home_team VARCHAR, venue VARCHAR) |
SELECT district FROM table_1342338_5 WHERE incumbent = "John E. Miller" | In what district was John E. Miller the incumbent? | CREATE TABLE table_1342338_5 (district VARCHAR, incumbent VARCHAR) |
SELECT opponent FROM table_name_78 WHERE date = "july 8" AND score = "8-12" | When the date is July 8, and the score is 8-12, who is the opponent? | CREATE TABLE table_name_78 (opponent VARCHAR, date VARCHAR, score VARCHAR) |
SELECT date FROM table_name_26 WHERE performer_2 = "ryan stiles" AND performer_3 = "colin mochrie" AND performer_4 = "tony slattery" | What is the date of the episode with Ryan Stiles as performer 2, Colin Mochrie as performer 3, and Tony Slattery as performer 4? | CREATE TABLE table_name_26 (date VARCHAR, performer_4 VARCHAR, performer_2 VARCHAR, performer_3 VARCHAR) |
SELECT name FROM table_name_86 WHERE experience > 19 AND alma_mater = "eastern nazarene ('74)" | What person has the alma mater of Eastern Nazarene ('74), and greater than 19 experience? | CREATE TABLE table_name_86 (name VARCHAR, experience VARCHAR, alma_mater VARCHAR) |
SELECT character FROM table_name_43 WHERE year = 2005 | What is the character for 2005? | CREATE TABLE table_name_43 (character VARCHAR, year VARCHAR) |
SELECT score_in_final FROM table_name_54 WHERE champion = "boris becker" | What score in final has boris becker as the champion? | CREATE TABLE table_name_54 (score_in_final VARCHAR, champion VARCHAR) |
SELECT MIN(year) FROM table_name_8 WHERE event = "50km" AND result = "2nd" AND venue = "london, united kingdom" | What is earliest year that had a 50km event with a 2nd place result played in London, United Kingdom? | CREATE TABLE table_name_8 (year INTEGER, venue VARCHAR, event VARCHAR, result VARCHAR) |
SELECT 2000 AS _population FROM table_name_71 WHERE state_s_ = "ok" AND percent_change__1990_2000_ = "a078 +17.22%" | What is the 2000 population in OK with a 1990-2000 percent change of A078 +17.22%? | CREATE TABLE table_name_71 (state_s_ VARCHAR, percent_change__1990_2000_ VARCHAR) |
SELECT no FROM table_26914076_2 WHERE directed_by = "Simon Cellan Jones" | Name the number for simon cellan jones | CREATE TABLE table_26914076_2 (no VARCHAR, directed_by VARCHAR) |
SELECT record FROM table_name_53 WHERE december < 28 AND points < 38 AND game < 26 AND score = "0–1 ot" | Which Record has a December smaller than 28, and Points smaller than 38, and a Game smaller than 26, and a Score of 0–1 ot? | CREATE TABLE table_name_53 (record VARCHAR, score VARCHAR, game VARCHAR, december VARCHAR, points VARCHAR) |
SELECT original_air_date FROM table_18569389_1 WHERE directed_by = "Chris Long" | Name the air date that chris long directed | CREATE TABLE table_18569389_1 (original_air_date VARCHAR, directed_by VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.