answer
stringlengths
6
3.91k
question
stringlengths
7
766
context
stringlengths
27
7.14k
SELECT frequency FROM table_19131921_1 WHERE station = "WLFV-FM"
Which frequency is station wlfv-fm?
CREATE TABLE table_19131921_1 (frequency VARCHAR, station VARCHAR)
SELECT "Championships" FROM table_12662 WHERE "League" = 'ontario australian football league'
Which Championships have a League of ontario australian football league?
CREATE TABLE table_12662 ( "Club" text, "League" text, "Sport" text, "Established" text, "Championships" real )
SELECT grade FROM table_name_43 WHERE chin_up__reps_ = "3"
If a person does 3 chin-up reps, what grade do they obtain?
CREATE TABLE table_name_43 (grade VARCHAR, chin_up__reps_ VARCHAR)
SELECT station FROM table_19131921_1 WHERE frequency = "107.3"
Which station has the frequency of 107.3?
CREATE TABLE table_19131921_1 (station VARCHAR, frequency VARCHAR)
SELECT COUNT(DISTINCT patient.uniquepid) FROM patient WHERE patient.patientunitstayid IN (SELECT microlab.patientunitstayid FROM microlab WHERE microlab.culturesite = 'blood, venipuncture' AND STRFTIME('%y', microlab.culturetakentime) = '2104')
count the number of patients that have had a blood, venipuncture microbiology test in 2104.
CREATE TABLE diagnosis ( diagnosisid number, patientunitstayid number, diagnosisname text, diagnosistime time, icd9code text ) CREATE TABLE intakeoutput ( intakeoutputid number, patientunitstayid number, cellpath text, celllabel text, cellvaluenumeric number, intakeoutputtim...
SELECT shuttle_run__sec_ FROM table_name_54 WHERE points = 2
How many seconds is a shuttle run that give 2 points?
CREATE TABLE table_name_54 (shuttle_run__sec_ VARCHAR, points VARCHAR)
SELECT MIN(dma) FROM table_19131921_1
What is dma?
CREATE TABLE table_19131921_1 (dma INTEGER)
SELECT COUNT("number") FROM table_204_77 WHERE "date" = 1949
how many total trains were build in 1949 ?
CREATE TABLE table_204_77 ( id number, "number" text, "builder" text, "type" text, "date" text, "works number" number, "notes" text )
SELECT outgoing_manager FROM table_name_29 WHERE manner_of_departure = "resigned" AND team = "real zaragoza" AND replaced_by = "manolo villanova"
Tell me the outgoing manager for resigned and replaced by manolo villanova for real zaragoza
CREATE TABLE table_name_29 (outgoing_manager VARCHAR, replaced_by VARCHAR, manner_of_departure VARCHAR, team VARCHAR)
SELECT dma FROM table_19131921_1 WHERE branding = "Big Oldies 107.3" AND station = "WARV-FM"
What is the dma of branding is big oldies 107.3 with the station warv-fm?
CREATE TABLE table_19131921_1 (dma VARCHAR, branding VARCHAR, station VARCHAR)
SELECT "Subdivision name ( be ) (BGN/PCGN)" FROM table_30887 WHERE "Subdivision name ( ru ) (BGN/PCGN)" = 'Grodnenskaya oblast'
What is the subdivision name (BE) where subdivision name (RU) (BGN) is Grodnenskaya Oblast'?
CREATE TABLE table_30887 ( "Code" text, "Subdivision name ( be ) (BGN/PCGN)" text, "Subdivision name ( be ) (GOST)" text, "Subdivision name ( ru ) (BGN/PCGN)" text, "Subdivision name ( ru ) (GOST)" text, "Subdivision category" text )
SELECT replaced_by FROM table_name_64 WHERE team = "racing santander"
Name the replaced by for racing santander
CREATE TABLE table_name_64 (replaced_by VARCHAR, team VARCHAR)
SELECT branding FROM table_19131921_1 WHERE format = "Southern Country"
Which branding has the format of southern country?
CREATE TABLE table_19131921_1 (branding VARCHAR, format VARCHAR)
SELECT "Away team" FROM table_32813 WHERE "Home team" = 'fitzroy'
What was the away team that played Fitzroy?
CREATE TABLE table_32813 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT AVG(grid) FROM table_name_64 WHERE laps = 14
What Grid had 14 laps completed?
CREATE TABLE table_name_64 (grid INTEGER, laps VARCHAR)
SELECT COUNT(方位_direction) FROM table_1912713_2 WHERE 性情_personality = "Gentle"
What is the total number of gentle personalities?
CREATE TABLE table_1912713_2 (方位_direction VARCHAR, 性情_personality VARCHAR)
SELECT COUNT("Bronze") FROM table_32135 WHERE "Silver" = '0' AND "Total" < '1'
Tell me the number of bronze for silver of 0 and total less than 1
CREATE TABLE table_32135 ( "Rank" real, "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real )
SELECT MIN(grid) FROM table_name_91 WHERE laps = 25 AND manufacturer = "honda" AND time_retired = "+54.103"
What is the lowest Grid with 25 laps manufactured by Honda with a time of +54.103?
CREATE TABLE table_name_91 (grid INTEGER, time_retired VARCHAR, laps VARCHAR, manufacturer VARCHAR)
SELECT 意義_meaning FROM table_1912713_2 WHERE 性情_personality = "Gentle"
What is the meaning of a gentle personality?
CREATE TABLE table_1912713_2 (意義_meaning VARCHAR, 性情_personality VARCHAR)
SELECT "Date" FROM table_35680 WHERE "Record" = '37-44'
What was the date of the game where the indians record was 37-44?
CREATE TABLE table_35680 ( "Date" text, "Opponent" text, "Score" text, "Loss" text, "Record" text )
SELECT COUNT(laps) FROM table_name_75 WHERE time_retired = "+1:02.315"
How many laps were timed at +1:02.315?
CREATE TABLE table_name_75 (laps VARCHAR, time_retired VARCHAR)
SELECT 家族_family FROM table_1912713_2 WHERE 性情_personality = "Gentle"
Who in the family has a gentle personality?
CREATE TABLE table_1912713_2 (家族_family VARCHAR, 性情_personality VARCHAR)
SELECT AVG(attendance_g) FROM table_name_93 WHERE pos = 8 AND season < 1999
What is the average attendance for seasons before 1999 with pos of 8?
CREATE TABLE table_name_93 ( attendance_g INTEGER, pos VARCHAR, season VARCHAR )
SELECT pts_rank FROM table_name_73 WHERE club = "chicago fire"
What is the points ranking of Chicago Fire?
CREATE TABLE table_name_73 (pts_rank VARCHAR, club VARCHAR)
SELECT mission_no FROM table_191323_2 WHERE alt_name = "1962-F01"
Which mission number has alternate name 1962-f01
CREATE TABLE table_191323_2 (mission_no VARCHAR, alt_name VARCHAR)
SELECT MIN(attendance) FROM table_name_44 WHERE record = "39-44"
What game that had a record of 39-44 had the lowest attendance?
CREATE TABLE table_name_44 ( attendance INTEGER, record VARCHAR )
SELECT opponent FROM table_name_58 WHERE time = "1:16"
Who is the opponent with a time of 1:16?
CREATE TABLE table_name_58 (opponent VARCHAR, time VARCHAR)
SELECT notes FROM table_191323_2 WHERE nssdc_id_no = "1959-002A"
What are the notes of the satellite whose nssdc id number is 1959-002a?
CREATE TABLE table_191323_2 (notes VARCHAR, nssdc_id_no VARCHAR)
SELECT t3.drugname FROM (SELECT t2.drugname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, diagnosis.diagnosistime FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE diagnosis.diagnosisname = 'bronchitis - acute' AND DATETIME(diagnosis.diagnos...
what were the four drugs most often prescribed to the bronchitis - acute male patients aged 40s within 2 months after they had been diagnosed with bronchitis - acute since 6 years ago?
CREATE TABLE patient ( uniquepid text, patienthealthsystemstayid number, patientunitstayid number, gender text, age text, ethnicity text, hospitalid number, wardid number, admissionheight number, admissionweight number, dischargeweight number, hospitaladmittime time, ...
SELECT round FROM table_name_64 WHERE method = "submission"
What round has a method of submission?
CREATE TABLE table_name_64 (round VARCHAR, method VARCHAR)
SELECT alt_name FROM table_191323_2 WHERE nssdc_id_no = "1970-054A"
What are the alternative name/s of those satellites whose nssdc id number is 1970-054a?
CREATE TABLE table_191323_2 (alt_name VARCHAR, nssdc_id_no VARCHAR)
SELECT Sex, AVG(Weight) FROM people GROUP BY Sex ORDER BY AVG(Weight)
Show the average of weight from each sex, display total number from low to high order.
CREATE TABLE people ( People_ID int, Sex text, Name text, Date_of_Birth text, Height real, Weight real ) CREATE TABLE candidate ( Candidate_ID int, People_ID int, Poll_Source text, Date text, Support_rate real, Consider_rate real, Oppose_rate real, Unsure_rate re...
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 alt_name FROM table_191323_2 WHERE notes = "Mission failed. Guidance system failed. No orbit."
What are the alternative names of those satellites where the notes are: mission failed. guidance system failed. no orbit.
CREATE TABLE table_191323_2 (alt_name VARCHAR, notes VARCHAR)
SELECT record FROM table_27537518_6 WHERE first_star = "J. Oduya"
What was the record in the game whose first star was J. Oduya?
CREATE TABLE table_27537518_6 ( record VARCHAR, first_star VARCHAR )
SELECT venue FROM table_name_60 WHERE date = "august 15, 2012"
Where was the competition on August 15, 2012?
CREATE TABLE table_name_60 (venue VARCHAR, date VARCHAR)
SELECT name FROM table_1912276_2 WHERE __750m = "46.436"
If -750m is 46.436, what is the name of the cyclist?
CREATE TABLE table_1912276_2 (name VARCHAR, __750m VARCHAR)
SELECT nickname FROM table_11658094_3 WHERE institution = "Newberry College"
What is the nickname of the newberry college?
CREATE TABLE table_11658094_3 ( nickname VARCHAR, institution VARCHAR )
SELECT date FROM table_name_34 WHERE score = "3-0"
When was the competition that had a score of 3-0?
CREATE TABLE table_name_34 (date VARCHAR, score VARCHAR)
SELECT __500m FROM table_1912276_2 WHERE name = "Theo Bos"
What is the -500 number for Theo Bos?
CREATE TABLE table_1912276_2 (__500m VARCHAR, name VARCHAR)
SELECT "LosingTeam" FROM table_16545 WHERE "Score" = '24-12'
Which losing team had a score of 24-12?
CREATE TABLE table_16545 ( "Season" real, "Grand FinalDate" text, "WinningTeam" text, "Score" text, "LosingTeam" text, "Location" text, "GF Attendance" real, "Clive Churchill Medal" text )
SELECT result FROM table_name_97 WHERE competition = "uefa euro 2008 qualifying"
What was the result of the UEFA Euro 2008 Qualifying competition?
CREATE TABLE table_name_97 (result VARCHAR, competition VARCHAR)
SELECT __750m FROM table_1912276_2 WHERE __250m = "18.852"
If the -250m is 18.852, what is the
CREATE TABLE table_1912276_2 (__750m VARCHAR, __250m VARCHAR)
SELECT state__class_ FROM table_name_54 WHERE successor = "harry f. byrd, jr. (d)"
Which State (class) has a Successor of harry f. byrd, jr. (d)? Question
CREATE TABLE table_name_54 ( state__class_ VARCHAR, successor VARCHAR )
SELECT nationality FROM table_name_88 WHERE player = "steven anthony"
What nationality is Steven Anthony?
CREATE TABLE table_name_88 (nationality VARCHAR, player VARCHAR)
SELECT MAX(rank) FROM table_1912276_2 WHERE __750m = "45.505"
If -750 is 45.505, what is the maximum rank?
CREATE TABLE table_1912276_2 (rank INTEGER, __750m VARCHAR)
SELECT p.Id, p.OwnerUserId, SUM(CASE WHEN v.VoteTypeId = 2 THEN 1 ELSE 0 END) AS upvotes, SUM(CASE WHEN v.VoteTypeId = 3 THEN 1 ELSE 0 END) AS downvotes FROM Posts AS p INNER JOIN Votes AS v ON v.PostId = p.Id WHERE v.VoteTypeId IN (2, 3) AND p.OwnerUserId = 2157772 GROUP BY p.Id, p.OwnerUserId
Wilson confidence rating for posts of a user. https://stackapps.com/questions/8555/request-for-user-script-to-calculate-wilson-confidence-ratings-for-posts
CREATE TABLE SuggestedEditVotes ( Id number, SuggestedEditId number, UserId number, VoteTypeId number, CreationDate time, TargetUserId number, TargetRepChange number ) CREATE TABLE TagSynonyms ( Id number, SourceTagName text, TargetTagName text, CreationDate time, OwnerU...
SELECT MAX(pick__number) FROM table_name_51 WHERE nationality = "slovakia"
What is the highest pick number from Slovakia?
CREATE TABLE table_name_51 (pick__number INTEGER, nationality VARCHAR)
SELECT region_2 FROM table_191591_5 WHERE number_of_episodes = "25" AND dvd_title = "Catfights and Brawls"
Where are there 25 episodes in Catfights and Brawls?
CREATE TABLE table_191591_5 (region_2 VARCHAR, number_of_episodes VARCHAR, dvd_title VARCHAR)
SELECT MAX(top_10s) FROM table_name_53 WHERE starts = 14
Which of the top-10s has a starts value of 14?
CREATE TABLE table_name_53 ( top_10s INTEGER, starts VARCHAR )
SELECT MIN(pick__number) FROM table_name_70 WHERE league_from = "russian major league"
What is the lowest pick number for the Russian Major League?
CREATE TABLE table_name_70 (pick__number INTEGER, league_from VARCHAR)
SELECT missouri FROM table_19153842_1 WHERE year = 2002
Name the missouri for 2002
CREATE TABLE table_19153842_1 (missouri VARCHAR, year VARCHAR)
SELECT MIN("Ep") FROM table_23368 WHERE "Huckleberry Hound" = 'Cop and Saucer'
What episode includes 'Cop and Saucer'?
CREATE TABLE table_23368 ( "N\u00ba" real, "Ep" real, "Huckleberry Hound" text, "Pixie and Dixie" text, "Yogi Bear" text, "Air date" text, "Credited animators" text )
SELECT position FROM table_name_21 WHERE league_from = "russian major league"
What team is from the Russian Major League?
CREATE TABLE table_name_21 (position VARCHAR, league_from VARCHAR)
SELECT MIN(bangladeshi_population) FROM table_19149550_9 WHERE rank = 7
How many Bangladeshi citizens are there in the borough ranked at number 7?
CREATE TABLE table_19149550_9 (bangladeshi_population INTEGER, rank VARCHAR)
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.admission_type = "URGENT" AND demographic.diagnosis = "LEFT FEMUR FRACTURE"
give me the number of patients whose admission type is urgent and primary disease is left femur fracture?
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 demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob te...
SELECT league_from FROM table_name_61 WHERE pick__number > 204 AND nationality = "canada" AND position = "lw"
Which league has a pick number larger than 204 from Canada and LW as the position?
CREATE TABLE table_name_61 (league_from VARCHAR, position VARCHAR, pick__number VARCHAR, nationality VARCHAR)
SELECT london_borough FROM table_19149550_9 WHERE pakistani_population = 7797
What's the London borough with 7797 Pakistani citizens?
CREATE TABLE table_19149550_9 (london_borough VARCHAR, pakistani_population VARCHAR)
SELECT d_items.label FROM d_items WHERE d_items.itemid IN (SELECT inputevents_cv.itemid FROM inputevents_cv WHERE inputevents_cv.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 12927)) AND DATETIME(inputevents_cv....
what was the name of the first intake that patient 12927 had on this month/28.
CREATE TABLE inputevents_cv ( row_id number, subject_id number, hadm_id number, icustay_id number, charttime time, itemid number, amount number ) CREATE TABLE microbiologyevents ( row_id number, subject_id number, hadm_id number, charttime time, spec_type_desc text, ...
SELECT player FROM table_name_49 WHERE club_province = "aurillac"
Who is the player from Aurillac?
CREATE TABLE table_name_49 (player VARCHAR, club_province VARCHAR)
SELECT COUNT(rank) FROM table_19149550_9 WHERE total_asian_population = 33338
How many boroughs with different ranks have a total Asian population of 33338?
CREATE TABLE table_19149550_9 (rank VARCHAR, total_asian_population VARCHAR)
SELECT "Team 1" FROM table_58763 WHERE "Team 2" = 'renova'
What is team 1 if Renova is team 2?
CREATE TABLE table_58763 ( "Team 1" text, "Agg." text, "Team 2" text, "1st leg" text, "2nd leg" text )
SELECT points FROM table_name_69 WHERE rank > 1 AND places = 33
what is the points when the rank is more than 1 and the places is 33?
CREATE TABLE table_name_69 (points VARCHAR, rank VARCHAR, places VARCHAR)
SELECT chinese_population FROM table_19149550_9 WHERE pakistani_population = 26347
What's the Chinese population in the borough with 26347 Pakistanis?
CREATE TABLE table_19149550_9 (chinese_population VARCHAR, pakistani_population VARCHAR)
SELECT republican_ticket FROM table_name_17 WHERE socialist_ticket = "louis waldman"
What is the name on the Republican ticket when the Socialist ticket was louis waldman?
CREATE TABLE table_name_17 ( republican_ticket VARCHAR, socialist_ticket VARCHAR )
SELECT MAX(rank) FROM table_name_40 WHERE nation = "east germany" AND points = 128.98 AND places < 70
what is the highest rank for east germany with points of 128.98 and places less than 70?
CREATE TABLE table_name_40 (rank INTEGER, places VARCHAR, nation VARCHAR, points VARCHAR)
SELECT MIN(total_asian_population) FROM table_19149550_9 WHERE chinese_population = 8109
How many Asians live in the borough with 8109 Chinese population?
CREATE TABLE table_19149550_9 (total_asian_population INTEGER, chinese_population VARCHAR)
SELECT "Location" FROM table_63745 WHERE "County" = '30 hancock'
What is the Location with a county of 30 Hancock?
CREATE TABLE table_63745 ( "School" text, "Location" text, "Mascot" text, "Enrollment" real, "IHSAA Football Class" text, "Primary Conference" text, "County" text )
SELECT SUM(points) FROM table_name_13 WHERE rank = 12
what is the points for rank 12?
CREATE TABLE table_name_13 (points INTEGER, rank VARCHAR)
SELECT MAX(bangladeshi_population) FROM table_19149550_9 WHERE rank = 14
How many Bangladeshi citizens live in the borough ranked at number 14?
CREATE TABLE table_19149550_9 (bangladeshi_population INTEGER, rank VARCHAR)
SELECT title FROM table_26493520_3 WHERE total_viewers_on_fx = "483,000"
Name the title for total viewers on fx+ being 483,000
CREATE TABLE table_26493520_3 ( title VARCHAR, total_viewers_on_fx VARCHAR )
SELECT AVG(pl_gp) FROM table_name_32 WHERE reg_gp = 97 AND pick__number < 70
What is the average PI GP when the pick is smaller tha 70 and the reg GP is 97?
CREATE TABLE table_name_32 (pl_gp INTEGER, reg_gp VARCHAR, pick__number VARCHAR)
SELECT africa FROM table_1914090_2 WHERE australia = 94615
How many members did Africa have the year that Australia had 94615?
CREATE TABLE table_1914090_2 (africa VARCHAR, australia VARCHAR)
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.admityear < "2166" AND diagnoses.long_title = "Pneumococcal pneumonia [Streptococcus pneumoniae pneumonia]"
how many patients whose admission year is less than 2166 and diagnoses long title is pneumococcal pneumonia [streptococcus pneumoniae pneumonia]?
CREATE TABLE lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text ) CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE prescriptions...
SELECT gloss FROM table_name_69 WHERE pronunciation = "[χdəm]"
Name the gloss for [χdəm]
CREATE TABLE table_name_69 (gloss VARCHAR, pronunciation VARCHAR)
SELECT europe FROM table_1914090_2 WHERE america = 403892
How many members did Europe have the year that America had 403892?
CREATE TABLE table_1914090_2 (europe VARCHAR, america VARCHAR)
SELECT COUNT(*) FROM course, course_offering, semester WHERE course.course_id = course_offering.course_id AND course.department = 'PSYCH' AND course.number = 464 AND semester.semester = 'FA' AND semester.semester_id = course_offering.semester AND semester.year = 2016
Next semester , how many lecture sections are offered for PSYCH 464 ?
CREATE TABLE course_prerequisite ( pre_course_id int, course_id int ) CREATE TABLE area ( course_id int, area varchar ) CREATE TABLE offering_instructor ( offering_instructor_id int, offering_id int, instructor_id int ) CREATE TABLE student ( student_id int, lastname varchar, ...
SELECT realization FROM table_name_71 WHERE gloss = "'to be, to do'"
Name the realization for 'to be, to do'
CREATE TABLE table_name_71 (realization VARCHAR, gloss VARCHAR)
SELECT MIN(europe) FROM table_1914090_2 WHERE africa = 7375139
What is the minimum number of members Europe had at the time Africa had 7375139?
CREATE TABLE table_1914090_2 (europe INTEGER, africa VARCHAR)
SELECT name FROM table_name_70 WHERE authority = "private" AND local_board = "hibiscus and bays"
What name shows as private authority and hibiscus and bays local board ?
CREATE TABLE table_name_70 ( name VARCHAR, authority VARCHAR, local_board VARCHAR )
SELECT MIN(places) FROM table_name_70 WHERE name = "sherri baier / robin cowan" AND rank < 1
What is the lowest number of places for Sherri Baier / Robin Cowan when ranked lower than 1?
CREATE TABLE table_name_70 (places INTEGER, name VARCHAR, rank VARCHAR)
SELECT MIN(africa) FROM table_1914090_2 WHERE year = 2001
What is the minimum number of members Africa had in 2001?
CREATE TABLE table_1914090_2 (africa INTEGER, year VARCHAR)
SELECT MAX("Goals for") FROM table_62631 WHERE "Losses" < '16' AND "Wins" < '11' AND "Goal Difference" > '-9'
What was the highest goals with fewer than 16 losses, fewer than 11 wins, and a goal difference greater than -9?
CREATE TABLE table_62631 ( "Position" real, "Club" text, "Played" real, "Points" real, "Wins" real, "Draws" real, "Losses" real, "Goals for" real, "Goals against" real, "Goal Difference" real )
SELECT platform FROM table_name_97 WHERE system = "nintendo ds" AND name = "nds4droid"
What platform is nds4droid on for the nintendo ds?
CREATE TABLE table_name_97 (platform VARCHAR, system VARCHAR, name VARCHAR)
SELECT MAX(europe) FROM table_1914090_2 WHERE australia = 94615
What is the most members Europe had when Australia had 94615?
CREATE TABLE table_1914090_2 (europe INTEGER, australia VARCHAR)
SELECT "station" FROM table_203_839 WHERE "el. (m)" = 2591
the top elevation measured for this station is 2591m
CREATE TABLE table_203_839 ( id number, "station" text, "type" text, "latitude" text, "longitude" text, "el. (m)" number, "opened" number, "closed" number, "coordinates" text )
SELECT name FROM table_name_67 WHERE license = "proprietary (available on inquiry)"
Who has a license of proprietary (available on inquiry)?
CREATE TABLE table_name_67 (name VARCHAR, license VARCHAR)
SELECT MAX(year) FROM table_1914090_2 WHERE europe = 471895
What is the latest year that Europe had 471895?
CREATE TABLE table_1914090_2 (year INTEGER, europe VARCHAR)
SELECT "High points" FROM table_29945 WHERE "Team" = 'Houston'
Who scored the most points when the Bucks played against Houston?
CREATE TABLE table_29945 ( "Game" real, "Date" text, "Team" text, "Score" text, "High points" text, "High rebounds" text, "High assists" text, "Location Attendance" text, "Record" text )
SELECT platform FROM table_name_93 WHERE system = "nintendo ds" AND license = "gpl v2" AND name = "nds4droid"
What platform is nds4droid on for the nintendo ds with a license of gpl v2?
CREATE TABLE table_name_93 (platform VARCHAR, name VARCHAR, system VARCHAR, license VARCHAR)
SELECT COUNT(bus_width___bit__) FROM table_19161046_1 WHERE core___mhz__ = 650
What's the bus width (in bit) of the model whose core is 650 MHz?
CREATE TABLE table_19161046_1 (bus_width___bit__ VARCHAR, core___mhz__ VARCHAR)
SELECT MAX(year) FROM table_name_71 WHERE french_open = "rafael nadal" AND wimbledon = "roger federer" AND australian_open = "roger federer"
What is the latest year rafael nadal was in the French Open, Roger Federer was in Wimbledon, and Roger Federer was in the Australian Open?
CREATE TABLE table_name_71 ( year INTEGER, australian_open VARCHAR, french_open VARCHAR, wimbledon VARCHAR )
SELECT system FROM table_name_65 WHERE current_version = "1.4e"
What system has a current version of 1.4e?
CREATE TABLE table_name_65 (system VARCHAR, current_version VARCHAR)
SELECT directx FROM table_19161046_1 WHERE code_name = "RV770 PRO" AND core___mhz__ > 650.0
What's the directx of the model with code name RV770 PRO and a core bigger than 650.0 MHz?
CREATE TABLE table_19161046_1 (directx VARCHAR, code_name VARCHAR, core___mhz__ VARCHAR)
SELECT COUNT(*) FROM (SELECT "team" FROM table_204_808 GROUP BY "team" HAVING COUNT("driver") >= 2)
how many teams had at least two drivers this season ?
CREATE TABLE table_204_808 ( id number, "team" text, "no" number, "driver" text, "class" text, "chassis" text, "engine" text )
SELECT name FROM table_name_92 WHERE license = "gpl v2" AND current_version = "0.9.9"
Who has a licence of gpl v2 and a current version of 0.9.9?
CREATE TABLE table_name_92 (name VARCHAR, license VARCHAR, current_version VARCHAR)
SELECT notes FROM table_19161046_1 WHERE model = "HIS HD4850 (512MB)"
What are the notes recorded for the model HIS HD4850 (512MB)?
CREATE TABLE table_19161046_1 (notes VARCHAR, model VARCHAR)
SELECT "Thurs 25 Aug" FROM table_31467 WHERE "Wed 24 Aug" = '19'' 59.73 113.216mph'
What is the thurs 25 aug when wed 24 aug is 19' 59.73 113.216mph?
CREATE TABLE table_31467 ( "Rank" real, "Rider" text, "Sat 20 Aug" text, "Mon 22 Aug" text, "Tues 23 Aug" text, "Wed 24 Aug" text, "Thurs 25 Aug" text, "Fri 26 Aug" text )
SELECT performance FROM table_name_11 WHERE season = 1999 AND place = "bydgoszcz, poland"
What was the performance length of the 1999 season in bydgoszcz, poland?
CREATE TABLE table_name_11 (performance VARCHAR, season VARCHAR, place VARCHAR)
SELECT title FROM table_19161605_2 WHERE _number = 14
What is the title of episode number 14?
CREATE TABLE table_19161605_2 (title VARCHAR, _number VARCHAR)