answer
stringlengths
6
3.91k
question
stringlengths
7
766
context
stringlengths
27
7.14k
SELECT frequency FROM table_19874169_3 WHERE branding = "YES! FM 101.1"
From brand Yes! FM 101.1, what was the frequency?
CREATE TABLE table_19874169_3 (frequency VARCHAR, branding VARCHAR)
SELECT MIN(5 AS _9_years) FROM table_174266_6 WHERE year = 2010
If the year is 2010, what is the minimum amount of years 5-9?
CREATE TABLE table_174266_6 ( year VARCHAR )
SELECT MIN(wins) FROM table_name_5 WHERE rank < 3 AND events > 10
Who has the least wins when ranked above 3 with over 10 events?
CREATE TABLE table_name_5 (wins INTEGER, rank VARCHAR, events VARCHAR)
SELECT power__kw_ FROM table_19874169_3 WHERE branding = "YES! FM 91.1 Boracay"
If the branding is Yes! FM 91.1 Boracay, what is the power?
CREATE TABLE table_19874169_3 (power__kw_ VARCHAR, branding VARCHAR)
SELECT COUNT("Name") FROM table_73793 WHERE "Points" = '50'
How many names are listed for the player with 50 points?
CREATE TABLE table_73793 ( "Number" real, "Name" text, "Games Played" real, "Games Started" real, "Goals" real, "Assists" real, "Points" real, "Shots" real )
SELECT MIN(wins) FROM table_name_62 WHERE events = 8 AND player = "billy casper" AND earnings___$__ < 71 OFFSET 979
How many wins for billy casper over 8 events and uner $71,979 in earnings?
CREATE TABLE table_name_62 (wins INTEGER, earnings___$__ VARCHAR, events VARCHAR, player VARCHAR)
SELECT branding FROM table_19874169_3 WHERE callsign = "DXYR"
If the call sign is DXYR, what is the branding?
CREATE TABLE table_19874169_3 (branding VARCHAR, callsign VARCHAR)
SELECT COUNT(*) FROM club WHERE clublocation = "HHH"
How many clubs are located at 'HHH'?
CREATE TABLE member_of_club ( stuid number, clubid number, position text ) CREATE TABLE student ( stuid number, lname text, fname text, age number, sex text, major number, advisor number, city_code text ) CREATE TABLE club ( clubid number, clubname text, clubdes...
SELECT MIN(rank) FROM table_name_11 WHERE earnings___$__ < 71 OFFSET 979
What is the lowest rank for a player earning $71,979?
CREATE TABLE table_name_11 (rank INTEGER, earnings___$__ INTEGER)
SELECT year FROM table_1986692_1 WHERE playoffs = "divisional Semifinals"
When divisional semifinals are the playoffs what is the year?
CREATE TABLE table_1986692_1 (year VARCHAR, playoffs VARCHAR)
SELECT "Vacator" FROM table_25066 WHERE "Successor" = 'Shadrach Bond'
Who was the vacator when Shadrach Bond was the successor?
CREATE TABLE table_25066 ( "District" text, "Vacator" text, "Reason for change" text, "Successor" text, "Date successor seated" text )
SELECT gdp___bn__ FROM table_name_67 WHERE capital = "ioannina"
What was the Gdp (bn) for the region that has ioannina as its Capital?
CREATE TABLE table_name_67 (gdp___bn__ VARCHAR, capital VARCHAR)
SELECT regular_season FROM table_1986692_1 WHERE playoffs = "divisional Finals"
When divisional finals are the playoffs what is the regular season?
CREATE TABLE table_1986692_1 (regular_season VARCHAR, playoffs VARCHAR)
SELECT away_team AS score FROM table_name_94 WHERE home_team = "richmond"
What score was conceded by Richmond?
CREATE TABLE table_name_94 ( away_team VARCHAR, home_team VARCHAR )
SELECT region FROM table_name_65 WHERE area__km²_ = "9,451"
Which Region has an Area of 9,451km²?
CREATE TABLE table_name_65 (region VARCHAR, area__km²_ VARCHAR)
SELECT COUNT(division) FROM table_1986692_1 WHERE year = "1992"
When 1992 is the year how many divisions are there?
CREATE TABLE table_1986692_1 (division VARCHAR, year VARCHAR)
SELECT "Prime mover" FROM table_70736 WHERE "Build date" = '1975'
What is the prime mover for a build date in 1975?
CREATE TABLE table_70736 ( "Model" text, "Build date" text, "Total produced" real, "Wheel arrangement" text, "Prime mover" text, "Power output" text )
SELECT capital FROM table_name_73 WHERE population = "308,610"
Which capital has a population of 308,610?
CREATE TABLE table_name_73 (capital VARCHAR, population VARCHAR)
SELECT league FROM table_1986692_1 WHERE open_cup = "Final"
When final is the open cup what is the league?
CREATE TABLE table_1986692_1 (league VARCHAR, open_cup VARCHAR)
SELECT "Opponent" FROM table_33641 WHERE "Record" = '2-3'
Which Rams opponent had a record of 2-3?
CREATE TABLE table_33641 ( "Week" real, "Opponent" text, "Result" text, "Record" text, "Attendance" text )
SELECT region FROM table_name_70 WHERE area__km²_ = "14,037"
Which Region has an area of 14,037km²?
CREATE TABLE table_name_70 (region VARCHAR, area__km²_ VARCHAR)
SELECT open_cup FROM table_1986692_1 WHERE year = "1995"
When 1995 is the year what is the open cup?
CREATE TABLE table_1986692_1 (open_cup VARCHAR, year VARCHAR)
SELECT COUNT(*) > 0 FROM diagnoses_icd WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'urinostomy status nec') AND diagnoses_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 31482 AND admissions.dischtime ...
did patient 31482 receive a diagnostic for urinostomy status nec on their current hospital visit?
CREATE TABLE d_icd_procedures ( row_id number, icd9_code text, short_title text, long_title text ) CREATE TABLE d_labitems ( row_id number, itemid number, label text ) CREATE TABLE inputevents_cv ( row_id number, subject_id number, hadm_id number, icustay_id number, cha...
SELECT gdp___bn__ FROM table_name_74 WHERE area__sq_mi_ = "7,263"
What is the GDP for the region with an area of 7,263 sq. mi.?
CREATE TABLE table_name_74 (gdp___bn__ VARCHAR, area__sq_mi_ VARCHAR)
SELECT COUNT(division) FROM table_1986692_1 WHERE year = "2008"
When 2008 is the year how many divisions are there?
CREATE TABLE table_1986692_1 (division VARCHAR, year VARCHAR)
SELECT wsop_cashes FROM table_23696862_6 WHERE wsop_earnings = "$126,796"
The person who had $126,796 WSOP earnings had how many WSOP cashes?
CREATE TABLE table_23696862_6 ( wsop_cashes VARCHAR, wsop_earnings VARCHAR )
SELECT population FROM table_name_43 WHERE area__sq_mi_ = "6,004"
What is the population for the region with an area of 6,004 sq. Mi.?
CREATE TABLE table_name_43 (population VARCHAR, area__sq_mi_ VARCHAR)
SELECT MIN(stumped) FROM table_19870086_24 WHERE dismissals = 13
what is the least number of stumps in a game with 13 dismissals
CREATE TABLE table_19870086_24 (stumped INTEGER, dismissals VARCHAR)
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.gender = "F" AND demographic.insurance = "Medicare"
give me the number of female patients with medicare health insurance.
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 diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) C...
SELECT MIN(episode__number) FROM table_name_42 WHERE airdate = "october 31, 2001"
What is the lowest episode # with an air date of October 31, 2001?
CREATE TABLE table_name_42 (episode__number INTEGER, airdate VARCHAR)
SELECT COUNT(dismissals) FROM table_19870086_24 WHERE innings = 8
what is the highest number of dismissals in a match with 8 innings
CREATE TABLE table_19870086_24 (dismissals VARCHAR, innings VARCHAR)
SELECT "Tournament or series" FROM table_14089 WHERE "Played in" = 'england' AND "Games played ( Tests )" = '4' AND "Points for ( Tests )" = '121'
What tournament or series was played in England, when games played was 4, points for were 121?
CREATE TABLE table_14089 ( "Year(s)" real, "Tournament or series" text, "Played in" text, "Games played ( Tests )" text, "Games won ( Tests )" text, "Games lost ( Tests )" text, "Games drawn ( Tests )" text, "Points for ( Tests )" text, "Points against ( Tests )" text )
SELECT AVG(episode__number) FROM table_name_65 WHERE location = "tanzania" AND _number_in_season > 5
What is the average episode # located in Tanzania and whose # in season is larger than 5?
CREATE TABLE table_name_65 (episode__number INTEGER, location VARCHAR, _number_in_season VARCHAR)
SELECT COUNT(rank) FROM table_19870086_24 WHERE player = "Adam Gilchrist"
what is the rank of adam gilchrist
CREATE TABLE table_19870086_24 (rank VARCHAR, player VARCHAR)
SELECT vitalperiodic.observationtime FROM vitalperiodic WHERE vitalperiodic.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '006-80884')) AND vitalperiodic.respiration < 15.0 A...
when was the last time patient 006-80884 measured its respiration less than 15.0 since 8 days ago?
CREATE TABLE cost ( costid number, uniquepid text, patienthealthsystemstayid number, eventtype text, eventid number, chargetime time, cost number ) CREATE TABLE diagnosis ( diagnosisid number, patientunitstayid number, diagnosisname text, diagnosistime time, icd9code tex...
SELECT AVG(episode__number) FROM table_name_75 WHERE episode_name = "the origin of donnie (part 1)"
What is the average episode # with a name of the origin of Donnie (part 1)?
CREATE TABLE table_name_75 (episode__number INTEGER, episode_name VARCHAR)
SELECT location FROM table_1987995_5 WHERE team = "Twins"
Where is the ballpark of the Twins?
CREATE TABLE table_1987995_5 (location VARCHAR, team VARCHAR)
SELECT product_category_code, AVG(product_price) FROM Products GROUP BY product_category_code
Return the average price of products that have each category code in a bar chart.
CREATE TABLE Complaints ( complaint_id INTEGER, product_id INTEGER, customer_id INTEGER, complaint_outcome_code VARCHAR(20), complaint_status_code VARCHAR(20), complaint_type_code VARCHAR(20), date_complaint_raised DATETIME, date_complaint_closed DATETIME, staff_id INTEGER ) CREATE ...
SELECT airdate FROM table_name_50 WHERE _number_in_season = 5
Which air date has 5 for # in season?
CREATE TABLE table_name_50 (airdate VARCHAR, _number_in_season VARCHAR)
SELECT COUNT(location) FROM table_1987995_5 WHERE ballpark = "Memorial Stadium"
How many locations have been used for ballparks named Memorial Stadium?
CREATE TABLE table_1987995_5 (location VARCHAR, ballpark VARCHAR)
SELECT flag_name FROM table_29997112_3 WHERE meaning = "Decimal Digit 2"
What is the name of the flag that means decimal digit 2?
CREATE TABLE table_29997112_3 ( flag_name VARCHAR, meaning VARCHAR )
SELECT venue FROM table_name_60 WHERE home_team = "melbourne"
What venue is home for the Melbourne team?
CREATE TABLE table_name_60 (venue VARCHAR, home_team VARCHAR)
SELECT MIN(closed) FROM table_1987995_5 WHERE demod = 1994
When was the park demolished in 1994 closed?
CREATE TABLE table_1987995_5 (closed INTEGER, demod VARCHAR)
SELECT COUNT(overall) FROM table_name_93 WHERE pick__number > 2 AND name = "claude humphrey"
How much Overall has a Pick # larger than 2, and a Name of claude humphrey?
CREATE TABLE table_name_93 ( overall VARCHAR, pick__number VARCHAR, name VARCHAR )
SELECT license FROM table_name_83 WHERE system = "amiga" AND name = "pocketuae"
Which License has a System of amiga, and a Name of pocketuae?
CREATE TABLE table_name_83 (license VARCHAR, system VARCHAR, name VARCHAR)
SELECT flag FROM table_19872699_1 WHERE builder = "Green Marine"
Which flag was on the Green Marine's boat?
CREATE TABLE table_19872699_1 (flag VARCHAR, builder VARCHAR)
SELECT "Surface" FROM table_73317 WHERE "Year" = '1983'
What was the surface for events held in 1983?
CREATE TABLE table_73317 ( "Outcome" text, "Year" real, "Championship" text, "Surface" text, "Partner" text, "Opponents" text, "Score" text )
SELECT name FROM table_name_46 WHERE license = "gpl" AND actual_version = "0.8.29wip4"
What name has a License of gpl, and an Actual version of 0.8.29wip4?
CREATE TABLE table_name_46 (name VARCHAR, license VARCHAR, actual_version VARCHAR)
SELECT builder FROM table_19872699_1 WHERE skipper = "Ken Read"
Who build the boat where Ken Read was the skipper?
CREATE TABLE table_19872699_1 (builder VARCHAR, skipper VARCHAR)
SELECT result FROM table_25505246_7 WHERE against = "Austria"
What were the round results when Hanne Skak Jensen faced Austria?
CREATE TABLE table_25505246_7 ( result VARCHAR, against VARCHAR )
SELECT platform FROM table_name_38 WHERE actual_version = "0.147"
Which platform has an Actual version of 0.147?
CREATE TABLE table_name_38 (platform VARCHAR, actual_version VARCHAR)
SELECT COUNT(flag) FROM table_19872699_1 WHERE design_firm = "Farr Yacht Design"
Farr Yacht Design designed boats for how many country/flags?
CREATE TABLE table_19872699_1 (flag VARCHAR, design_firm VARCHAR)
SELECT address_line_1, address_line_2 FROM customers WHERE email_address = "vbogisich@example.org"
What are lines 1 and 2 of the addressed of the customer with the email 'vbogisich@example.org'?
CREATE TABLE customers ( customer_id number, customer_type_code text, address_line_1 text, address_line_2 text, town_city text, state text, email_address text, phone_number text ) CREATE TABLE products ( product_id number, parent_product_id number, product_category_code text...
SELECT name FROM table_name_47 WHERE license = "gpl" AND platform = "windows"
Which name has a License of gpl, and a Platform of windows?
CREATE TABLE table_name_47 (name VARCHAR, license VARCHAR, platform VARCHAR)
SELECT builder FROM table_19872699_1 WHERE design_firm = "Botin Carkeek"
Who were the builders of the boat designed by Botin Carkeek?
CREATE TABLE table_19872699_1 (builder VARCHAR, design_firm VARCHAR)
SELECT away_team FROM table_name_85 WHERE venue = "corio oval"
Who is the away side at corio oval?
CREATE TABLE table_name_85 ( away_team VARCHAR, venue VARCHAR )
SELECT system FROM table_name_80 WHERE name = "mess"
Which system is named mess?
CREATE TABLE table_name_80 (system VARCHAR, name VARCHAR)
SELECT COUNT(location_s_) FROM table_19897294_10 WHERE family_families = "The Bailey Family"
In how many locations was the episode with the Bailey family filmed?
CREATE TABLE table_19897294_10 (location_s_ VARCHAR, family_families VARCHAR)
SELECT DISTINCT course.department, course.name, course.number FROM course INNER JOIN area ON course.course_id = area.course_id INNER JOIN program_course ON program_course.course_id = course.course_id WHERE (area.area LIKE '%Prehistory of Oceania%' OR course.description LIKE '%Prehistory of Oceania%' OR course.name LIKE...
Which courses in Prehistory of Oceania count for the Other requirement ?
CREATE TABLE program_requirement ( program_id int, category varchar, min_credit int, additional_req varchar ) CREATE TABLE offering_instructor ( offering_instructor_id int, offering_id int, instructor_id int ) CREATE TABLE program ( program_id int, name varchar, college varchar...
SELECT platform FROM table_name_96 WHERE actual_version = "0.8.29"
Which Platform has an Actual version of 0.8.29?
CREATE TABLE table_name_96 (platform VARCHAR, actual_version VARCHAR)
SELECT COUNT(no_in_season) FROM table_19897294_10 WHERE family_families = "The Jeans Family"
How many episodes with different season numbers had the Jeans family in them?
CREATE TABLE table_19897294_10 (no_in_season VARCHAR, family_families VARCHAR)
SELECT COUNT(incumbent) FROM table_1342256_11 WHERE first_elected = 1926
How many incumbents were elected in the 1926 election?
CREATE TABLE table_1342256_11 ( incumbent VARCHAR, first_elected VARCHAR )
SELECT MIN(year) FROM table_name_46 WHERE category = "best supporting actress" AND award = "asian film awards"
What's the earliest year that had a category of best supporting actress at the asian film awards?
CREATE TABLE table_name_46 (year INTEGER, category VARCHAR, award VARCHAR)
SELECT original_air_date FROM table_19897294_10 WHERE family_families = "The Ririe Family"
When did the episode with the Ririe family air for the first time?
CREATE TABLE table_19897294_10 (original_air_date VARCHAR, family_families VARCHAR)
SELECT AVG(date) FROM table_name_19 WHERE opponent = "detroit red wings"
What is the average date of the game with the Detroit Red Wings as the opponent?
CREATE TABLE table_name_19 ( date INTEGER, opponent VARCHAR )
SELECT award FROM table_name_22 WHERE category = "best supporting actress"
Which award show had the category of best supporting actress?
CREATE TABLE table_name_22 (award VARCHAR, category VARCHAR)
SELECT location_s_ FROM table_19897294_10 WHERE no_in_series = "US9"
Where was the episode with series number US9 filmed?
CREATE TABLE table_19897294_10 (location_s_ VARCHAR, no_in_series VARCHAR)
SELECT MIN(pick__number) FROM table_2897457_8 WHERE player = "Paul Krake"
What was the pick number when Paul Krake was selected?
CREATE TABLE table_2897457_8 ( pick__number INTEGER, player VARCHAR )
SELECT result FROM table_name_61 WHERE nominated_work = "white valentine"
Did the nominated work of white valentine win an award?
CREATE TABLE table_name_61 (result VARCHAR, nominated_work VARCHAR)
SELECT MIN(no_in_season) FROM table_19897294_10 WHERE no_in_series = "US6"
What's the season number of the episode with series number US6?
CREATE TABLE table_19897294_10 (no_in_season INTEGER, no_in_series VARCHAR)
SELECT Rank, COUNT(*) FROM Faculty GROUP BY Rank
For each faculty rank, show the number of faculty members who have it. Visualize by pie chart.
CREATE TABLE Participates_in ( stuid INTEGER, actid INTEGER ) CREATE TABLE Activity ( actid INTEGER, activity_name varchar(25) ) CREATE TABLE Faculty_Participates_in ( FacID INTEGER, actid INTEGER ) CREATE TABLE Faculty ( FacID INTEGER, Lname VARCHAR(15), Fname VARCHAR(15), Ra...
SELECT category FROM table_name_9 WHERE year = 2013 AND nominated_work = "the berlin file"
Which category was the berlin file up to win in 2013?
CREATE TABLE table_name_9 (category VARCHAR, year VARCHAR, nominated_work VARCHAR)
SELECT family_families FROM table_19897294_11 WHERE no_in_series = "US14"
What family was featured in episode us14 of the series?
CREATE TABLE table_19897294_11 (family_families VARCHAR, no_in_series VARCHAR)
SELECT COUNT(DISTINCT admissions.subject_id) FROM admissions WHERE DATETIME(admissions.admittime) <= DATETIME(CURRENT_TIME(), '-3 year')
how many patients were admitted to the hospital until 3 years ago?
CREATE TABLE d_icd_diagnoses ( row_id number, icd9_code text, short_title text, long_title text ) CREATE TABLE icustays ( row_id number, subject_id number, hadm_id number, icustay_id number, first_careunit text, last_careunit text, first_wardid number, last_wardid number...
SELECT final_position___round FROM table_name_88 WHERE competition = "uefa cup"
What is the final position/round of the UEFA cup?
CREATE TABLE table_name_88 (final_position___round VARCHAR, competition VARCHAR)
SELECT COUNT(location_s_) FROM table_19897294_11 WHERE family_families = "The Webb Family"
How many locations featured the Webb Family?
CREATE TABLE table_19897294_11 (location_s_ VARCHAR, family_families 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 = "Christop" AND T2.staff_last_name = "Berge" INTERSECT SELECT product_id FROM problems AS T1 JOIN staff AS T2 ON T1.closure_authorised_by_staff_id = T2.staff_id WHERE T2.staff_first_name = "Ashley"...
What are the product ids for the problems reported by Christop Berge with closure authorised by Ashley Medhurst?
CREATE TABLE problems ( reported_by_staff_id VARCHAR, closure_authorised_by_staff_id VARCHAR ) CREATE TABLE staff ( staff_id VARCHAR, staff_first_name VARCHAR, staff_last_name VARCHAR )
SELECT last_match FROM table_name_60 WHERE final_position___round = "group stage"
When the final position/round is group stage, when is the last match?
CREATE TABLE table_name_60 (last_match VARCHAR, final_position___round VARCHAR)
SELECT COUNT(no_in_season) FROM table_19897294_11 WHERE no_in_series = "US17"
What episode in the season was episode us17 in the series?
CREATE TABLE table_19897294_11 (no_in_season VARCHAR, no_in_series VARCHAR)
SELECT * FROM table_test_9 WHERE hepatic_disease = 1 OR hepatic_disease = 1
hepatic failure or dysfunction
CREATE TABLE table_test_9 ( "id" int, "ejection_fraction_ef" int, "anemia" bool, "child_pugh_class" string, "systolic_blood_pressure_sbp" int, "leukopenia" int, "heart_disease" bool, "stroke" bool, "av_block" bool, "renal_disease" bool, "hepatic_disease" bool, "estimated_...
SELECT last_year FROM table_name_65 WHERE first_year = "1937" AND publisher = "dc comics"
When did the DC Comics title that debuted in 1937 end?
CREATE TABLE table_name_65 (last_year VARCHAR, first_year VARCHAR, publisher VARCHAR)
SELECT COUNT(no_in_season) FROM table_19897294_11 WHERE no_in_series = "US18"
What episode in the season was episode us18 in the series?
CREATE TABLE table_19897294_11 (no_in_season VARCHAR, no_in_series VARCHAR)
SELECT Police_force, COUNT(*) FROM county_public_safety GROUP BY Police_force ORDER BY COUNT(*) DESC
How many counties correspond to each police force, display y axis in desc order.
CREATE TABLE city ( City_ID int, County_ID int, Name text, White real, Black real, Amerindian real, Asian real, Multiracial real, Hispanic real ) CREATE TABLE county_public_safety ( County_ID int, Name text, Population int, Police_officers int, Residents_per_offi...
SELECT publisher FROM table_name_13 WHERE title = "weird war tales"
Who published Weird War Tales?
CREATE TABLE table_name_13 (publisher VARCHAR, title VARCHAR)
SELECT no_in_series FROM table_19897294_11 WHERE family_families = "The Amaral Family"
What episode in the series was the Amaral family featured?
CREATE TABLE table_19897294_11 (no_in_series VARCHAR, family_families VARCHAR)
SELECT loss FROM table_name_29 WHERE date = "may 22"
Name the loss on may 22
CREATE TABLE table_name_29 ( loss VARCHAR, date VARCHAR )
SELECT last_year FROM table_name_75 WHERE first_year = "1982"
When did the comic which came out in 1982 end?
CREATE TABLE table_name_75 (last_year VARCHAR, first_year VARCHAR)
SELECT round_winner FROM table_19886463_1 WHERE entrant = "Craven Mild Racing"
Who is the round winner when entrant is craven mild racing?
CREATE TABLE table_19886463_1 (round_winner VARCHAR, entrant VARCHAR)
SELECT tournament FROM table_name_76 WHERE surface = "clay" AND score_in_the_final = "6–1, 3–6, 6–2"
Which tournament had a clay surface and a score of 6 1, 3 6, 6 2?
CREATE TABLE table_name_76 ( tournament VARCHAR, surface VARCHAR, score_in_the_final VARCHAR )
SELECT title FROM table_name_61 WHERE first_year = "1950" AND publisher = "ec comics" AND last_year = "1953"
Which EC Comics title ran from 1950 to 1953?
CREATE TABLE table_name_61 (title VARCHAR, last_year VARCHAR, first_year VARCHAR, publisher VARCHAR)
SELECT round_winner FROM table_19886463_1 WHERE circuit = "Wanneroo Park"
Who is the round winner of the wanneroo park circuit?
CREATE TABLE table_19886463_1 (round_winner VARCHAR, circuit VARCHAR)
SELECT "Result" FROM table_71075 WHERE "Opponent" = 'leeds' AND "Date" = '20/03/2008'
What result was a date of 20/03/2008 with leeds as the opponent
CREATE TABLE table_71075 ( "Date" text, "Competition" text, "Round" text, "Opponent" text, "Result" text, "Score" text, "Home/Away" text, "Venue" text, "Goals" text, "Attendance" real, "Report" text )
SELECT first_year FROM table_name_41 WHERE title = "popgun"
What is the first year for Popgun?
CREATE TABLE table_name_41 (first_year VARCHAR, title VARCHAR)
SELECT circuit FROM table_19886463_1 WHERE format = "Two heats"
Which circuit has two heats as the format?
CREATE TABLE table_19886463_1 (circuit VARCHAR, format VARCHAR)
SELECT "Engine" FROM table_55764 WHERE "Power" = '114hp (85kw)'
What Engine has a Power of 114hp (85kw)?
CREATE TABLE table_55764 ( "Years" text, "Displacement" text, "Engine" text, "Power" text, "Torque" text )
SELECT region FROM table_name_91 WHERE date = "november 10, 2007" AND format = "cd"
What's the region for an item on November 10, 2007 that's a cd?
CREATE TABLE table_name_91 (region VARCHAR, date VARCHAR, format VARCHAR)
SELECT original_air_date FROM table_19897294_16 WHERE family_families = "The Potter Family"
Name the original air date for the potter family
CREATE TABLE table_19897294_16 (original_air_date VARCHAR, family_families VARCHAR)
SELECT COUNT("religious\ngroup") FROM table_203_90 WHERE "literacy\n(%)" > 60
how many of these religious groups have a literacy rate of above 60 % ?
CREATE TABLE table_203_90 ( id number, "religious\ngroup" text, "population\n%" text, "growth\n(1991-2001)" text, "sex ratio\n(total)" number, "literacy\n(%)" text, "work participation\n(%)" text, "sex ratio\n(rural)" number, "sex ratio\n(urban)" number, "sex ratio\n(child)" numb...
SELECT catalog FROM table_name_97 WHERE label = "columbia" AND region = "united states" AND format = "cd/dvd"
What's the catalog number for a record from columbia formatted in a cd/dvd that's from the United States region?
CREATE TABLE table_name_97 (catalog VARCHAR, format VARCHAR, label VARCHAR, region VARCHAR)
SELECT COUNT(original_air_date) FROM table_19897294_9 WHERE family_families = "The Ryder Family and The Schwartz Family"
how many original air date where family/families is the ryder family and the schwartz family
CREATE TABLE table_19897294_9 (original_air_date VARCHAR, family_families VARCHAR)