answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 484 |
|---|---|---|
SELECT high_assists FROM table_27882867_9 WHERE team = "Indiana" | Who had the high assists when the opponent was Indiana? | CREATE TABLE table_27882867_9 (high_assists VARCHAR, team VARCHAR) |
SELECT MAX(bodyweight) FROM table_name_37 WHERE clean_ & _jerk > 120 AND total__kg_ = 245 | What is the highest Bodyweight associated with a Clean & jerk larger than 120, and a Total (kg) of 245? | CREATE TABLE table_name_37 (bodyweight INTEGER, total__kg_ VARCHAR, clean_ VARCHAR, _jerk VARCHAR) |
SELECT place FROM table_name_74 WHERE country = "united states" AND player = "bob murphy" | Where did Bob Murphy of the United States place? | CREATE TABLE table_name_74 (place VARCHAR, country VARCHAR, player VARCHAR) |
SELECT floors FROM table_name_44 WHERE street_address_in_detroit = "1828 jay street" | How many floors does the address 1828 jay street have? | CREATE TABLE table_name_44 (floors VARCHAR, street_address_in_detroit VARCHAR) |
SELECT 2013 FROM table_name_29 WHERE 2009 = "3r" | What in 2013 has a 2009 of 3r? | CREATE TABLE table_name_29 (Id VARCHAR) |
SELECT song FROM table_name_86 WHERE release_info = "heavenly (hvn152)" | Which song released on heavenly (hvn152)? | CREATE TABLE table_name_86 (song VARCHAR, release_info VARCHAR) |
SELECT origin FROM table_name_67 WHERE registration = "s5-hpb" | What is the country of origin of the aircraft with a registration s5-hpb? | CREATE TABLE table_name_67 (origin VARCHAR, registration VARCHAR) |
SELECT Nationality FROM journalist WHERE Years_working > 10 INTERSECT SELECT Nationality FROM journalist WHERE Years_working < 3 | Show the nations that have both journalists with more than 10 years of working and journalists with less than 3 years of working. | CREATE TABLE journalist (Nationality VARCHAR, Years_working INTEGER) |
SELECT MAX(1990) FROM table_name_94 WHERE 1980 < 719 AND 1960 < 205 AND 1996[2] < 364 AND 1970 > 251 | 1980 smaller than 719, and a 1960 smaller than 205, and a 1996[2] smaller than 364, and a 1970 larger than 251 is what 1990 highest? | CREATE TABLE table_name_94 (Id VARCHAR) |
SELECT 2008 FROM table_name_45 WHERE 2007 = "career statistics" | WHAT IS THE 2008 PERFORMANCE WITH A 2007 CAREER STATISTICS? | CREATE TABLE table_name_45 (Id VARCHAR) |
SELECT power_output FROM table_name_88 WHERE wheel_arrangement = "b-b" AND build_date = "1952" | What is the power of b-b wheel arrangement, built in 1952? | CREATE TABLE table_name_88 (power_output VARCHAR, wheel_arrangement VARCHAR, build_date VARCHAR) |
SELECT teaching_language FROM table_name_51 WHERE duration__years_ < 2 AND ects_credit_points < 65 | What is the teaching language for a less than 2 year duration and less than 65 ECTS credit points? | CREATE TABLE table_name_51 (teaching_language VARCHAR, duration__years_ VARCHAR, ects_credit_points VARCHAR) |
SELECT t1.customer_name FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id GROUP BY t1.customer_name ORDER BY COUNT(*) DESC LIMIT 1 | What is the name of the customer who has the most policies listed? | CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE customers_policies (customer_id VARCHAR) |
SELECT rank FROM table_name_32 WHERE club_clubs = "hawthorn" | Which rank is Hawthorn? | CREATE TABLE table_name_32 (rank VARCHAR, club_clubs VARCHAR) |
SELECT COUNT(no_in_season) FROM table_27755040_1 WHERE production_code = 175255 | How many episodes in the season had production code of 175255? | CREATE TABLE table_27755040_1 (no_in_season VARCHAR, production_code VARCHAR) |
SELECT score FROM table_name_29 WHERE record = "1-2-1" | What is the score of the game that has a record of 1-2-1? | CREATE TABLE table_name_29 (score VARCHAR, record VARCHAR) |
SELECT condition FROM table_name_75 WHERE prothrombin_time = "unaffected" AND bleeding_time = "prolonged" AND partial_thromboplastin_time = "unaffected" AND platelet_count = "decreased or unaffected" | I want to know the condition with Prothrombin time of unaffected and bleeding time of prolonged with partial thromboplastin time of unaffected with platelet count of decreased or unaffected | CREATE TABLE table_name_75 (condition VARCHAR, platelet_count VARCHAR, partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR) |
SELECT result FROM table_name_66 WHERE opponent = "new england patriots" | What was the final of the New England Patriots game? | CREATE TABLE table_name_66 (result VARCHAR, opponent VARCHAR) |
SELECT COUNT(year) FROM table_name_36 WHERE first = "antonio pompa-baldi italy" | How many years is Antonio Pompa-Baldi Italy first? | CREATE TABLE table_name_36 (year VARCHAR, first VARCHAR) |
SELECT COUNT(Champions) AS league FROM table_17505751_5 WHERE league = 5 AND position = "Forward" | when the position is forward and the league is 5 what number is the Champion league | CREATE TABLE table_17505751_5 (Champions VARCHAR, league VARCHAR, position VARCHAR) |
SELECT name FROM table_name_84 WHERE lane = 5 | Who was in Lane 5? | CREATE TABLE table_name_84 (name VARCHAR, lane VARCHAR) |
SELECT home_team FROM table_name_89 WHERE away_team = "vitória" | Who played as the home team when Vitória was the away team? | CREATE TABLE table_name_89 (home_team VARCHAR, away_team VARCHAR) |
SELECT MAX(losses) FROM table_name_6 WHERE away = "1-6" AND wins > 4 | What is the highest number of losses that a team who had an away record of 1-6 and more than 4 wins had? | CREATE TABLE table_name_6 (losses INTEGER, away VARCHAR, wins VARCHAR) |
SELECT MAX(no) FROM table_23294081_11 | What is the highest episode number? | CREATE TABLE table_23294081_11 (no INTEGER) |
SELECT title FROM table_name_79 WHERE composer_s_ = "sakdatorn" AND arranger_s_ = "jitrakorn mongkoltham" | What is the Title, when the Composer(s) is Sakdatorn, and when the Arranger(s) is Jitrakorn Mongkoltham? | CREATE TABLE table_name_79 (title VARCHAR, composer_s_ VARCHAR, arranger_s_ VARCHAR) |
SELECT runner_up FROM table_name_30 WHERE tournament = "majorca" | Tell me the runner-up for majorca | CREATE TABLE table_name_30 (runner_up VARCHAR, tournament VARCHAR) |
SELECT score FROM table_name_68 WHERE year > 1980 AND margin_of_victory = "2 strokes" AND country = "united states" AND player = "jim furyk" | Which Score has a Year larger than 1980, and a Margin of victory of 2 strokes, and a Country of united states, and a Player of jim furyk? | CREATE TABLE table_name_68 (score VARCHAR, player VARCHAR, country VARCHAR, year VARCHAR, margin_of_victory VARCHAR) |
SELECT MAX(ofsted_number) FROM table_name_36 WHERE type = "infants" AND intake > 60 | Can you tell me the highest Ofsted number that has the Type of infants, and the Intake larger than 60? | CREATE TABLE table_name_36 (ofsted_number INTEGER, type VARCHAR, intake VARCHAR) |
SELECT party FROM table_1341577_36 WHERE incumbent = "Tom Luken" | Which party does Tom Luken belong to? | CREATE TABLE table_1341577_36 (party VARCHAR, incumbent VARCHAR) |
SELECT original_us_air_date FROM table_name_80 WHERE original_canadian_air_date = "december 9, 2007" | What is the Original U.S. air-date for the Original Canadian air-date of december 9, 2007? | CREATE TABLE table_name_80 (original_us_air_date VARCHAR, original_canadian_air_date VARCHAR) |
SELECT australian FROM table_name_81 WHERE short_vowels = "e /ɛ/" | What Australian sound is equivalent to e /ɛ/? | CREATE TABLE table_name_81 (australian VARCHAR, short_vowels VARCHAR) |
SELECT SUM(silver) FROM table_name_33 WHERE rank > 5 AND bronze > 6 AND gold < 2 | How many silver medals were awarded to the Nation with less than 2 gold, more than 6 bronze and a rank higher than 5? | CREATE TABLE table_name_33 (silver INTEGER, gold VARCHAR, rank VARCHAR, bronze VARCHAR) |
SELECT issue_price__proof_ FROM table_11916083_1 WHERE issue_price__bu_[_clarification_needed_] = "34.95" | What is the issue price (proof) where the issue price (bu) is 34.95? | CREATE TABLE table_11916083_1 (issue_price__proof_ VARCHAR, issue_price__bu_ VARCHAR, _clarification_needed_ VARCHAR) |
SELECT digital_analog_signal FROM table_name_71 WHERE available_interface = "pci express" AND retail_name = "all-in-wonder x600 pro" | What is the Digital/analog signal with an Available interface with pci express, with Retail name with all-in-wonder x600 pro? | CREATE TABLE table_name_71 (digital_analog_signal VARCHAR, available_interface VARCHAR, retail_name VARCHAR) |
SELECT result FROM table_name_12 WHERE week = 16 | What was the score during week 16? | CREATE TABLE table_name_12 (result VARCHAR, week VARCHAR) |
SELECT revenues FROM table_name_15 WHERE name = "ōoka tadayoshi (2nd) (大岡忠愛)" | What are the revenues for ōoka tadayoshi (2nd) (大岡忠愛)? | CREATE TABLE table_name_15 (revenues VARCHAR, name VARCHAR) |
SELECT constructor FROM table_name_47 WHERE grid < 10 AND laps > 76 AND driver = "juan manuel fangio" | Who constructed juan manuel fangio's car with over 76 laps and a grid under 10? | CREATE TABLE table_name_47 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR) |
SELECT opponent FROM table_name_89 WHERE attendance > 59 OFFSET 000 | Who is the opponent of the match with an attendance larger than 59,000? | CREATE TABLE table_name_89 (opponent VARCHAR, attendance INTEGER) |
SELECT country FROM table_name_37 WHERE score = 69 - 70 = 139 AND player = "bart bryant" | What country did Bart Bryant with a score of 69-70=139 belong to? | CREATE TABLE table_name_37 (country VARCHAR, player VARCHAR, score VARCHAR) |
SELECT stadium FROM table_name_86 WHERE runs = "144" | What is the stadium name that has 144 as the runs? | CREATE TABLE table_name_86 (stadium VARCHAR, runs VARCHAR) |
SELECT third FROM table_name_32 WHERE discipline = "0.8km f sprint" | Who was third at the 0.8km f sprint discipline? | CREATE TABLE table_name_32 (third VARCHAR, discipline VARCHAR) |
SELECT 2007 FROM table_name_28 WHERE position = 6 | What is the 2007 rating of the channel with a position of 6? | CREATE TABLE table_name_28 (position VARCHAR) |
SELECT venue FROM table_name_49 WHERE away_team = "footscray" | Where was the game against the away team Footscray held? | CREATE TABLE table_name_49 (venue VARCHAR, away_team VARCHAR) |
SELECT score FROM table_name_15 WHERE site_stadium = "sarge frye field" | What was the score for the game played at Sarge Frye Field? | CREATE TABLE table_name_15 (score VARCHAR, site_stadium VARCHAR) |
SELECT COUNT(sp) + fs FROM table_name_75 WHERE rank > 8 AND nation = "netherlands" AND points > 127.26 | Tell me the total number of SP+FS with rank more than 8 for the netherlands and points more than 127.26 | CREATE TABLE table_name_75 (fs VARCHAR, sp VARCHAR, points VARCHAR, rank VARCHAR, nation VARCHAR) |
SELECT COUNT(founded) FROM table_name_96 WHERE suburb = "nerang" | What year did the Nerang Suburb get founded? | CREATE TABLE table_name_96 (founded VARCHAR, suburb VARCHAR) |
SELECT quantity_preserved FROM table_name_11 WHERE fleet_number_s_ = "3000–3015" | What is the quantity preserved for fleet number(s) 3000–3015? | CREATE TABLE table_name_11 (quantity_preserved VARCHAR, fleet_number_s_ VARCHAR) |
SELECT netflix FROM table_15187735_6 WHERE segment_b = "s Highlighter" | What is the Netflix Episode when the Segment B is s Highlighter? | CREATE TABLE table_15187735_6 (netflix VARCHAR, segment_b VARCHAR) |
SELECT original_air_date FROM table_27657925_1 WHERE written_by = "Steve Holland" | When steve holland is the writer what is the air date? | CREATE TABLE table_27657925_1 (original_air_date VARCHAR, written_by VARCHAR) |
SELECT MAX(elevation__m_) FROM table_18946749_1 WHERE peak = "Mount Kobowre" | When mount kobowre is the peak what is the highest elevation in meters? | CREATE TABLE table_18946749_1 (elevation__m_ INTEGER, peak VARCHAR) |
SELECT date_of_appointment FROM table_name_68 WHERE replaced_by = "lucien favre" | When was the appointment date for the manager replaced by Lucien Favre? | CREATE TABLE table_name_68 (date_of_appointment VARCHAR, replaced_by VARCHAR) |
SELECT MIN(fleet_size) FROM table_15637071_1 WHERE callsign = "COOL RED" | What is the fleet size of the airline which has a callsign of cool red? | CREATE TABLE table_15637071_1 (fleet_size INTEGER, callsign VARCHAR) |
SELECT outcome FROM table_name_60 WHERE opponents_in_the_final = "serena williams venus williams" AND surface = "hard" | What was the outcome when the oppenent was serena williams venus williams and had a hard surface? | CREATE TABLE table_name_60 (outcome VARCHAR, opponents_in_the_final VARCHAR, surface VARCHAR) |
SELECT viewers_millions_ FROM table_12919003_2 WHERE episode = "episode 5" | How many viewers did Episode 5 have? | CREATE TABLE table_12919003_2 (viewers_millions_ VARCHAR, episode VARCHAR) |
SELECT webcast FROM table_name_54 WHERE website = "ktrh.com" | The KTRH.com website includes which type of webcast? | CREATE TABLE table_name_54 (webcast VARCHAR, website VARCHAR) |
SELECT area FROM table_name_73 WHERE name = "william colenso college" | Which area has a Name of william colenso college? | CREATE TABLE table_name_73 (area VARCHAR, name VARCHAR) |
SELECT stadium FROM table_name_21 WHERE attendance = "65,677" | Which stadium held the game that 65,677 people attended? | CREATE TABLE table_name_21 (stadium VARCHAR, attendance VARCHAR) |
SELECT COUNT(game) FROM table_name_74 WHERE record = "7–6–3" AND points < 17 | How many games have a Record of 7–6–3, and Points smaller than 17? | CREATE TABLE table_name_74 (game VARCHAR, record VARCHAR, points VARCHAR) |
SELECT MAX(attendance) FROM table_name_89 WHERE date = "may 7" | What's greatest attendance on May 7? | CREATE TABLE table_name_89 (attendance INTEGER, date VARCHAR) |
SELECT MIN(runs) FROM table_26041144_10 | What is the smallest number of runs? | CREATE TABLE table_26041144_10 (runs INTEGER) |
SELECT date FROM table_name_60 WHERE label = "sony music direct" | When did sony music direct a label? | CREATE TABLE table_name_60 (date VARCHAR, label VARCHAR) |
SELECT outcome FROM table_name_55 WHERE opponent = "frederic jeanclaude" | What is the Outcome of the game against Frederic Jeanclaude? | CREATE TABLE table_name_55 (outcome VARCHAR, opponent VARCHAR) |
SELECT time_retired FROM table_name_7 WHERE driver = "darren manning" | What was the time/retired of Darren Manning? | CREATE TABLE table_name_7 (time_retired VARCHAR, driver VARCHAR) |
SELECT athlete FROM table_name_71 WHERE country = "hong kong" | Who was the athlete from Hong Kong? | CREATE TABLE table_name_71 (athlete VARCHAR, country VARCHAR) |
SELECT federal_state FROM table_name_3 WHERE representatives_of_national_average = "6" | Which federal state has 6 representatives of national average? | CREATE TABLE table_name_3 (federal_state VARCHAR, representatives_of_national_average VARCHAR) |
SELECT road_team FROM table_name_61 WHERE result = "117-114" | Which road team has a result of 117-114? | CREATE TABLE table_name_61 (road_team VARCHAR, result VARCHAR) |
SELECT title FROM table_name_98 WHERE rank > 10 AND director = "walter hill" | WHAT IS THE TITLE THAT HAS A RANK BIGGER THAN 10, FOR DIRECTOR WALTER HILL? | CREATE TABLE table_name_98 (title VARCHAR, rank VARCHAR, director VARCHAR) |
SELECT high_points FROM table_name_35 WHERE date = "january 20" | What is the High points with a Date that is january 20? | CREATE TABLE table_name_35 (high_points VARCHAR, date VARCHAR) |
SELECT COUNT(Ends) AS won FROM table_15333005_1 WHERE l = 4 AND stolen_ends = 17 | Name the number ends won when L is 4 and stolen ends is 17 | CREATE TABLE table_15333005_1 (Ends VARCHAR, l VARCHAR, stolen_ends VARCHAR) |
SELECT defensive FROM table_14132239_3 WHERE rookie = "Daryl Veltman" AND offensive = "Mark Steenhuis" | Who was the defensive award winner when the rookie award was given to Daryl Veltman and the offensive award was given to Mark Steenhuis? | CREATE TABLE table_14132239_3 (defensive VARCHAR, rookie VARCHAR, offensive VARCHAR) |
SELECT SUM(downhill_points) FROM table_name_50 WHERE total = "9.31" | What are the downhill points for the skier with total of 9.31 points? | CREATE TABLE table_name_50 (downhill_points INTEGER, total VARCHAR) |
SELECT T1.Name, T1.population FROM country AS T1 JOIN roller_coaster AS T2 ON T1.Country_ID = T2.Country_ID ORDER BY T2.Height DESC LIMIT 1 | Show the name and population of the country that has the highest roller coaster. | CREATE TABLE roller_coaster (Country_ID VARCHAR, Height VARCHAR); CREATE TABLE country (Name VARCHAR, population VARCHAR, Country_ID VARCHAR) |
SELECT opponent FROM table_name_57 WHERE date = "july 21, 2008" | Which opponent was on July 21, 2008? | CREATE TABLE table_name_57 (opponent VARCHAR, date VARCHAR) |
SELECT name FROM table_name_31 WHERE terminated = "march 1993" | What is the Name of the Space Telescope Terminated on March 1993? | CREATE TABLE table_name_31 (name VARCHAR, terminated VARCHAR) |
SELECT opponents FROM table_name_59 WHERE score = "6–4, 6–3" | Which Opponents have a Score of 6–4, 6–3? | CREATE TABLE table_name_59 (opponents VARCHAR, score VARCHAR) |
SELECT player FROM table_name_10 WHERE rank = 2 AND seasons = "1982–83, 1983–84, 1984–85" | What player is ranked 2 and played in the seasons of 1982–83, 1983–84, 1984–85? | CREATE TABLE table_name_10 (player VARCHAR, rank VARCHAR, seasons VARCHAR) |
SELECT away_team AS score FROM table_name_57 WHERE home_team = "collingwood" | What was the score for the away team when they played collingwood? | CREATE TABLE table_name_57 (away_team VARCHAR, home_team VARCHAR) |
SELECT location_attendance FROM table_27756572_2 WHERE date = "October 12" | What was the location and the attendance for the game on October 12? | CREATE TABLE table_27756572_2 (location_attendance VARCHAR, date VARCHAR) |
SELECT COUNT(round) FROM table_name_90 WHERE player = "james reed" | What was James Reed's draft round number? | CREATE TABLE table_name_90 (round VARCHAR, player VARCHAR) |
SELECT COUNT(year) FROM table_2268216_1 WHERE team = "Joe Gibbs Racing" AND manufacturer = "Pontiac" | How many years was Pontiac the manufacturer for Joe Gibbs Racing? | CREATE TABLE table_2268216_1 (year VARCHAR, team VARCHAR, manufacturer VARCHAR) |
SELECT product_id FROM problems AS T1 JOIN staff AS T2 ON T1.reported_by_staff_id = T2.staff_id WHERE T2.staff_first_name = "Dameon" AND T2.staff_last_name = "Frami" UNION SELECT product_id FROM problems AS T1 JOIN staff AS T2 ON T1.reported_by_staff_id = T2.staff_id WHERE T2.staff_first_name = "Jolie" AND T2.staff_las... | What are the id of problems reported by the staff named Dameon Frami or Jolie Weber? | CREATE TABLE staff (staff_id VARCHAR, staff_first_name VARCHAR, staff_last_name VARCHAR); CREATE TABLE problems (reported_by_staff_id VARCHAR) |
SELECT location_attendance FROM table_name_27 WHERE record = "11–34" | Which Location Attendance has a Record of 11–34? | CREATE TABLE table_name_27 (location_attendance VARCHAR, record VARCHAR) |
SELECT song_choice FROM table_name_99 WHERE original_artist = "elaine paige" | What is the Song choice when Elaine Paige was the Original artist? | CREATE TABLE table_name_99 (song_choice VARCHAR, original_artist VARCHAR) |
SELECT album FROM table_name_21 WHERE label = "reunion" AND year = 2006 | What album had the reunion label in 2006? | CREATE TABLE table_name_21 (album VARCHAR, label VARCHAR, year VARCHAR) |
SELECT gdp___bn__ FROM table_12108_1 WHERE "capital" = "capital" | what is the gdp ( bn ) where capital is capital? | CREATE TABLE table_12108_1 (gdp___bn__ VARCHAR) |
SELECT hanja___kanji FROM table_name_5 WHERE korean_name = "chungcheong-bukdo" | What is the Hanja/Kanji of the Province with a Korean name of Chungcheong-Bukdo? | CREATE TABLE table_name_5 (hanja___kanji VARCHAR, korean_name VARCHAR) |
SELECT crowd FROM table_name_18 WHERE venue = "victoria park" | What was the crowd size at Victoria Park? | CREATE TABLE table_name_18 (crowd VARCHAR, venue VARCHAR) |
SELECT place FROM table_name_70 WHERE player = "gil morgan" | What is Gil Morgan's Place? | CREATE TABLE table_name_70 (place VARCHAR, player VARCHAR) |
SELECT framed_size FROM table_15070195_1 WHERE nickname = "Robot Black" | for the robot black nickname, what framed size is used | CREATE TABLE table_15070195_1 (framed_size VARCHAR, nickname VARCHAR) |
SELECT builder FROM table_name_39 WHERE date = "early 1871" | Which Builder has a Date of early 1871? | CREATE TABLE table_name_39 (builder VARCHAR, date VARCHAR) |
SELECT COUNT(party) FROM table_1341690_5 WHERE district = "California 23" | How many parties won the election in the California 23 district? | CREATE TABLE table_1341690_5 (party VARCHAR, district VARCHAR) |
SELECT place FROM table_name_85 WHERE to_par = "e" | What is the place number for the player with a To Par score of 'E'? | CREATE TABLE table_name_85 (place VARCHAR, to_par VARCHAR) |
SELECT opponent FROM table_name_37 WHERE round = "1" AND time = "n/a" | Name the opponent with round of 1 and time of n/a | CREATE TABLE table_name_37 (opponent VARCHAR, round VARCHAR, time VARCHAR) |
SELECT qld_cup_premierships FROM table_2383498_4 WHERE home_ground = "Dairy Farmers Stadium" | What is every entry in the QLD Cup Premierships when home ground is Dairy Farmers Stadium? | CREATE TABLE table_2383498_4 (qld_cup_premierships VARCHAR, home_ground VARCHAR) |
SELECT away_team FROM table_name_95 WHERE home_team = "brighton & hove albion" | Who was the away team when Brighton & Hove Albion was home? | CREATE TABLE table_name_95 (away_team VARCHAR, home_team VARCHAR) |
SELECT player FROM table_13758243_1 WHERE position = "Kicker" | What kicker was drafted? | CREATE TABLE table_13758243_1 (player VARCHAR, position VARCHAR) |
SELECT COUNT(draws) FROM table_14889048_2 WHERE team = "Libertad" | How may draws did libertad have? | CREATE TABLE table_14889048_2 (draws VARCHAR, team VARCHAR) |
SELECT MIN(_number) FROM table_10749367_3 WHERE air_date = "18 April 2007" | What episode aired on 18 April 2007? | CREATE TABLE table_10749367_3 (_number INTEGER, air_date VARCHAR) |
SELECT player FROM table_11677760_1 WHERE college = "Direct to NBA" AND school = "St. Vincent – St. Mary High school" AND year = "2001-2002" | what is the player who's college is listed as direct to nba, school is st. vincent – st. mary high school and the year is 2001-2002? | CREATE TABLE table_11677760_1 (player VARCHAR, year VARCHAR, college VARCHAR, school VARCHAR) |
SELECT series FROM table_name_2 WHERE production_number = "95, br 1254" | Name the Series with Production Number of 95, br 1254? | CREATE TABLE table_name_2 (series VARCHAR, production_number VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.