answer stringlengths 6 3.91k | question stringlengths 7 766 | context stringlengths 27 7.14k |
|---|---|---|
SELECT at_columbia FROM table_16201038_5 WHERE overall_record = "MU, 3-1" | What is the record at Columbia for the team overall record of MU, 3-1? | CREATE TABLE table_16201038_5 (at_columbia VARCHAR, overall_record VARCHAR) |
SELECT "team" FROM table_203_348 GROUP BY "team" ORDER BY COUNT(*) DESC LIMIT 1 | which nba team has more retired jerseys than any other nba team ? | CREATE TABLE table_203_348 (
id number,
"number" number,
"name" text,
"team" text,
"position" text,
"years with franchise" text,
"note" text
) |
SELECT report FROM table_name_98 WHERE location = "buenos aires" | What was the report in Buenos Aires? | CREATE TABLE table_name_98 (report VARCHAR, location VARCHAR) |
SELECT COUNT(length_feet) FROM table_16226584_1 WHERE length_meters = "106.1" | How many feet in length are there when the length is 106.1 meters? | CREATE TABLE table_16226584_1 (length_feet VARCHAR, length_meters VARCHAR) |
SELECT "Visitor" FROM table_54349 WHERE "Home" = 'miami' AND "Date" = 'november 4' | Which Visitor was there when the Home game was played in Miami on November 4? | CREATE TABLE table_54349 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Leading scorer" text,
"Attendance" real,
"Record" text
) |
SELECT date FROM table_name_12 WHERE race = "italian grand prix" | What date was the Italian Grand Prix? | CREATE TABLE table_name_12 (date VARCHAR, race VARCHAR) |
SELECT MIN(length_feet) FROM table_16226584_1 WHERE km_from_kingston = "105.4" | When the kilometers from kingston is 105.4 what is the minimum amount of length in feet? | CREATE TABLE table_16226584_1 (length_feet INTEGER, km_from_kingston VARCHAR) |
SELECT activity_name, COUNT(*) FROM Activity AS T1 JOIN Faculty_Participates_in AS T2 ON T1.actid = T2.actid GROUP BY T1.actid ORDER BY COUNT(*) | Show all the activity names and the number of faculty involved in each activity in a bar chart, and could you rank total number from low to high order? | CREATE TABLE Activity (
actid INTEGER,
activity_name varchar(25)
)
CREATE TABLE Faculty (
FacID INTEGER,
Lname VARCHAR(15),
Fname VARCHAR(15),
Rank VARCHAR(15),
Sex VARCHAR(1),
Phone INTEGER,
Room VARCHAR(5),
Building VARCHAR(13)
)
CREATE TABLE Student (
StuID INTEGER,
... |
SELECT report FROM table_name_54 WHERE pole_position = "mario andretti" AND fastest_lap = "jean-pierre jarier" | What was the report when Mario Andretti held pole position and Jean-Pierre Jarier had the fastest lap? | CREATE TABLE table_name_54 (report VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR) |
SELECT parish FROM table_16226584_1 WHERE length_meters = "51.8" | Which parishes have a railroad length of 51.8 meters? | CREATE TABLE table_16226584_1 (parish VARCHAR, length_meters VARCHAR) |
SELECT MIN(losses) FROM table_name_60 WHERE wins = 1 AND team = "dallas stars" AND win__percentage < 0.25 | What's the lowest Losses recorded wiht a Wins of 1, Team of Dallas Stars, and a Win % that's smaller than 0.25? | CREATE TABLE table_name_60 (
losses INTEGER,
win__percentage VARCHAR,
wins VARCHAR,
team VARCHAR
) |
SELECT report FROM table_name_5 WHERE race = "belgian grand prix" | What was the report in the Belgian Grand Prix? | CREATE TABLE table_name_5 (report VARCHAR, race VARCHAR) |
SELECT mi_from_kingston FROM table_16226584_1 WHERE length_feet = 362 | When the railroad length is 362 feet how many miles is it from kingston? | CREATE TABLE table_16226584_1 (mi_from_kingston VARCHAR, length_feet VARCHAR) |
SELECT T1.Name, T1.Manufacturer FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Founder, T1.Name ORDER BY T1.Manufacturer DESC | For those records from the products and each product's manufacturer, find name and manufacturer , and group by attribute founder, and visualize them by a bar chart, rank Y-axis in descending order. | CREATE TABLE Products (
Code INTEGER,
Name VARCHAR(255),
Price DECIMAL,
Manufacturer INTEGER
)
CREATE TABLE Manufacturers (
Code INTEGER,
Name VARCHAR(255),
Headquarter VARCHAR(255),
Founder VARCHAR(255),
Revenue REAL
) |
SELECT race AS Winner FROM table_name_48 WHERE pole_position = "niki lauda" | Who was the winner when Niki Lauda held pole position? | CREATE TABLE table_name_48 (race VARCHAR, pole_position VARCHAR) |
SELECT parish FROM table_16226584_1 WHERE name = "Highworth" | Which parishes have the highworth railroad? | CREATE TABLE table_16226584_1 (parish VARCHAR, name VARCHAR) |
SELECT DISTINCT department, name, number FROM course WHERE (description LIKE '%topic0%' OR name LIKE '%topic0%') AND department = 'EECS' | Do any upper-level classes not have 575 as a prerequisite ? | CREATE TABLE program (
program_id int,
name varchar,
college varchar,
introduction varchar
)
CREATE TABLE program_requirement (
program_id int,
category varchar,
min_credit int,
additional_req varchar
)
CREATE TABLE student_record (
student_id int,
course_id int,
semester i... |
SELECT fastest_lap FROM table_name_98 WHERE race = "monaco grand prix" | Who had the fastest lap in the Monaco Grand Prix? | CREATE TABLE table_name_98 (fastest_lap VARCHAR, race VARCHAR) |
SELECT name FROM table_16226584_1 WHERE km_from_kingston = "112.6" | Which railroad is 112.6 kilometers from kingston? | CREATE TABLE table_16226584_1 (name VARCHAR, km_from_kingston VARCHAR) |
SELECT "Place" FROM table_21132 WHERE "% of popular vote" = '0.86%' | What place did the party finish in the year when they earned 0.86% of the vote? | CREATE TABLE table_21132 (
"Election" real,
"Candidates fielded" real,
"# of seats won" real,
"Total votes" real,
"% of popular vote" text,
"Place" text
) |
SELECT object_type FROM table_name_58 WHERE constellation = "cancer" | Which Object type has a Constellation of cancer? | CREATE TABLE table_name_58 (object_type VARCHAR, constellation VARCHAR) |
SELECT MAX(_number) FROM table_16227492_1 WHERE opponent = "New England Blazers" | Name the most number for new england blazers | CREATE TABLE table_16227492_1 (_number INTEGER, opponent VARCHAR) |
SELECT DISTINCT cost.cost FROM cost WHERE cost.eventtype = 'lab' AND cost.eventid IN (SELECT lab.labid FROM lab WHERE lab.labname = 'fe') | how much is fe? | CREATE TABLE allergy (
allergyid number,
patientunitstayid number,
drugname text,
allergyname text,
allergytime time
)
CREATE TABLE medication (
medicationid number,
patientunitstayid number,
drugname text,
dosage text,
routeadmin text,
drugstarttime time,
drugstoptime t... |
SELECT MAX(ngc_number) FROM table_name_1 WHERE constellation = "ursa major" | Which NGC number has a Constellation of ursa major? | CREATE TABLE table_name_1 (ngc_number INTEGER, constellation VARCHAR) |
SELECT MAX(attendance) FROM table_16227492_1 | Name the most attendance | CREATE TABLE table_16227492_1 (attendance INTEGER) |
SELECT prescriptions.drug FROM prescriptions WHERE prescriptions.formulary_drug_cd = "DIGO25" | what is drug name of drug code digo25? | CREATE TABLE prescriptions (
subject_id text,
hadm_id text,
icustay_id text,
drug_type text,
drug text,
formulary_drug_cd text,
route text,
drug_dose text
)
CREATE TABLE lab (
subject_id text,
hadm_id text,
itemid text,
charttime text,
flag text,
value_unit text,... |
SELECT constellation FROM table_name_3 WHERE ngc_number < 2775 AND declination___j2000__ = "Β°05β²07β³" | Which Constellation has a NGC number smaller than 2775, and a Declination (J2000) of Β°05β²07β³? | CREATE TABLE table_name_3 (constellation VARCHAR, ngc_number VARCHAR, declination___j2000__ VARCHAR) |
SELECT MAX(attendance) FROM table_16227492_1 WHERE _number = 4 | Name the most attendance for number 4 | CREATE TABLE table_16227492_1 (attendance INTEGER, _number VARCHAR) |
SELECT "Crew" FROM table_70280 WHERE "Duration" = '12 minutes' | Who was the crew for the duration of 12 minutes? | CREATE TABLE table_70280 (
"Start Date/Time" text,
"Duration" text,
"End Time" text,
"Spacecraft" text,
"Crew" text
) |
SELECT object_type FROM table_name_19 WHERE ngc_number = 2787 | Which Object type has a NGC number of 2787? | CREATE TABLE table_name_19 (object_type VARCHAR, ngc_number VARCHAR) |
SELECT preliminary_average FROM table_16268026_3 WHERE semifinal_average = "8.834 (3)" | What is the preliminary average when the semifinal average is 8.834 (3) ? | CREATE TABLE table_16268026_3 (preliminary_average VARCHAR, semifinal_average VARCHAR) |
SELECT name FROM table_25762852_1 WHERE lifts = 30 | if there are 30 lifts, what is the name of the ski resort? | CREATE TABLE table_25762852_1 (
name VARCHAR,
lifts VARCHAR
) |
SELECT venue FROM table_name_46 WHERE away_team = "st kilda" | Where did St KIlda play their away game? | CREATE TABLE table_name_46 (venue VARCHAR, away_team VARCHAR) |
SELECT interview FROM table_16268026_3 WHERE preliminary_average = "8.662 (3)" | What is the interview when preliminary average is 8.662 (3) ? | CREATE TABLE table_16268026_3 (interview VARCHAR, preliminary_average VARCHAR) |
SELECT COUNT(scm_system) FROM table_22903426_1 WHERE windows_builders = "NAnt, Visual Studio" | Name the number of scm system for nant, visual studio | CREATE TABLE table_22903426_1 (
scm_system VARCHAR,
windows_builders VARCHAR
) |
SELECT score FROM table_name_79 WHERE visitor = "philadelphia" AND record = "7β4β0" | What is the score when Philadelphia was the visitor with a Record of 7β4β0? | CREATE TABLE table_name_79 (score VARCHAR, visitor VARCHAR, record VARCHAR) |
SELECT state FROM table_16268026_3 WHERE semifinal_average = "8.538 (8)" | What state has a semifinal average of 8.538 (8) ? | CREATE TABLE table_16268026_3 (state VARCHAR, semifinal_average VARCHAR) |
SELECT segment_a FROM table_name_5 WHERE segment_b = "aerospace fuel lines" | Segment B of aerospace fuel lines has what segment A? | CREATE TABLE table_name_5 (
segment_a VARCHAR,
segment_b VARCHAR
) |
SELECT nominee FROM table_name_65 WHERE category = "outstanding featured actor in a musical" AND result = "nominated" | What was nominee nominated for outstanding featured actor in a musical? | CREATE TABLE table_name_65 (nominee VARCHAR, category VARCHAR, result VARCHAR) |
SELECT state FROM table_16268026_3 WHERE interview = "8.313 (8)" | What state has an interview of 8.313 (8) ? | CREATE TABLE table_16268026_3 (state VARCHAR, interview VARCHAR) |
SELECT AVG("Year") FROM table_63900 WHERE "Saar" = 'fk pirmasens' AND "Hessen" = 'wormatia worms' | What is the average year for a Saar of FK Pirmasens and Hessen of Wormatia Worms? | CREATE TABLE table_63900 (
"Year" real,
"Main" text,
"Hessen" text,
"Rhein" text,
"Saar" text
) |
SELECT result FROM table_name_17 WHERE award = "drama desk award" AND nominee = "patricia mcgourty" | What is the result of nominee, Patricia McGourty, for the drama desk award? | CREATE TABLE table_name_17 (result VARCHAR, award VARCHAR, nominee VARCHAR) |
SELECT semifinal_average FROM table_16268026_3 WHERE preliminary_average = "9.084 (1)" | What is the semifinal average where the preliminary average is 9.084 (1) ? | CREATE TABLE table_16268026_3 (semifinal_average VARCHAR, preliminary_average VARCHAR) |
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.dod_year <= "2168.0" AND procedures.icd9_code = "3142" | give me the number of patients whose year of death is less than or equal to 2168 and procedure icd9 code is 3142? | CREATE TABLE procedures (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE demographic (
subject_id text,
hadm_id text,
name text,
marital_status text,
age text,
dob text,
gender text,
language text,
religion text,
... |
SELECT year FROM table_name_41 WHERE nominee = "patricia mcgourty" AND award = "tony award" | What year was Patricia Mcgourty nominated for a Tony award? | CREATE TABLE table_name_41 (year VARCHAR, nominee VARCHAR, award VARCHAR) |
SELECT swimsuit FROM table_16268026_3 WHERE evening_gown = "8.774 (6)" | What is the swimsuit when evening gown is 8.774 (6) ? | CREATE TABLE table_16268026_3 (swimsuit VARCHAR, evening_gown VARCHAR) |
SELECT T2.Name FROM body_builder AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID | What are the names of body builders? | CREATE TABLE people (
Name VARCHAR,
People_ID VARCHAR
)
CREATE TABLE body_builder (
People_ID VARCHAR
) |
SELECT driver FROM table_name_44 WHERE laps > 16 AND constructor = "ferrari" AND grid < 15 | I want the driver with Laps larger than 16 with a ferrari and grid less than 15 | CREATE TABLE table_name_44 (driver VARCHAR, grid VARCHAR, laps VARCHAR, constructor VARCHAR) |
SELECT pop_density__per_kmΒ²_ FROM table_16278602_1 WHERE english_name = "Capital Region of Denmark" | What is the population density of the Capital Region of Denmark? | CREATE TABLE table_16278602_1 (pop_density__per_kmΒ²_ VARCHAR, english_name VARCHAR) |
SELECT "Home team score" FROM table_4739 WHERE "Home team" = 'north melbourne' | What was the North Melbourne's score when they played as the home team? | CREATE TABLE table_4739 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
) |
SELECT d_46_β FROM table_name_2 WHERE d_43_β = "r 3" | What is the D 46 β with a D 43 β with r 3? | CREATE TABLE table_name_2 (d_46_β VARCHAR, d_43_β VARCHAR) |
SELECT seat_of_administration FROM table_16278602_1 WHERE largest_city = "Roskilde" | In the region where Roskilde is the largest city, what is the seat of administration? | CREATE TABLE table_16278602_1 (seat_of_administration VARCHAR, largest_city VARCHAR) |
SELECT opponent FROM table_name_29 WHERE attendance = "7,034" | Which Opponent has a Attendance of 7,034? | CREATE TABLE table_name_29 (
opponent VARCHAR,
attendance VARCHAR
) |
SELECT d_43_β FROM table_name_64 WHERE d_49_β = "d 49 β" | What is the D 43 β with a D 49 β with d 49 β? | CREATE TABLE table_name_64 (d_43_β VARCHAR, d_49_β VARCHAR) |
SELECT MIN(population__january_1), _2008_ FROM table_16278602_1 WHERE largest_city = "Roskilde" | What is the minimum population of the region in which Roskilde is the largest city? | CREATE TABLE table_16278602_1 (_2008_ VARCHAR, population__january_1 INTEGER, largest_city VARCHAR) |
SELECT admissions.dischtime FROM admissions WHERE admissions.subject_id = 14621 AND DATETIME(admissions.dischtime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-0 year') ORDER BY admissions.dischtime LIMIT 1 | when did the first hospital discharge of patient 14621 in this year? | CREATE TABLE inputevents_cv (
row_id number,
subject_id number,
hadm_id number,
icustay_id number,
charttime time,
itemid number,
amount number
)
CREATE TABLE d_labitems (
row_id number,
itemid number,
label text
)
CREATE TABLE diagnoses_icd (
row_id number,
subject_id ... |
SELECT d_48_β FROM table_name_87 WHERE d_46_β = "r 33 o" | What is the D 48 β with a D 46 β with r 33 o? | CREATE TABLE table_name_87 (d_48_β VARCHAR, d_46_β VARCHAR) |
SELECT COUNT(language_s_) FROM table_16254861_1 WHERE year__ceremony_ = "2001 (74th)" | How many languages for the 2001 (74th) awards? | CREATE TABLE table_16254861_1 (language_s_ VARCHAR, year__ceremony_ VARCHAR) |
SELECT T1.Name, T1.Price FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T1.Name, T1.Name | For those records from the products and each product's manufacturer, return a bar chart about the distribution of name and price , and group by attribute name. | CREATE TABLE Products (
Code INTEGER,
Name VARCHAR(255),
Price DECIMAL,
Manufacturer INTEGER
)
CREATE TABLE Manufacturers (
Code INTEGER,
Name VARCHAR(255),
Headquarter VARCHAR(255),
Founder VARCHAR(255),
Revenue REAL
) |
SELECT d_48_β FROM table_name_27 WHERE d_49_β = "r 9" | What is the D 48 β with a D 49 β with r 9? | CREATE TABLE table_name_27 (d_48_β VARCHAR, d_49_β VARCHAR) |
SELECT result FROM table_16254861_1 WHERE year__ceremony_ = "2009 (82nd)" | What was the result for the 2009 (82nd) awards? | CREATE TABLE table_16254861_1 (result VARCHAR, year__ceremony_ VARCHAR) |
SELECT control FROM table_2076533_1 WHERE main_location = "Albany" | Name the control for albany | CREATE TABLE table_2076533_1 (
control VARCHAR,
main_location VARCHAR
) |
SELECT d_46_β FROM table_name_94 WHERE d_41_β = "d 38 β" | What is the D 46 β with a D 41 β with d 38 β? | CREATE TABLE table_name_94 (d_46_β VARCHAR, d_41_β VARCHAR) |
SELECT original_title FROM table_16255245_1 WHERE film_title_used_in_nomination = "The Counterfeiters" | Name the original title for the counterfeiters | CREATE TABLE table_16255245_1 (original_title VARCHAR, film_title_used_in_nomination VARCHAR) |
SELECT MIN(rank) FROM table_name_68 WHERE location = "university park, pa" | What is the lowest rank that has university park, pa as the location? | CREATE TABLE table_name_68 (
rank INTEGER,
location VARCHAR
) |
SELECT d_45_β FROM table_name_99 WHERE d_46_β = "d 46 β" | What is the D 45 β with a D 46 β with d 46 β? | CREATE TABLE table_name_99 (d_45_β VARCHAR, d_46_β VARCHAR) |
SELECT year__ceremony_ FROM table_16255245_1 WHERE original_title = "Spiele Leben" | Name the year for spiele leben | CREATE TABLE table_16255245_1 (year__ceremony_ VARCHAR, original_title VARCHAR) |
SELECT "Score" FROM table_47605 WHERE "Record" = '2-2' | What was the score of the game where the record was 2-2? | CREATE TABLE table_47605 (
"Date" text,
"Visitor" text,
"Score" text,
"Home" text,
"Record" text
) |
SELECT constructor FROM table_name_31 WHERE laps = 25 | Which constructor was there for the race with 25 laps? | CREATE TABLE table_name_31 (constructor VARCHAR, laps VARCHAR) |
SELECT film_title_used_in_nomination FROM table_16255245_1 WHERE original_title = "Wohin und zurΓΌck - Welcome in Vienna" | Name the film title for wohin und zurΓΌck - welcome in vienna | CREATE TABLE table_16255245_1 (film_title_used_in_nomination VARCHAR, original_title VARCHAR) |
SELECT "Largest city" FROM table_1689 WHERE "Province" = 'Eastern Cape' | what is the largest city where the province is eastern cape? | CREATE TABLE table_1689 (
"Province" text,
"Provincial capital" text,
"Largest city" text,
"Area (km 2 )" real,
"Population (2013)" real
) |
SELECT driver FROM table_name_99 WHERE constructor = "brm" AND time_retired = "engine" | Which driver had brm as a constructor and a time/retired of engine? | CREATE TABLE table_name_99 (driver VARCHAR, constructor VARCHAR, time_retired VARCHAR) |
SELECT language FROM table_16278349_1 WHERE province = "Kunar" | Name the language for kunar | CREATE TABLE table_16278349_1 (language VARCHAR, province VARCHAR) |
SELECT demographic.admittime, procedures.icd9_code FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.subject_id = "98220" | what is admission time and procedure icd9 code of subject id 98220? | CREATE TABLE diagnoses (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE lab (
subject_id text,
hadm_id text,
itemid text,
charttime text,
flag text,
value_unit text,
label text,
fluid text
)
CREATE TABLE demographic (... |
SELECT call_sign FROM table_name_69 WHERE class = "a" | What is the call sign for a class of A? | CREATE TABLE table_name_69 (call_sign VARCHAR, class VARCHAR) |
SELECT notes FROM table_16278349_1 WHERE province = "Samangan" | Name the notes for samangan | CREATE TABLE table_16278349_1 (notes VARCHAR, province VARCHAR) |
SELECT Id, DisplayName, Reputation, WebsiteUrl, Location FROM Users ORDER BY Reputation DESC LIMIT 150 | TOP 50 user from india. | CREATE TABLE TagSynonyms (
Id number,
SourceTagName text,
TargetTagName text,
CreationDate time,
OwnerUserId number,
AutoRenameCount number,
LastAutoRename time,
Score number,
ApprovedByUserId number,
ApprovalDate time
)
CREATE TABLE ReviewRejectionReasons (
Id number,
N... |
SELECT AVG(frequency_mhz) FROM table_name_24 WHERE city_of_license = "eastville, virginia" | What is the average frequency MHz for license of eastville, virginia? | CREATE TABLE table_name_24 (frequency_mhz INTEGER, city_of_license VARCHAR) |
SELECT un_region FROM table_16278349_1 WHERE population = 3314000 | Name the un region for 3314000 population | CREATE TABLE table_16278349_1 (un_region VARCHAR, population VARCHAR) |
SELECT COUNT(*) FROM pilot | How many pilots are there? | CREATE TABLE pilot (
Id VARCHAR
) |
SELECT AVG(erp_w) FROM table_name_15 WHERE call_sign = "whre" | What is the average ERP W when the call sign is whre? | CREATE TABLE table_name_15 (erp_w INTEGER, call_sign VARCHAR) |
SELECT area__kmΒ²_ FROM table_16278349_1 WHERE map__number = 24 | Name the area for map # 24 | CREATE TABLE table_16278349_1 (area__kmΒ²_ VARCHAR, map__number VARCHAR) |
SELECT "Modified speed (6th gear)" FROM table_23166 WHERE "Standard torque (lb/ft)" = '10.3' AND "Modified torque (lb/ft)" = '8.75' | What is the modified speed (6th gear) when standard torque (lb/ft) is 10.3 and modified torque (lb/ft) is 8.75? | CREATE TABLE table_23166 (
"RPM" real,
"Standard HP" text,
"Standard torque (lb/ft)" text,
"Standard speed (6th gear)" text,
"Modified speed (6th gear)" real,
"Modified HP" text,
"Modified torque (lb/ft)" text
) |
SELECT name FROM table_name_12 WHERE area = "hillcrest" | What is the name of the school in Hillcrest? | CREATE TABLE table_name_12 (name VARCHAR, area VARCHAR) |
SELECT un_region FROM table_16278349_1 WHERE population = 378000 | Name the un region for 378000 population | CREATE TABLE table_16278349_1 (un_region VARCHAR, population VARCHAR) |
SELECT "Production Code" FROM table_30860 WHERE "Series #" = '8' | What is the production code of the episode with series #8? | CREATE TABLE table_30860 (
"Episode #" real,
"Series #" real,
"Episode Title" text,
"Original air date" text,
"Production Code" real
) |
SELECT years FROM table_name_58 WHERE authority = "state" AND roll > 333 AND name = "bayview school" | What are the years available at Bayview School, which has state authority and a roll number larger than 333? | CREATE TABLE table_name_58 (years VARCHAR, name VARCHAR, authority VARCHAR, roll VARCHAR) |
SELECT COUNT(population) FROM table_16278825_1 WHERE towns__villages = 217 | NJame the total number of population for towns/villages for 217 | CREATE TABLE table_16278825_1 (population VARCHAR, towns__villages VARCHAR) |
SELECT "Country" FROM table_12902 WHERE "Date" = '2003' | What is the country associated with the date in 2003? | CREATE TABLE table_12902 (
"Date" text,
"Label" text,
"Format" text,
"Country" text,
"Catalog" text
) |
SELECT date_of_birth__age_ FROM table_name_71 WHERE club_province = "wild knights" AND player = "tomokazu soma" | When was Tomokazu Soma born who plays for the wild knights? | CREATE TABLE table_name_71 (date_of_birth__age_ VARCHAR, club_province VARCHAR, player VARCHAR) |
SELECT towns__villages FROM table_16278825_1 WHERE county_seat = "Budapest" | Name the towns/villages for budapest | CREATE TABLE table_16278825_1 (towns__villages VARCHAR, county_seat VARCHAR) |
SELECT home FROM table_name_52 WHERE date = "march 5" | Who is the home team on March 5? | CREATE TABLE table_name_52 (
home VARCHAR,
date VARCHAR
) |
SELECT score FROM table_name_13 WHERE date = "november 19, 2008" | On November 19, 2008 what was the score? | CREATE TABLE table_name_13 (score VARCHAR, date VARCHAR) |
SELECT MIN(area__kmΒ²_) FROM table_16278825_1 WHERE name_of_county = "Vas" | Name the least area for vas | CREATE TABLE table_16278825_1 (area__kmΒ²_ INTEGER, name_of_county VARCHAR) |
SELECT "Results" FROM table_18144 WHERE "Incumbent" = 'Robert Wexler' | How did the election end for Robert Wexler? | CREATE TABLE table_18144 (
"District" text,
"Incumbent" text,
"Party" text,
"First elected" real,
"Results" text,
"Candidates" text
) |
SELECT score FROM table_name_81 WHERE date = "february 23, 2005" | What is the score on February 23, 2005? | CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR) |
SELECT points_won FROM table_1628607_5 WHERE year = "1992" | When the year was 1992, what were the points won? | CREATE TABLE table_1628607_5 (points_won VARCHAR, year VARCHAR) |
SELECT COUNT("Pick") FROM table_35393 WHERE "Player" = 'robert ingalls' | What's the sum of the Pick that has the Player of Robert Ingalls? | CREATE TABLE table_35393 (
"Round" real,
"Pick" real,
"Player" text,
"Position" text,
"School/Club Team" text
) |
SELECT result FROM table_name_75 WHERE date = "october 12, 2005" | What is the result foe October 12, 2005? | CREATE TABLE table_name_75 (result VARCHAR, date VARCHAR) |
SELECT points__percentage FROM table_1628607_5 WHERE foursomes_w_l_h = "1β0β0 won w/ P. Creamer 3&2" | When the foursome was w-l-h is 1β0β0 won w/ p. creamer 3&2, what was the points %? | CREATE TABLE table_1628607_5 (points__percentage VARCHAR, foursomes_w_l_h VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.