NATURAL_LANG
stringlengths
0
446
SCHEMA
stringlengths
27
2.21k
SQL
stringlengths
18
453
input_ids
list
attention_mask
list
labels
list
Sort the gender codes in descending order of their corresponding number of guests. Return both the gender codes and counts with a pie chart.
CREATE TABLE Apartment_Buildings ( building_id INTEGER, building_short_name CHAR(15), building_full_name VARCHAR(80), building_description VARCHAR(255), building_address VARCHAR(255), building_manager VARCHAR(50), building_phone VARCHAR(80) ) CREATE TABLE Apartments ( apt_id INTEGER, building_id INTEGER, apt_type_code CHAR(15), apt_number CHAR(10), bathroom_count INTEGER, bedroom_count INTEGER, room_count CHAR(5) ) CREATE TABLE Guests ( guest_id INTEGER, gender_code CHAR(1), guest_first_name VARCHAR(80), guest_last_name VARCHAR(80), date_of_birth DATETIME ) CREATE TABLE Apartment_Bookings ( apt_booking_id INTEGER, apt_id INTEGER, guest_id INTEGER, booking_status_code CHAR(15), booking_start_date DATETIME, booking_end_date DATETIME ) CREATE TABLE Apartment_Facilities ( apt_id INTEGER, facility_code CHAR(15) ) CREATE TABLE View_Unit_Status ( apt_id INTEGER, apt_booking_id INTEGER, status_date DATETIME, available_yn BIT )
SELECT gender_code, COUNT(*) FROM Guests GROUP BY gender_code ORDER BY COUNT(*) DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 15970, 834, 24752, 53, 7, 41, 740, 834, 23, 26, 3, 21342, 17966, 6, 740, 834, 7, 14184, 834, 4350, 3, 28027, 599, 1808, 201, 740, 834, 1329, 40, 834, 4350, 584, 4280, 28027, 599, 2...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 7285, 834, 4978, 6, 2847, 17161, 599, 1935, 61, 21680, 3, 22360, 350, 4630, 6880, 272, 476, 7285, 834, 4978, 4674, 11300, 272, 476, 2847, 17161, 599, 1935, 61, 309, 25067, 1, -100, -100, -100, -100, -100, -100, -100, ...
What is the record of the game on February 21, 2008?
CREATE TABLE table_name_60 ( record VARCHAR, date VARCHAR )
SELECT record FROM table_name_60 WHERE date = "february 21, 2008"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3328, 41, 1368, 584, 4280, 28027, 6, 833, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 1368, 13, 8, 467, 30, 2083, 12026, 2628, 58, 1, 0...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1368, 21680, 953, 834, 4350, 834, 3328, 549, 17444, 427, 833, 3274, 96, 89, 15, 9052, 1208, 12026, 2628, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What are the distinct reigns of wrestlers whose location is not 'Tokyo,Japan' ?
CREATE TABLE wrestler ( wrestler_id number, name text, reign text, days_held text, location text, event text ) CREATE TABLE elimination ( elimination_id text, wrestler_id text, team text, eliminated_by text, elimination_move text, time text )
SELECT DISTINCT reign FROM wrestler WHERE location <> "Tokyo , Japan"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 26033, 52, 41, 26033, 52, 834, 23, 26, 381, 6, 564, 1499, 6, 17367, 1499, 6, 477, 834, 14796, 1499, 6, 1128, 1499, 6, 605, 1499, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 15438, 25424, 6227, 17367, 21680, 26033, 52, 549, 17444, 427, 1128, 3, 2, 3155, 96, 3696, 3781, 32, 3, 6, 3411, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What is the score for Set 2 at 15:21?
CREATE TABLE table_name_48 (score VARCHAR, set_2 VARCHAR)
SELECT score FROM table_name_48 WHERE set_2 = "15:21"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3707, 41, 7, 9022, 584, 4280, 28027, 6, 356, 834, 357, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 2604, 21, 2821, 204, 44, 627, 10, 2658, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2604, 21680, 953, 834, 4350, 834, 3707, 549, 17444, 427, 356, 834, 357, 3274, 96, 1808, 10, 2658, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
show me the number of patients with celo-vessicle fistula primary disease who are less than 74 years.
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, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text ) 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, label text, fluid text ) CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text )
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "CELO-VESSICLE FISTULA" AND demographic.age < "74"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 4293, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 3, 447, 26, 1298, 834, 4978, 1499, 6, 710, 834, 21869, 1499, 6, 307, 834, 21869, 1499, 3, 61, 3, 32102, 32103...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 549, 17444, 427, 14798, 5, 25930, 4844, 159, 3274, 96, 4770, 5017, 18, 553, 10087, 196, 22704, 377, 13582, 4254, 188, 121, 34...
Who is the player in guard position from Stephen F. Austin in a round less than 8?
CREATE TABLE table_45213 ( "Round" real, "Pick" real, "Player" text, "Position" text, "Nationality" text, "School/Club Team" text )
SELECT "Player" FROM table_45213 WHERE "Round" < '8' AND "Position" = 'guard' AND "School/Club Team" = 'stephen f. austin'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2128, 357, 2368, 41, 96, 448, 32, 1106, 121, 490, 6, 96, 345, 3142, 121, 490, 6, 96, 15800, 49, 121, 1499, 6, 96, 345, 32, 7, 4749, 121, 1499, 6, 96, 24732, 485, 121, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 15800, 49, 121, 21680, 953, 834, 2128, 357, 2368, 549, 17444, 427, 96, 448, 32, 1106, 121, 3, 2, 3, 31, 927, 31, 3430, 96, 345, 32, 7, 4749, 121, 3274, 3, 31, 11010, 31, 3430, 96, 29364, 87, 254, 11158, 22...
how many patients whose admission year is less than 2120 and diagnoses long title is hemoptysis, unspecified?
CREATE TABLE diagnoses ( 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, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text ) CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) 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, label text, fluid text )
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.admityear < "2120" AND diagnoses.long_title = "Hemoptysis, unspecified"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 18730, 7, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 3, 447, 26, 1298, 834, 4978, 1499, 6, 710, 834, 21869, 1499, 6, 307, 834, 21869, 1499, 3, 61, 3, 32102, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 18730, 7, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 18730, 7, 5, 8399, 51, 834, 23, 26, 5...
what was patient 030-3372's weight the last time on their first hospital visit?
CREATE TABLE cost ( costid number, uniquepid text, patienthealthsystemstayid number, eventtype text, eventid number, chargetime time, cost number ) CREATE TABLE microlab ( microlabid number, patientunitstayid number, culturesite text, organism text, culturetakentime time ) CREATE TABLE diagnosis ( diagnosisid number, patientunitstayid number, diagnosisname text, diagnosistime time, icd9code text ) CREATE TABLE allergy ( allergyid number, patientunitstayid number, drugname text, allergyname text, allergytime time ) CREATE TABLE treatment ( treatmentid number, patientunitstayid number, treatmentname text, treatmenttime time ) CREATE TABLE lab ( labid number, patientunitstayid number, labname text, labresult number, labresulttime time ) CREATE TABLE vitalperiodic ( vitalperiodicid number, patientunitstayid number, temperature number, sao2 number, heartrate number, respiration number, systemicsystolic number, systemicdiastolic number, systemicmean number, observationtime time ) CREATE TABLE intakeoutput ( intakeoutputid number, patientunitstayid number, cellpath text, celllabel text, cellvaluenumeric number, intakeoutputtime time ) CREATE TABLE medication ( medicationid number, patientunitstayid number, drugname text, dosage text, routeadmin text, drugstarttime time, drugstoptime time ) 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, hospitaladmitsource text, unitadmittime time, unitdischargetime time, hospitaldischargetime time, hospitaldischargestatus text )
SELECT patient.admissionweight FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '030-3372' AND NOT patient.hospitaldischargetime IS NULL ORDER BY patient.hospitaladmittime LIMIT 1) AND NOT patient.admissionweight IS NULL ORDER BY patient.unitadmittime DESC LIMIT 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 583, 41, 583, 23, 26, 381, 6, 775, 12417, 1499, 6, 1868, 15878, 3734, 21545, 23, 26, 381, 6, 605, 6137, 1499, 6, 605, 23, 26, 381, 6, 1567, 715, 97, 6, 583, 381, 3, 61, 3, 3210...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 1868, 5, 9, 26, 5451, 9378, 21680, 1868, 549, 17444, 427, 1868, 5, 10061, 15878, 3734, 21545, 23, 26, 3388, 41, 23143, 14196, 1868, 5, 10061, 15878, 3734, 21545, 23, 26, 21680, 1868, 549, 17444, 427, 1868, 5, 202, 1...
Who were the opponents during week 14?
CREATE TABLE table_6524 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Attendance" real )
SELECT "Opponent" FROM table_6524 WHERE "Week" = '14'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4122, 2266, 41, 96, 518, 10266, 121, 490, 6, 96, 308, 342, 121, 1499, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 20119, 121, 1499, 6, 96, 188, 17, 324, 26, 663, 121, 490,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0...
[ 3, 23143, 14196, 96, 667, 102, 9977, 121, 21680, 953, 834, 4122, 2266, 549, 17444, 427, 96, 518, 10266, 121, 3274, 3, 31, 2534, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What is the ethernet ports of the u10 appliance?
CREATE TABLE table_name_51 ( ethernet_ports VARCHAR, name VARCHAR )
SELECT ethernet_ports FROM table_name_51 WHERE name = "u10"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 5553, 41, 3, 16764, 1582, 834, 1493, 7, 584, 4280, 28027, 6, 564, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 3, 16764, 1582, 13897, 13, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 16764, 1582, 834, 1493, 7, 21680, 953, 834, 4350, 834, 5553, 549, 17444, 427, 564, 3274, 96, 76, 1714, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the report status of Hockenheimring circuit?
CREATE TABLE table_name_5 ( report VARCHAR, circuit VARCHAR )
SELECT report FROM table_name_5 WHERE circuit = "hockenheimring"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 755, 41, 934, 584, 4280, 28027, 6, 4558, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 934, 2637, 13, 1546, 4695, 3254, 1007, 4558, 58, 1, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 934, 21680, 953, 834, 4350, 834, 755, 549, 17444, 427, 4558, 3274, 96, 19076, 35, 3254, 1007, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
List all manufacturer names and ids ordered by their opening year.
CREATE TABLE furniture ( furniture_id number, name text, num_of_component number, market_rate number ) CREATE TABLE manufacturer ( manufacturer_id number, open_year number, name text, num_of_factories number, num_of_shops number ) CREATE TABLE furniture_manufacte ( manufacturer_id number, furniture_id number, price_in_dollar number )
SELECT name, manufacturer_id FROM manufacturer ORDER BY open_year
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1991, 41, 1991, 834, 23, 26, 381, 6, 564, 1499, 6, 3, 5525, 834, 858, 834, 287, 9977, 381, 6, 512, 834, 2206, 381, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 4818,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 564, 6, 4818, 834, 23, 26, 21680, 4818, 4674, 11300, 272, 476, 539, 834, 1201, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the frequency for the magazine that runs September 2, 2010?
CREATE TABLE table_50967 ( "Title" text, "Parent magazine" text, "Magazine type" text, "Frequency" text, "Magazine run" text )
SELECT "Frequency" FROM table_50967 WHERE "Magazine run" = 'september 2, 2010'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1752, 4314, 940, 41, 96, 382, 155, 109, 121, 1499, 6, 96, 13212, 295, 3835, 121, 1499, 6, 96, 24773, 15, 686, 121, 1499, 6, 96, 371, 60, 835, 11298, 121, 1499, 6, 96, 2...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 371, 60, 835, 11298, 121, 21680, 953, 834, 1752, 4314, 940, 549, 17444, 427, 96, 24773, 15, 661, 121, 3274, 3, 31, 7, 6707, 18247, 3547, 2735, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the highest wins entry with fewer than 51 goals, more than 39 points, and a goal difference smaller than 13?
CREATE TABLE table_62632 ( "Position" real, "Club" text, "Played" real, "Points" real, "Wins" real, "Draws" real, "Losses" real, "Goals for" real, "Goals against" real, "Goal Difference" real )
SELECT MAX("Wins") FROM table_62632 WHERE "Goals against" < '51' AND "Points" > '39' AND "Goal Difference" < '13'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4056, 3891, 357, 41, 96, 345, 32, 7, 4749, 121, 490, 6, 96, 254, 11158, 121, 1499, 6, 96, 15800, 15, 26, 121, 490, 6, 96, 22512, 7, 121, 490, 6, 96, 18455, 7, 121, 49...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 4800, 4, 599, 121, 18455, 7, 8512, 21680, 953, 834, 4056, 3891, 357, 549, 17444, 427, 96, 6221, 5405, 581, 121, 3, 2, 3, 31, 5553, 31, 3430, 96, 22512, 7, 121, 2490, 3, 31, 3288, 31, 3430, 96, 6221, 138, 27187, ...
What was the startup year for the project with apache energy/inpex as the operator?
CREATE TABLE table_5928 ( "Country" text, "Project Name" text, "Year startup" text, "Operator" text, "Peak" text )
SELECT "Year startup" FROM table_5928 WHERE "Operator" = 'apache energy/inpex'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3390, 2577, 41, 96, 10628, 651, 121, 1499, 6, 96, 3174, 11827, 5570, 121, 1499, 6, 96, 476, 2741, 11459, 121, 1499, 6, 96, 667, 883, 1016, 121, 1499, 6, 96, 345, 15, 1639...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 476, 2741, 11459, 121, 21680, 953, 834, 3390, 2577, 549, 17444, 427, 96, 667, 883, 1016, 121, 3274, 3, 31, 9750, 1033, 827, 87, 77, 102, 994, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What position did the player from Florida International play?
CREATE TABLE table_name_31 ( position VARCHAR, school_club_team VARCHAR )
SELECT position FROM table_name_31 WHERE school_club_team = "florida international"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3341, 41, 1102, 584, 4280, 28027, 6, 496, 834, 13442, 834, 11650, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 1102, 410, 8, 1959, 45, 2599, 1331, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1102, 21680, 953, 834, 4350, 834, 3341, 549, 17444, 427, 496, 834, 13442, 834, 11650, 3274, 96, 89, 322, 23, 26, 9, 1038, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Which Founded has a League of women's flat track derby association, and a Club of omaha rollergirls?
CREATE TABLE table_name_14 (founded INTEGER, league VARCHAR, club VARCHAR)
SELECT AVG(founded) FROM table_name_14 WHERE league = "women's flat track derby association" AND club = "omaha rollergirls"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2534, 41, 23329, 3, 21342, 17966, 6, 5533, 584, 4280, 28027, 6, 1886, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 3, 20100, 65, 3, 9, 3815, 13, 88...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 71, 17217, 599, 23329, 61, 21680, 953, 834, 4350, 834, 2534, 549, 17444, 427, 5533, 3274, 96, 210, 32, 904, 31, 7, 2667, 1463, 74, 969, 6028, 121, 3430, 1886, 3274, 96, 32, 51, 9, 1024, 10866, 18722, 7, 121, 1, ...
Which Year has an Edition of 41st?
CREATE TABLE table_name_58 (year VARCHAR, edition VARCHAR)
SELECT year FROM table_name_58 WHERE edition = "41st"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3449, 41, 1201, 584, 4280, 28027, 6, 4182, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 2929, 65, 46, 7504, 13, 8798, 7, 17, 58, 1, 0, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 215, 21680, 953, 834, 4350, 834, 3449, 549, 17444, 427, 4182, 3274, 96, 4853, 7, 17, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What is Auckland thats got Otago of 184 R.C. Blunt & W. Hawksworth V (C) 1931/32?
CREATE TABLE table_name_5 (auckland VARCHAR, otago VARCHAR)
SELECT auckland FROM table_name_5 WHERE otago = "184 r.c. blunt & w. hawksworth v (c) 1931/32"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 755, 41, 9, 4636, 40, 232, 584, 4280, 28027, 6, 3, 32, 2408, 32, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 21829, 24, 7, 530, 411, 2408, 32...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 9, 4636, 40, 232, 21680, 953, 834, 4350, 834, 755, 549, 17444, 427, 3, 32, 2408, 32, 3274, 96, 25987, 3, 52, 5, 75, 5, 30766, 3, 184, 3, 210, 5, 3, 14400, 7, 7048, 3, 208, 41, 75, 61, 957, 3341, 87, 266...
WHAT IS THE 2011 PERFORMANCE AT THE MIAMI MASTERS?
CREATE TABLE table_50693 ( "Tournament" text, "2007" text, "2008" text, "2009" text, "2010" text, "2011" text, "2012" text )
SELECT "2011" FROM table_50693 WHERE "Tournament" = 'miami masters'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1752, 3951, 519, 41, 96, 382, 1211, 20205, 17, 121, 1499, 6, 96, 20615, 121, 1499, 6, 96, 16128, 121, 1499, 6, 96, 16660, 121, 1499, 6, 96, 14926, 121, 1499, 6, 96, 13907...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 13907, 121, 21680, 953, 834, 1752, 3951, 519, 549, 17444, 427, 96, 382, 1211, 20205, 17, 121, 3274, 3, 31, 51, 23, 3690, 2325, 7, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Name the most ceiling temperature for intermediate
CREATE TABLE table_1239 ( "Maximum Ceiling Temperature" text, "Temperature Rating" text, "Temperature Classification" text, "Color Code (with Fusible Link)" text, "Glass Bulb Color" text )
SELECT "Maximum Ceiling Temperature" FROM table_1239 WHERE "Temperature Classification" = 'Intermediate'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2122, 3288, 41, 96, 21298, 603, 440, 24467, 12579, 15, 121, 1499, 6, 96, 15291, 1498, 2693, 21662, 121, 1499, 6, 96, 15291, 1498, 2693, 4501, 2420, 121, 1499, 6, 96, 3881, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 21298, 603, 440, 24467, 12579, 15, 121, 21680, 953, 834, 2122, 3288, 549, 17444, 427, 96, 15291, 1498, 2693, 4501, 2420, 121, 3274, 3, 31, 17555, 5700, 342, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the ICAO when the IATA is ist?
CREATE TABLE table_name_34 (icao VARCHAR, iata VARCHAR)
SELECT icao FROM table_name_34 WHERE iata = "ist"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3710, 41, 2617, 32, 584, 4280, 28027, 6, 3, 17221, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 3, 15038, 667, 116, 8, 27, 19282, 19, 229, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 2617, 32, 21680, 953, 834, 4350, 834, 3710, 549, 17444, 427, 3, 17221, 3274, 96, 343, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Why did the change happen in the state where the formal installation happen on February 14, 1859?
CREATE TABLE table_1802760_3 ( reason_for_change VARCHAR, date_of_successors_formal_installation VARCHAR )
SELECT reason_for_change FROM table_1802760_3 WHERE date_of_successors_formal_installation = "February 14, 1859"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 20829, 2555, 3328, 834, 519, 41, 1053, 834, 1161, 834, 13073, 584, 4280, 28027, 6, 833, 834, 858, 834, 7, 17431, 24901, 7, 834, 2032, 138, 834, 14790, 584, 4280, 28027, 3, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 1053, 834, 1161, 834, 13073, 21680, 953, 834, 20829, 2555, 3328, 834, 519, 549, 17444, 427, 833, 834, 858, 834, 7, 17431, 24901, 7, 834, 2032, 138, 834, 14790, 3274, 96, 31122, 11363, 507, 3390, 121, 1, -100, -100, ...
What is the lowest round that a pick had a position of ls?
CREATE TABLE table_46452 ( "Round" real, "Pick" real, "Overall" real, "Name" text, "Position" text, "College" text )
SELECT MIN("Round") FROM table_46452 WHERE "Position" = 'ls'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4448, 2128, 357, 41, 96, 448, 32, 1106, 121, 490, 6, 96, 345, 3142, 121, 490, 6, 96, 23847, 1748, 121, 490, 6, 96, 23954, 121, 1499, 6, 96, 345, 32, 7, 4749, 121, 1499,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 17684, 599, 121, 448, 32, 1106, 8512, 21680, 953, 834, 4448, 2128, 357, 549, 17444, 427, 96, 345, 32, 7, 4749, 121, 3274, 3, 31, 40, 7, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Who had the high assists while Erick Dampier (8) had the high rebounds?
CREATE TABLE table_17288869_7 (high_assists VARCHAR, high_rebounds VARCHAR)
SELECT high_assists FROM table_17288869_7 WHERE high_rebounds = "Erick Dampier (8)"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 27156, 10927, 3951, 834, 940, 41, 6739, 834, 6500, 7, 17, 7, 584, 4280, 28027, 6, 306, 834, 23768, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 2645, 141, 8, 306, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 306, 834, 6500, 7, 17, 7, 21680, 953, 834, 27156, 10927, 3951, 834, 940, 549, 17444, 427, 306, 834, 23768, 3274, 96, 427, 5206, 10939, 8343, 3, 28007, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
Where did South Melbourne play as the home team?
CREATE TABLE table_58109 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Venue" FROM table_58109 WHERE "Home team" = 'south melbourne'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3449, 17304, 41, 96, 19040, 372, 121, 1499, 6, 96, 19040, 372, 2604, 121, 1499, 6, 96, 188, 1343, 372, 121, 1499, 6, 96, 188, 1343, 372, 2604, 121, 1499, 6, 96, 553, 35, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 553, 35, 76, 15, 121, 21680, 953, 834, 3449, 17304, 549, 17444, 427, 96, 19040, 372, 121, 3274, 3, 31, 7, 670, 107, 3, 2341, 26255, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Name the least amount of new adherents per year
CREATE TABLE table_28137918_5 (new_adherents_per_year INTEGER)
SELECT MIN(new_adherents_per_year) FROM table_28137918_5
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2577, 2368, 4440, 2606, 834, 755, 41, 5534, 834, 9, 26, 760, 295, 7, 834, 883, 834, 1201, 3, 21342, 17966, 61, 3, 32102, 32103, 32101, 32103, 5570, 8, 709, 866, 13, 126, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 17684, 599, 5534, 834, 9, 26, 760, 295, 7, 834, 883, 834, 1201, 61, 21680, 953, 834, 2577, 2368, 4440, 2606, 834, 755, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
For those records from the products and each product's manufacturer, find headquarter and the amount of headquarter , and group by attribute headquarter, and visualize them by a bar chart, list in descending by the y axis.
CREATE TABLE Manufacturers ( Code INTEGER, Name VARCHAR(255), Headquarter VARCHAR(255), Founder VARCHAR(255), Revenue REAL ) CREATE TABLE Products ( Code INTEGER, Name VARCHAR(255), Price DECIMAL, Manufacturer INTEGER )
SELECT Headquarter, COUNT(Headquarter) FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Headquarter ORDER BY COUNT(Headquarter) DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 15248, 7, 41, 3636, 3, 21342, 17966, 6, 5570, 584, 4280, 28027, 599, 25502, 201, 3642, 19973, 584, 4280, 28027, 599, 25502, 201, 3, 19145, 584, 4280, 28027, 599, 25502, 201, 19764, 17833...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3642, 19973, 6, 2847, 17161, 599, 3845, 9, 26, 19973, 61, 21680, 7554, 6157, 332, 536, 3, 15355, 3162, 15248, 7, 6157, 332, 357, 9191, 332, 5411, 7296, 76, 8717, 450, 49, 3274, 332, 4416, 22737, 350, 4630, 6880, 272...
Which Player has a Total of 9, and an Opposition of offaly?
CREATE TABLE table_name_5 (player VARCHAR, total VARCHAR, opposition VARCHAR)
SELECT player FROM table_name_5 WHERE total = 9 AND opposition = "offaly"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 755, 41, 20846, 584, 4280, 28027, 6, 792, 584, 4280, 28027, 6, 8263, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 12387, 65, 3, 9, 9273, 13, 9902, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1959, 21680, 953, 834, 4350, 834, 755, 549, 17444, 427, 792, 3274, 668, 3430, 8263, 3274, 96, 1647, 9, 120, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
which type of drug has been given to kelly gallardo?
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, label text, fluid text ) CREATE TABLE diagnoses ( 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, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text ) CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text )
SELECT prescriptions.drug_type FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.name = "Kelly Gallardo"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7744, 7, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 3, 23, 1071, 21545, 834, 23, 26, 1499, 6, 2672, 834, 6137, 1499, 6, 2672, 1499, 6, 5403, 651, 834, 26, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 7744, 7, 5, 26, 13534, 834, 6137, 21680, 14798, 3388, 18206, 3, 15355, 3162, 7744, 7, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 7744, 7, 5, 8399, 51, 834, 23, 26, 549, 17444, 427, 14798, 5, 4350, 3274, 96, 43...
What is the lowest attendance for week 2?
CREATE TABLE table_78263 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Attendance" real )
SELECT MIN("Attendance") FROM table_78263 WHERE "Week" = '2'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3940, 357, 3891, 41, 96, 518, 10266, 121, 490, 6, 96, 308, 342, 121, 1499, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 20119, 121, 1499, 6, 96, 188, 17, 324, 26, 663, 121,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0...
[ 3, 23143, 14196, 3, 17684, 599, 121, 188, 17, 324, 26, 663, 8512, 21680, 953, 834, 3940, 357, 3891, 549, 17444, 427, 96, 518, 10266, 121, 3274, 3, 31, 357, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
what is discharge location of subject id 3343?
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 ( subject_id text, hadm_id text, name text, marital_status text, age text, dob text, gender text, language text, religion text, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text ) CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) 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 )
SELECT demographic.discharge_location FROM demographic WHERE demographic.subject_id = "3343"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 18730, 7, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 3, 447, 26, 1298, 834, 4978, 1499, 6, 710, 834, 21869, 1499, 6, 307, 834, 21869, 1499, 3, 61, 3, 32102, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 14798, 5, 26, 159, 7993, 834, 14836, 21680, 14798, 549, 17444, 427, 14798, 5, 7304, 11827, 834, 23, 26, 3274, 96, 4201, 4906, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
which team had a bye week?
CREATE TABLE table_name_21 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_21 WHERE attendance = "bye"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2658, 41, 32, 102, 9977, 584, 4280, 28027, 6, 11364, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 84, 372, 141, 3, 9, 57, 15, 471, 58, 1, 0, 0, 0, 0,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 15264, 21680, 953, 834, 4350, 834, 2658, 549, 17444, 427, 11364, 3274, 96, 969, 15, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the displacement and configuration with a max speed of km/h (mph) and the car model Panamera 4s?
CREATE TABLE table_name_36 (displacement_ VARCHAR, _configuration VARCHAR, max_speed VARCHAR, car_model VARCHAR)
SELECT displacement_ & _configuration FROM table_name_36 WHERE max_speed = "km/h (mph)" AND car_model = "panamera 4s"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3420, 41, 10475, 11706, 297, 834, 584, 4280, 28027, 6, 3, 834, 1018, 26703, 584, 4280, 28027, 6, 9858, 834, 9993, 584, 4280, 28027, 6, 443, 834, 21770, 584, 4280, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 27780, 834, 3, 184, 3, 834, 1018, 26703, 21680, 953, 834, 4350, 834, 3420, 549, 17444, 427, 9858, 834, 9993, 3274, 96, 5848, 87, 107, 41, 7656, 61, 121, 3430, 443, 834, 21770, 3274, 96, 2837, 9, 935, 9, 314, 7, ...
I want the total number of rank for Grid less than 20 and dick rathmann and Qual more than 130.92
CREATE TABLE table_name_73 ( rank VARCHAR, qual VARCHAR, grid VARCHAR, driver VARCHAR )
SELECT COUNT(rank) FROM table_name_73 WHERE grid < 20 AND driver = "dick rathmann" AND qual > 130.92
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4552, 41, 11003, 584, 4280, 28027, 6, 3, 11433, 584, 4280, 28027, 6, 8634, 584, 4280, 28027, 6, 2535, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 27, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 6254, 61, 21680, 953, 834, 4350, 834, 4552, 549, 17444, 427, 8634, 3, 2, 460, 3430, 2535, 3274, 96, 26, 3142, 3, 1795, 107, 2434, 121, 3430, 3, 11433, 2490, 12778, 5, 4508, 1, -100, -100, -100, -...
Who was Carlton's away team opponents?
CREATE TABLE table_54488 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Away team" FROM table_54488 WHERE "Home team" = 'carlton'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 755, 3628, 4060, 41, 96, 19040, 372, 121, 1499, 6, 96, 19040, 372, 2604, 121, 1499, 6, 96, 188, 1343, 372, 121, 1499, 6, 96, 188, 1343, 372, 2604, 121, 1499, 6, 96, 553, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 188, 1343, 372, 121, 21680, 953, 834, 755, 3628, 4060, 549, 17444, 427, 96, 19040, 372, 121, 3274, 3, 31, 1720, 7377, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
Visualize names and market shares of furnitures which no any company is producing in our records by a bar chart, show in desc by the bars please.
CREATE TABLE manufacturer ( Manufacturer_ID int, Open_Year real, Name text, Num_of_Factories int, Num_of_Shops int ) CREATE TABLE furniture_manufacte ( Manufacturer_ID int, Furniture_ID int, Price_in_Dollar real ) CREATE TABLE furniture ( Furniture_ID int, Name text, Num_of_Component int, Market_Rate real )
SELECT Name, Market_Rate FROM furniture WHERE NOT Furniture_ID IN (SELECT Furniture_ID FROM furniture_manufacte) ORDER BY Name DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 4818, 41, 15248, 834, 4309, 16, 17, 6, 2384, 834, 476, 2741, 490, 6, 5570, 1499, 6, 1174, 51, 834, 858, 834, 371, 9, 5317, 725, 16, 17, 6, 1174, 51, 834, 858, 834, 16450, 7, 16, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 5570, 6, 3611, 834, 448, 342, 21680, 1991, 549, 17444, 427, 4486, 9724, 834, 4309, 3388, 41, 23143, 14196, 9724, 834, 4309, 21680, 1991, 834, 348, 76, 8717, 15, 61, 4674, 11300, 272, 476, 5570, 309, 25067, 1, -100, ...
Which Year(s) of Manufacture has a Quantity larger than 60, and a Number(s) of 7001–7165?
CREATE TABLE table_name_49 (year_s__of_manufacture VARCHAR, quantity VARCHAR, number_s_ VARCHAR)
SELECT year_s__of_manufacture FROM table_name_49 WHERE quantity > 60 AND number_s_ = "7001–7165"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3647, 41, 1201, 834, 7, 834, 834, 858, 834, 348, 76, 8717, 1462, 584, 4280, 28027, 6, 8708, 584, 4280, 28027, 6, 381, 834, 7, 834, 584, 4280, 28027, 61, 3, 321...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 215, 834, 7, 834, 834, 858, 834, 348, 76, 8717, 1462, 21680, 953, 834, 4350, 834, 3647, 549, 17444, 427, 8708, 2490, 1640, 3430, 381, 834, 7, 834, 3274, 96, 9295, 536, 104, 4450, 4122, 121, 1, -100, -100, -100, -1...
What date was the score 6–3, 3–6, 6–0?
CREATE TABLE table_name_55 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_55 WHERE score = "6–3, 3–6, 6–0"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3769, 41, 5522, 584, 4280, 28027, 6, 2604, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 833, 47, 8, 2604, 431, 104, 6355, 220, 104, 11071, 431, 104, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 833, 21680, 953, 834, 4350, 834, 3769, 549, 17444, 427, 2604, 3274, 96, 948, 104, 6355, 220, 104, 11071, 431, 104, 632, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Return a bar chart about the distribution of Team_Name and School_ID , list by the Y in desc.
CREATE TABLE basketball_match ( Team_ID int, School_ID int, Team_Name text, ACC_Regular_Season text, ACC_Percent text, ACC_Home text, ACC_Road text, All_Games text, All_Games_Percent int, All_Home text, All_Road text, All_Neutral text ) CREATE TABLE university ( School_ID int, School text, Location text, Founded real, Affiliation text, Enrollment real, Nickname text, Primary_conference text )
SELECT Team_Name, School_ID FROM basketball_match ORDER BY School_ID DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 8498, 834, 19515, 41, 2271, 834, 4309, 16, 17, 6, 1121, 834, 4309, 16, 17, 6, 2271, 834, 23954, 1499, 6, 3, 14775, 834, 17748, 4885, 834, 134, 15, 9, 739, 1499, 6, 3, 14775, 834, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2271, 834, 23954, 6, 1121, 834, 4309, 21680, 8498, 834, 19515, 4674, 11300, 272, 476, 1121, 834, 4309, 309, 25067, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
what is the drug route and drug dose of promethazine HCl?
CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) 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, label text, fluid text ) CREATE TABLE diagnoses ( 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, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text )
SELECT prescriptions.route, prescriptions.drug_dose FROM prescriptions WHERE prescriptions.drug = "Promethazine HCl"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 4293, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 3, 447, 26, 1298, 834, 4978, 1499, 6, 710, 834, 21869, 1499, 6, 307, 834, 21869, 1499, 3, 61, 3, 32102, 32103...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 7744, 7, 5, 20300, 6, 7744, 7, 5, 26, 13534, 834, 12051, 21680, 7744, 7, 549, 17444, 427, 7744, 7, 5, 26, 13534, 3274, 96, 3174, 3493, 10557, 630, 3, 8095, 40, 121, 1, -100, -100, -100, -100, -100, -100, -100, -...
What Nationality of the person who has a Rank of 4
CREATE TABLE table_name_59 (nationality VARCHAR, lane VARCHAR, rank VARCHAR)
SELECT nationality FROM table_name_59 WHERE lane < 4 AND rank = 4
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3390, 41, 16557, 485, 584, 4280, 28027, 6, 3, 8102, 584, 4280, 28027, 6, 11003, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 868, 485, 13, 8, 568, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1157, 485, 21680, 953, 834, 4350, 834, 3390, 549, 17444, 427, 3, 8102, 3, 2, 314, 3430, 11003, 3274, 314, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What are all values for 24 mountains when direction is Northeast?
CREATE TABLE table_23406517_2 ( direction VARCHAR )
SELECT 24 AS _mountains FROM table_23406517_2 WHERE direction = "Northeast"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2773, 2445, 4122, 2517, 834, 357, 41, 2212, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 33, 66, 2620, 21, 997, 8022, 116, 2212, 19, 21732, 58, 1, 0, 0, 0...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 997, 6157, 3, 834, 11231, 13676, 21680, 953, 834, 2773, 2445, 4122, 2517, 834, 357, 549, 17444, 427, 2212, 3274, 96, 22969, 11535, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the Major third with a Perfect fifth that is d?
CREATE TABLE table_name_20 (major_third VARCHAR, perfect_fifth VARCHAR)
SELECT major_third FROM table_name_20 WHERE perfect_fifth = "d"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1755, 41, 16547, 127, 834, 14965, 584, 4280, 28027, 6, 626, 834, 89, 99, 189, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 9236, 1025, 28, 3,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 779, 834, 14965, 21680, 953, 834, 4350, 834, 1755, 549, 17444, 427, 626, 834, 89, 99, 189, 3274, 96, 26, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What was the total result for couple Ellery and Frankie?
CREATE TABLE table_19744915_17 (result VARCHAR, couple VARCHAR)
SELECT COUNT(result) FROM table_19744915_17 WHERE couple = "Ellery and Frankie"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2294, 4581, 3647, 1808, 834, 2517, 41, 60, 7, 83, 17, 584, 4280, 28027, 6, 1158, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 792, 741, 21, 1158, 3006, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 60, 7, 83, 17, 61, 21680, 953, 834, 2294, 4581, 3647, 1808, 834, 2517, 549, 17444, 427, 1158, 3274, 96, 427, 195, 4203, 11, 4937, 23, 15, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -...
In games where the opponent was the San Francisco 49ers what was the minimum amount of points scored?
CREATE TABLE table_16710971_2 (falcons_points INTEGER, opponent VARCHAR)
SELECT MIN(falcons_points) FROM table_16710971_2 WHERE opponent = "San Francisco 49ers"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 27650, 17304, 4450, 834, 357, 41, 89, 138, 8056, 834, 2700, 7, 3, 21342, 17966, 6, 15264, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 86, 1031, 213, 8, 15264, 47, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 17684, 599, 89, 138, 8056, 834, 2700, 7, 61, 21680, 953, 834, 27650, 17304, 4450, 834, 357, 549, 17444, 427, 15264, 3274, 96, 134, 152, 5901, 9526, 277, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Which production won the drama desk award as well as the category of outstanding sound design?
CREATE TABLE table_name_88 ( result VARCHAR, award VARCHAR, category VARCHAR )
SELECT result FROM table_name_88 WHERE award = "drama desk award" AND category = "outstanding sound design"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4060, 41, 741, 584, 4280, 28027, 6, 2760, 584, 4280, 28027, 6, 3295, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 4073, 999, 751, 8, 6616, 4808, 2760, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 741, 21680, 953, 834, 4350, 834, 4060, 549, 17444, 427, 2760, 3274, 96, 26, 10819, 4808, 2760, 121, 3430, 3295, 3274, 96, 670, 11018, 1345, 408, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What are the total enrollments of universities of each affiliation type. Plot them as pie chart.
CREATE TABLE university ( School_ID int, School text, Location text, Founded real, Affiliation text, Enrollment real, Nickname text, Primary_conference text ) CREATE TABLE basketball_match ( Team_ID int, School_ID int, Team_Name text, ACC_Regular_Season text, ACC_Percent text, ACC_Home text, ACC_Road text, All_Games text, All_Games_Percent int, All_Home text, All_Road text, All_Neutral text )
SELECT Affiliation, SUM(Enrollment) FROM university GROUP BY Affiliation
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 3819, 41, 1121, 834, 4309, 16, 17, 6, 1121, 1499, 6, 10450, 1499, 6, 3, 20100, 490, 6, 71, 89, 8027, 23, 257, 1499, 6, 695, 4046, 297, 490, 6, 7486, 4350, 1499, 6, 14542, 834, 28...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 71, 89, 8027, 23, 257, 6, 180, 6122, 599, 8532, 4046, 297, 61, 21680, 3819, 350, 4630, 6880, 272, 476, 71, 89, 8027, 23, 257, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
For those records from the products and each product's manufacturer, give me the comparison about the average of price over the name , and group by attribute name by a bar chart.
CREATE TABLE Manufacturers ( Code INTEGER, Name VARCHAR(255), Headquarter VARCHAR(255), Founder VARCHAR(255), Revenue REAL ) CREATE TABLE Products ( Code INTEGER, Name VARCHAR(255), Price DECIMAL, Manufacturer INTEGER )
SELECT T2.Name, T1.Price FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T2.Name
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 15248, 7, 41, 3636, 3, 21342, 17966, 6, 5570, 584, 4280, 28027, 599, 25502, 201, 3642, 19973, 584, 4280, 28027, 599, 25502, 201, 3, 19145, 584, 4280, 28027, 599, 25502, 201, 19764, 17833...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 332, 4416, 23954, 6, 332, 5411, 345, 4920, 21680, 7554, 6157, 332, 536, 3, 15355, 3162, 15248, 7, 6157, 332, 357, 9191, 332, 5411, 7296, 76, 8717, 450, 49, 3274, 332, 4416, 22737, 350, 4630, 6880, 272, 476, 332, 441...
University of Minnesota of had what Deloria & Boas?
CREATE TABLE table_name_66 ( deloria_ VARCHAR, _boas VARCHAR, university_of_minnesota VARCHAR )
SELECT deloria_ & _boas FROM table_name_66 WHERE university_of_minnesota = "ṭ"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3539, 41, 20, 322, 23, 9, 834, 584, 4280, 28027, 6, 3, 834, 115, 32, 9, 7, 584, 4280, 28027, 6, 3819, 834, 858, 834, 1109, 1496, 32, 17, 9, 584, 4280, 28027,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 20, 322, 23, 9, 834, 3, 184, 3, 834, 115, 32, 9, 7, 21680, 953, 834, 4350, 834, 3539, 549, 17444, 427, 3819, 834, 858, 834, 1109, 1496, 32, 17, 9, 3274, 96, 2, 121, 1, -100, -100, -100, -100, -100, -100, -100,...
What is the record of the game that resulted in a loss with more than 56,648 people in attendance?
CREATE TABLE table_name_99 (record VARCHAR, result VARCHAR, attendance VARCHAR)
SELECT record FROM table_name_99 WHERE result = "loss" AND attendance > 56 OFFSET 648
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3264, 41, 60, 7621, 584, 4280, 28027, 6, 741, 584, 4280, 28027, 6, 11364, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 1368, 13, 8, 467, 24, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0...
[ 3, 23143, 14196, 1368, 21680, 953, 834, 4350, 834, 3264, 549, 17444, 427, 741, 3274, 96, 2298, 7, 121, 3430, 11364, 2490, 11526, 3, 15316, 20788, 431, 3707, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
Please draw a bar chart to show the total number of different color, rank names in asc order.
CREATE TABLE photos ( id int, camera_lens_id int, mountain_id int, color text, name text ) CREATE TABLE camera_lens ( id int, brand text, name text, focal_length_mm real, max_aperture real ) CREATE TABLE mountain ( id int, name text, Height real, Prominence real, Range text, Country text )
SELECT color, COUNT(color) FROM photos GROUP BY color ORDER BY color
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1302, 41, 3, 23, 26, 16, 17, 6, 1861, 834, 40, 35, 7, 834, 23, 26, 16, 17, 6, 4180, 834, 23, 26, 16, 17, 6, 945, 1499, 6, 564, 1499, 3, 61, 3, 32102, 32103, 32102, 205, 4386,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 945, 6, 2847, 17161, 599, 9910, 61, 21680, 1302, 350, 4630, 6880, 272, 476, 945, 4674, 11300, 272, 476, 945, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
what is the number of patients who have fentalyl citrate prescription and were admitted before 2156?
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 text, gender text, language text, religion text, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text ) CREATE TABLE procedures ( 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 diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text )
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.admityear < "2156" AND prescriptions.drug = "Fentanyl Citrate"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7744, 7, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 3, 23, 1071, 21545, 834, 23, 26, 1499, 6, 2672, 834, 6137, 1499, 6, 2672, 1499, 6, 5403, 651, 834, 26, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 7744, 7, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 7744, 7, 5, 8399, 51, 834, 23, 26, 549...
how many patiens had an uptake ratio test and were treated with main drug?
CREATE TABLE diagnoses ( 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, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text ) CREATE TABLE procedures ( 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 prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text )
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE prescriptions.drug_type = "MAIN" AND lab.label = "Uptake Ratio"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 18730, 7, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 3, 447, 26, 1298, 834, 4978, 1499, 6, 710, 834, 21869, 1499, 6, 307, 834, 21869, 1499, 3, 61, 3, 32102, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 7744, 7, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 7744, 7, 5, 8399, 51, 834, 23, 26, 338...
What party was Lane Evans?
CREATE TABLE table_1341568_14 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_1341568_14 WHERE incumbent = "Lane Evans"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 23747, 1808, 3651, 834, 2534, 41, 8071, 584, 4280, 28027, 6, 28406, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 1088, 47, 11834, 18305, 58, 1, 0, 0, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1088, 21680, 953, 834, 23747, 1808, 3651, 834, 2534, 549, 17444, 427, 28406, 3274, 96, 434, 152, 15, 18305, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
what is the total number of tackles when fumr is 0, totaltk is 54 and yards is less than 0?
CREATE TABLE table_name_21 ( tackles VARCHAR, yards VARCHAR, fumr VARCHAR, totaltk VARCHAR )
SELECT COUNT(tackles) FROM table_name_21 WHERE fumr = 0 AND totaltk = 54 AND yards < 0
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2658, 41, 8000, 7, 584, 4280, 28027, 6, 6460, 584, 4280, 28027, 6, 11349, 52, 584, 4280, 28027, 6, 792, 17, 157, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 17, 4365, 965, 61, 21680, 953, 834, 4350, 834, 2658, 549, 17444, 427, 11349, 52, 3274, 3, 632, 3430, 792, 17, 157, 3274, 10630, 3430, 6460, 3, 2, 3, 632, 1, -100, -100, -100, -100, -100, -100, -1...
Show the number of games for each home team in a pie chart.
CREATE TABLE injury_accident ( game_id int, id int, Player text, Injury text, Number_of_matches text, Source text ) CREATE TABLE game ( stadium_id int, id int, Season int, Date text, Home_team text, Away_team text, Score text, Competition text ) CREATE TABLE stadium ( id int, name text, Home_Games int, Average_Attendance real, Total_Attendance real, Capacity_Percentage real )
SELECT Home_team, COUNT(Home_team) FROM game GROUP BY Home_team
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 2871, 834, 6004, 4215, 41, 467, 834, 23, 26, 16, 17, 6, 3, 23, 26, 16, 17, 6, 12387, 1499, 6, 28905, 1499, 6, 7720, 834, 858, 834, 19515, 15, 7, 1499, 6, 9149, 1499, 3, 61, 3, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 1210, 834, 11650, 6, 2847, 17161, 599, 19040, 834, 11650, 61, 21680, 467, 350, 4630, 6880, 272, 476, 1210, 834, 11650, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
count the number of patients whose admission location is trsf within this facility and drug code is foli 1.
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 ( 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 text, gender text, language text, religion text, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text ) CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text )
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.admission_location = "TRSF WITHIN THIS FACILITY" AND prescriptions.formulary_drug_cd = "FOLI1"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7690, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 2118, 23, 26, 1499, 6, 5059, 715, 1499, 6, 5692, 1499, 6, 701, 834, 15129, 1499, 6, 3783, 1499, 6, 5798, 1499...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 7744, 7, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 7744, 7, 5, 8399, 51, 834, 23, 26, 549...
Which round was Joe Taylor selected in?
CREATE TABLE table_44156 ( "Round" real, "Pick" real, "Player" text, "Nationality" text, "College" text )
SELECT SUM("Round") FROM table_44156 WHERE "Player" = 'joe taylor'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3628, 25463, 41, 96, 448, 32, 1106, 121, 490, 6, 96, 345, 3142, 121, 490, 6, 96, 15800, 49, 121, 1499, 6, 96, 24732, 485, 121, 1499, 6, 96, 9939, 7883, 121, 1499, 3, 61...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 180, 6122, 599, 121, 448, 32, 1106, 8512, 21680, 953, 834, 3628, 25463, 549, 17444, 427, 96, 15800, 49, 121, 3274, 3, 31, 1927, 15, 3, 17, 9, 63, 322, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Show teams that have suffered more than three eliminations.
CREATE TABLE elimination ( Team VARCHAR )
SELECT Team FROM elimination GROUP BY Team HAVING COUNT(*) > 3
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 23458, 41, 2271, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 3111, 2323, 24, 43, 8151, 72, 145, 386, 23458, 7, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2271, 21680, 23458, 350, 4630, 6880, 272, 476, 2271, 454, 6968, 2365, 2847, 17161, 599, 1935, 61, 2490, 220, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is the title of book number 8?
CREATE TABLE table_74393 ( "#" text, "Title" text, "Author" text, "Doctor" text, "Featuring companion" text, "Published" text, "ISBN" text, "Audiobook narrator" text )
SELECT "Title" FROM table_74393 WHERE "#" = '8'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4581, 3288, 519, 41, 96, 4663, 121, 1499, 6, 96, 382, 155, 109, 121, 1499, 6, 96, 23602, 127, 121, 1499, 6, 96, 4135, 5317, 121, 1499, 6, 96, 18772, 9663, 121, 1499, 6, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 382, 155, 109, 121, 21680, 953, 834, 4581, 3288, 519, 549, 17444, 427, 96, 4663, 121, 3274, 3, 31, 927, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What is the date when the document 'Marry CV' was stored?
CREATE TABLE All_documents ( date_stored VARCHAR, Document_name VARCHAR )
SELECT date_stored FROM All_documents WHERE Document_name = "Marry CV"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 432, 834, 28244, 7, 41, 833, 834, 7154, 26, 584, 4280, 28027, 6, 11167, 834, 4350, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 833, 116, 8, 1708, 3, 31, 728...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 833, 834, 7154, 26, 21680, 432, 834, 28244, 7, 549, 17444, 427, 11167, 834, 4350, 3274, 96, 7286, 651, 10430, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
In 1984, what was the RAvg?
CREATE TABLE table_name_51 ( ravg VARCHAR, year VARCHAR )
SELECT ravg FROM table_name_51 WHERE year = "1984"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 5553, 41, 3, 11852, 122, 584, 4280, 28027, 6, 215, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 86, 13480, 6, 125, 47, 8, 3, 4763, 208, 122, 58, 1, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 11852, 122, 21680, 953, 834, 4350, 834, 5553, 549, 17444, 427, 215, 3274, 96, 24151, 20364, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the second year class following pag-unawa?
CREATE TABLE table_12148147_2 ( second_year VARCHAR, first_year VARCHAR )
SELECT second_year FROM table_12148147_2 WHERE first_year = "Pag-unawa"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2122, 24748, 24719, 834, 357, 41, 511, 834, 1201, 584, 4280, 28027, 6, 166, 834, 1201, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 511, 215, 853, 82...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 511, 834, 1201, 21680, 953, 834, 2122, 24748, 24719, 834, 357, 549, 17444, 427, 166, 834, 1201, 3274, 96, 345, 9, 122, 18, 202, 7396, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
creatinine clearance is < 60 ml / minute
CREATE TABLE table_train_154 ( "id" int, "systolic_blood_pressure_sbp" int, "fpg" float, "hemoglobin_a1c_hba1c" float, "creatinine_clearance_cl" float, "diastolic_blood_pressure_dbp" int, "NOUSE" float )
SELECT * FROM table_train_154 WHERE creatinine_clearance_cl < 60
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 9719, 834, 27308, 41, 96, 23, 26, 121, 16, 17, 6, 96, 7, 63, 7, 235, 2176, 834, 27798, 834, 26866, 834, 7, 115, 102, 121, 16, 17, 6, 96, 89, 102, 122, 121, 3, 12660, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 1429, 21680, 953, 834, 9719, 834, 27308, 549, 17444, 427, 8830, 77, 630, 834, 2482, 9, 5219, 834, 75, 40, 3, 2, 1640, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
what is the highest rank in dresden with a time faster than 10.88?
CREATE TABLE table_70807 ( "Rank" real, "Fastest time (s)" real, "Wind (m/s)" real, "Athlete" text, "Nation" text, "Date" text, "Location" text )
SELECT MAX("Rank") FROM table_70807 WHERE "Location" = 'dresden' AND "Fastest time (s)" < '10.88'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2518, 2079, 940, 41, 96, 22557, 121, 490, 6, 96, 371, 9, 7, 4377, 97, 41, 7, 61, 121, 490, 6, 96, 18455, 26, 41, 51, 87, 7, 61, 121, 490, 6, 96, 188, 189, 1655, 15,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 4800, 4, 599, 121, 22557, 8512, 21680, 953, 834, 2518, 2079, 940, 549, 17444, 427, 96, 434, 32, 75, 257, 121, 3274, 3, 31, 26, 60, 7, 537, 31, 3430, 96, 371, 9, 7, 4377, 97, 41, 7, 61, 121, 3, 2, 3, 31, 10...
What school is in 41 Johnson county?
CREATE TABLE table_name_56 ( school VARCHAR, county VARCHAR )
SELECT school FROM table_name_56 WHERE county = "41 johnson"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4834, 41, 496, 584, 4280, 28027, 6, 5435, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 496, 19, 16, 8798, 5891, 5435, 58, 1, 0, 0, 0, 0, 0, 0...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 496, 21680, 953, 834, 4350, 834, 4834, 549, 17444, 427, 5435, 3274, 96, 4853, 3, 27341, 739, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What is the 1913 class of locomotive that has a 1st built value under 494 and WA of 4-4-0t?
CREATE TABLE table_7562 ( "1st built" real, "1913 Class" text, "W.A." text, "No. Built" real, "Builder" text, "Date" text, "LNER Class" text )
SELECT "1913 Class" FROM table_7562 WHERE "1st built" < '494' AND "W.A." = '4-4-0t'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3072, 4056, 41, 96, 536, 7, 17, 1192, 121, 490, 6, 96, 2294, 2368, 4501, 121, 1499, 6, 96, 518, 5, 188, 535, 1499, 6, 96, 4168, 5, 14862, 121, 490, 6, 96, 24752, 49, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 2294, 2368, 4501, 121, 21680, 953, 834, 3072, 4056, 549, 17444, 427, 96, 536, 7, 17, 1192, 121, 3, 2, 3, 31, 3647, 591, 31, 3430, 96, 518, 5, 188, 535, 3274, 3, 31, 591, 18, 26814, 17, 31, 1, -100, -100, ...
When 24th is the final placing how many wins are there?
CREATE TABLE table_26815674_1 ( wins VARCHAR, final_placing VARCHAR )
SELECT COUNT(wins) FROM table_26815674_1 WHERE final_placing = "24th"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 357, 3651, 25463, 4581, 834, 536, 41, 9204, 584, 4280, 28027, 6, 804, 834, 6042, 75, 53, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 366, 997, 189, 19, 8, 804, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 3757, 7, 61, 21680, 953, 834, 357, 3651, 25463, 4581, 834, 536, 549, 17444, 427, 804, 834, 6042, 75, 53, 3274, 96, 2266, 189, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What was Olazabal's winning score in the event in which Phillip Price finished 2nd?
CREATE TABLE table_name_90 (winning_score VARCHAR, runner_s__up VARCHAR)
SELECT winning_score FROM table_name_90 WHERE runner_s__up = "phillip price"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2394, 41, 8163, 834, 7, 9022, 584, 4280, 28027, 6, 3, 10806, 834, 7, 834, 834, 413, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 5424, 5246, 384...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3447, 834, 7, 9022, 21680, 953, 834, 4350, 834, 2394, 549, 17444, 427, 3, 10806, 834, 7, 834, 834, 413, 3274, 96, 18118, 7446, 594, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What's the 2nd leg result in the round where Panionios is team #2?
CREATE TABLE table_19130829_4 ( team__number2 VARCHAR )
SELECT 2 AS nd_leg FROM table_19130829_4 WHERE team__number2 = "Panionios"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2294, 2368, 4018, 3166, 834, 591, 41, 372, 834, 834, 5525, 1152, 357, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 31, 7, 8, 204, 727, 4553, 741, 16, 8, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 204, 6157, 3, 727, 834, 5772, 21680, 953, 834, 2294, 2368, 4018, 3166, 834, 591, 549, 17444, 427, 372, 834, 834, 5525, 1152, 357, 3274, 96, 345, 2738, 106, 23, 32, 7, 121, 1, -100, -100, -100, -100, -100, -100, -1...
What is the percentage of this constellation with an area of 248.885 sq. deg.?
CREATE TABLE table_177766_1 ( per­cent­age VARCHAR, area__sqdeg_ VARCHAR )
SELECT per­cent­age FROM table_177766_1 WHERE area__sqdeg_ = "248.885"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2517, 4013, 3539, 834, 536, 41, 399, 575, 3728, 575, 545, 584, 4280, 28027, 6, 616, 834, 834, 7, 1824, 221, 122, 834, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 399, 575, 3728, 575, 545, 21680, 953, 834, 2517, 4013, 3539, 834, 536, 549, 17444, 427, 616, 834, 834, 7, 1824, 221, 122, 834, 3274, 96, 357, 3707, 5, 4060, 17395, 1, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the 2006-2007 points total number if the team is Saracens?
CREATE TABLE table_23215145_2 ( team VARCHAR )
SELECT COUNT(2006 AS _07_points) FROM table_23215145_2 WHERE team = "Saracens"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 23188, 1808, 20987, 834, 357, 41, 372, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 3581, 18, 20615, 979, 792, 381, 3, 99, 8, 372, 19, 12969, 75, 3...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 21196, 6157, 3, 834, 4560, 834, 2700, 7, 61, 21680, 953, 834, 23188, 1808, 20987, 834, 357, 549, 17444, 427, 372, 3274, 96, 134, 9, 3738, 35, 7, 121, 1, -100, -100, -100, -100, -100, -100, -100, ...
how many dates are listed as free ?
CREATE TABLE table_204_539 ( id number, "date" text, "name" text, "moving from" text, "moving to" text, "fee" text )
SELECT COUNT("date") FROM table_204_539 WHERE "fee" = 'free'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26363, 834, 755, 3288, 41, 3, 23, 26, 381, 6, 96, 5522, 121, 1499, 6, 96, 4350, 121, 1499, 6, 96, 7168, 53, 45, 121, 1499, 6, 96, 7168, 53, 12, 121, 1499, 6, 96, 89, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 121, 5522, 8512, 21680, 953, 834, 26363, 834, 755, 3288, 549, 17444, 427, 96, 89, 15, 15, 121, 3274, 3, 31, 2113, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Who was the leading scorer against the visiting team Bulls?
CREATE TABLE table_name_96 (leading_scorer VARCHAR, visitor VARCHAR)
SELECT leading_scorer FROM table_name_96 WHERE visitor = "bulls"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4314, 41, 17103, 834, 7, 5715, 49, 584, 4280, 28027, 6, 7019, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 2645, 47, 8, 1374, 2604, 52, 581, 8, 3644, 372...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1374, 834, 7, 5715, 49, 21680, 953, 834, 4350, 834, 4314, 549, 17444, 427, 7019, 3274, 96, 20638, 7, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
How many rankings did the 5th season have?
CREATE TABLE table_1348989_2 (ranking VARCHAR, season VARCHAR)
SELECT COUNT(ranking) FROM table_1348989_2 WHERE season = "5th"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 23747, 3914, 3914, 834, 357, 41, 6254, 53, 584, 4280, 28027, 6, 774, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 16890, 410, 8, 305, 189, 774, 43, 58, 1,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 6254, 53, 61, 21680, 953, 834, 23747, 3914, 3914, 834, 357, 549, 17444, 427, 774, 3274, 96, 755, 189, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Which car won the same award in 2001 that the toyota 1nz-fxe hybrid prius won in 1999?
CREATE TABLE table_name_76 (Id VARCHAR)
SELECT 2001 FROM table_name_76 WHERE 1999 = "toyota 1nz-fxe hybrid prius"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3959, 41, 196, 26, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 443, 751, 8, 337, 2760, 16, 4402, 24, 8, 12, 63, 32, 17, 9, 209, 29, 172, 18, 8...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4402, 21680, 953, 834, 4350, 834, 3959, 549, 17444, 427, 5247, 3274, 96, 235, 63, 32, 17, 9, 209, 29, 172, 18, 89, 226, 15, 9279, 3, 2246, 302, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
How many classes are taken in the third year when pag-unawa was taken in the first year?
CREATE TABLE table_12148147_2 ( third_year VARCHAR, first_year VARCHAR )
SELECT COUNT(third_year) FROM table_12148147_2 WHERE first_year = "Pag-unawa"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2122, 24748, 24719, 834, 357, 41, 1025, 834, 1201, 584, 4280, 28027, 6, 166, 834, 1201, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 2287, 33, 1026, 16, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 14965, 834, 1201, 61, 21680, 953, 834, 2122, 24748, 24719, 834, 357, 549, 17444, 427, 166, 834, 1201, 3274, 96, 345, 9, 122, 18, 202, 7396, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -...
What is the holmenkollen for the 1982 FIS Nordic World Ski Championships?
CREATE TABLE table_174491_2 ( holmenkollen VARCHAR, fis_nordic_world_ski_championships VARCHAR )
SELECT holmenkollen FROM table_174491_2 WHERE fis_nordic_world_ski_championships = "1982"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2517, 3628, 4729, 834, 357, 41, 3, 2831, 51, 18994, 195, 35, 584, 4280, 28027, 6, 361, 7, 834, 29, 127, 4370, 834, 7276, 834, 4009, 834, 17788, 12364, 2009, 7, 584, 4280, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 2831, 51, 18994, 195, 35, 21680, 953, 834, 2517, 3628, 4729, 834, 357, 549, 17444, 427, 361, 7, 834, 29, 127, 4370, 834, 7276, 834, 4009, 834, 17788, 12364, 2009, 7, 3274, 96, 2294, 4613, 121, 1, -100, -100, -1...
What is Score, when Opponent is 'Daniel Gimeno-Traver'?
CREATE TABLE table_59333 ( "Date" text, "Tournament" text, "Surface" text, "Opponent" text, "Score" text )
SELECT "Score" FROM table_59333 WHERE "Opponent" = 'daniel gimeno-traver'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3390, 23360, 41, 96, 308, 342, 121, 1499, 6, 96, 382, 1211, 20205, 17, 121, 1499, 6, 96, 134, 450, 4861, 121, 1499, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 134, 9022, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 134, 9022, 121, 21680, 953, 834, 3390, 23360, 549, 17444, 427, 96, 667, 102, 9977, 121, 3274, 3, 31, 26, 2738, 15, 40, 3, 122, 23, 904, 32, 18, 1313, 624, 31, 1, -100, -100, -100, -100, -100, -100, -100, -10...
What was the latest year that had a 100m freestyle?
CREATE TABLE table_name_67 (year_set INTEGER, event VARCHAR)
SELECT MAX(year_set) FROM table_name_67 WHERE event = "100m freestyle"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3708, 41, 1201, 834, 2244, 3, 21342, 17966, 6, 605, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 1251, 215, 24, 141, 3, 9, 910, 51, 339, 40...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 1201, 834, 2244, 61, 21680, 953, 834, 4350, 834, 3708, 549, 17444, 427, 605, 3274, 96, 2915, 51, 339, 4084, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
what position did this racer finish at his only world race walking cup competition ?
CREATE TABLE table_204_798 ( id number, "year" number, "competition" text, "venue" text, "position" text, "notes" text )
SELECT "position" FROM table_204_798 WHERE "competition" = 'world race walking cup'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26363, 834, 940, 3916, 41, 3, 23, 26, 381, 6, 96, 1201, 121, 381, 6, 96, 287, 4995, 4749, 121, 1499, 6, 96, 15098, 121, 1499, 6, 96, 4718, 121, 1499, 6, 96, 7977, 7, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 4718, 121, 21680, 953, 834, 26363, 834, 940, 3916, 549, 17444, 427, 96, 287, 4995, 4749, 121, 3274, 3, 31, 7276, 1964, 3214, 4119, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
When was the game developed by Microvision released?
CREATE TABLE table_553 ( "English Title/Translation" text, "Japanese Title" text, "Developer" text, "Publisher" text, "Genre" text, "Console(s)" text, "Initial Release Date" text )
SELECT "Initial Release Date" FROM table_553 WHERE "Developer" = 'Microvision'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3769, 519, 41, 96, 26749, 11029, 87, 18474, 6105, 121, 1499, 6, 96, 683, 9750, 1496, 15, 11029, 121, 1499, 6, 96, 2962, 162, 8745, 49, 121, 1499, 6, 96, 31009, 49, 121, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 1570, 23, 10646, 13048, 7678, 121, 21680, 953, 834, 3769, 519, 549, 17444, 427, 96, 2962, 162, 8745, 49, 121, 3274, 3, 31, 329, 23, 2771, 6610, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Where was the tourney when UCLA won the regular season?
CREATE TABLE table_21269441_4 (tournament_venue__city_ VARCHAR, regular_season_winner VARCHAR)
SELECT tournament_venue__city_ FROM table_21269441_4 WHERE regular_season_winner = "UCLA"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2658, 2688, 4240, 4853, 834, 591, 41, 17, 1211, 20205, 17, 834, 15098, 834, 834, 6726, 834, 584, 4280, 28027, 6, 1646, 834, 9476, 834, 3757, 687, 584, 4280, 28027, 61, 3, 3...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 5892, 834, 15098, 834, 834, 6726, 834, 21680, 953, 834, 2658, 2688, 4240, 4853, 834, 591, 549, 17444, 427, 1646, 834, 9476, 834, 3757, 687, 3274, 96, 6463, 4569, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100,...
What is the 2012 value with A in 2010 at the Tournament of Wimbledon?
CREATE TABLE table_name_13 (tournament VARCHAR)
SELECT 2012 FROM table_name_13 WHERE 2010 = "a" AND tournament = "wimbledon"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2368, 41, 17, 1211, 20205, 17, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 1673, 701, 28, 71, 16, 2735, 44, 8, 20502, 13, 31489, 58, 1, 0,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1673, 21680, 953, 834, 4350, 834, 2368, 549, 17444, 427, 2735, 3274, 96, 9, 121, 3430, 5892, 3274, 96, 210, 603, 2296, 2029, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Who was the loser of the heavyweight division fight that lasted a time of 2:24?
CREATE TABLE table_name_10 ( loser VARCHAR, weight_division VARCHAR, time VARCHAR )
SELECT loser FROM table_name_10 WHERE weight_division = "heavyweight" AND time = "2:24"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1714, 41, 2615, 52, 584, 4280, 28027, 6, 1293, 834, 26, 23, 6610, 584, 4280, 28027, 6, 97, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 2645, 47, 8, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0...
[ 3, 23143, 14196, 2615, 52, 21680, 953, 834, 4350, 834, 1714, 549, 17444, 427, 1293, 834, 26, 23, 6610, 3274, 96, 88, 19649, 9378, 121, 3430, 97, 3274, 96, 357, 10, 2266, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the address of the Life & Casualty Tower?
CREATE TABLE table_name_94 ( street_address VARCHAR, name VARCHAR )
SELECT street_address FROM table_name_94 WHERE name = "life & casualty tower"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4240, 41, 2815, 834, 9, 26, 12039, 584, 4280, 28027, 6, 564, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 1115, 13, 8, 2330, 3, 184, 302...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2815, 834, 9, 26, 12039, 21680, 953, 834, 4350, 834, 4240, 549, 17444, 427, 564, 3274, 96, 4597, 3, 184, 6995, 17, 63, 7293, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
who are the candidates when the incumbent is lindsey graham?
CREATE TABLE table_1341423_40 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341423_40 WHERE incumbent = "Lindsey Graham"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 23747, 2534, 2773, 834, 2445, 41, 1608, 12416, 6203, 584, 4280, 28027, 6, 28406, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 113, 33, 8, 4341, 116, 8, 28406, 19, 3, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4341, 21680, 953, 834, 23747, 2534, 2773, 834, 2445, 549, 17444, 427, 28406, 3274, 96, 434, 77, 26, 7, 15, 63, 15146, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the lowest Grid for jj lehto with over 51 laps?
CREATE TABLE table_name_81 ( grid INTEGER, laps VARCHAR, driver VARCHAR )
SELECT MIN(grid) FROM table_name_81 WHERE laps > 51 AND driver = "jj lehto"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4959, 41, 8634, 3, 21342, 17966, 6, 14941, 7, 584, 4280, 28027, 6, 2535, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 7402, 23644, 21, 3, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 17684, 599, 3496, 26, 61, 21680, 953, 834, 4350, 834, 4959, 549, 17444, 427, 14941, 7, 2490, 11696, 3430, 2535, 3274, 96, 354, 354, 90, 107, 235, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
How many goals were scored by Eugene Galekovi ?
CREATE TABLE table_71178 ( "Player" text, "Country" text, "Caps" real, "Goals" text, "Years Active" text, "Years at Club" text )
SELECT "Goals" FROM table_71178 WHERE "Player" = 'eugene galeković'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4450, 27640, 41, 96, 15800, 49, 121, 1499, 6, 96, 10628, 651, 121, 1499, 6, 96, 19566, 7, 121, 490, 6, 96, 6221, 5405, 121, 1499, 6, 96, 476, 2741, 7, 11383, 121, 1499, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 6221, 5405, 121, 21680, 953, 834, 4450, 27640, 549, 17444, 427, 96, 15800, 49, 121, 3274, 3, 31, 15, 76, 729, 15, 7466, 15, 9789, 23, 2, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
How many years have a Result of nominated?
CREATE TABLE table_name_42 ( year VARCHAR, result VARCHAR )
SELECT COUNT(year) FROM table_name_42 WHERE result = "nominated"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4165, 41, 215, 584, 4280, 28027, 6, 741, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 203, 43, 3, 9, 3, 20119, 13, 150, 1109, 920, 58, 1, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 1201, 61, 21680, 953, 834, 4350, 834, 4165, 549, 17444, 427, 741, 3274, 96, 3114, 77, 920, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What date was Dundee appointed?
CREATE TABLE table_name_96 (date_of_appointment VARCHAR, team VARCHAR)
SELECT date_of_appointment FROM table_name_96 WHERE team = "dundee"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4314, 41, 5522, 834, 858, 834, 9, 102, 2700, 297, 584, 4280, 28027, 6, 372, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 833, 47, 6393, 221, 15, 781...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 833, 834, 858, 834, 9, 102, 2700, 297, 21680, 953, 834, 4350, 834, 4314, 549, 17444, 427, 372, 3274, 96, 26, 1106, 15, 15, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which Member has an Electorate of southern melbourne?
CREATE TABLE table_name_36 ( member VARCHAR, electorate VARCHAR )
SELECT member FROM table_name_36 WHERE electorate = "southern melbourne"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3420, 41, 1144, 584, 4280, 28027, 6, 11924, 127, 342, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 4073, 8541, 65, 46, 3, 21543, 127, 342, 13, 7518, 3...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1144, 21680, 953, 834, 4350, 834, 3420, 549, 17444, 427, 11924, 127, 342, 3274, 96, 7, 670, 760, 29, 3, 2341, 26255, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which Netflix episode has an overall episode number under 69 and a Segment D of S Trombone?
CREATE TABLE table_name_92 (netflix VARCHAR, episode VARCHAR, segment_d VARCHAR)
SELECT netflix FROM table_name_92 WHERE episode < 69 AND segment_d = "s trombone"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4508, 41, 1582, 89, 17591, 584, 4280, 28027, 6, 5640, 584, 4280, 28027, 6, 5508, 834, 26, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 11894, 5640, 6...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0...
[ 3, 23143, 14196, 3134, 89, 17591, 21680, 953, 834, 4350, 834, 4508, 549, 17444, 427, 5640, 3, 2, 3, 3951, 3430, 5508, 834, 26, 3274, 96, 7, 31033, 782, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which Original Broadway production has a First US National Tour of roger bart?
CREATE TABLE table_10177 ( "Role" text, "Original Broadway production" text, "First US National Tour" text, "Second US National Tour" text, "Original Italian production" text )
SELECT "Original Broadway production" FROM table_10177 WHERE "First US National Tour" = 'roger bart'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1714, 26793, 41, 96, 448, 32, 109, 121, 1499, 6, 96, 667, 3380, 10270, 17963, 999, 121, 1499, 6, 96, 25171, 837, 868, 3351, 121, 1499, 6, 96, 134, 15, 1018, 26, 837, 868,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 667, 3380, 10270, 17963, 999, 121, 21680, 953, 834, 1714, 26793, 549, 17444, 427, 96, 25171, 837, 868, 3351, 121, 3274, 3, 31, 3822, 49, 1207, 17, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the sum of checking and savings balances for all customers, ordered by the total balance?
CREATE TABLE accounts ( custid number, name text ) CREATE TABLE savings ( custid number, balance number ) CREATE TABLE checking ( custid number, balance number )
SELECT T1.balance + T2.balance FROM checking AS T1 JOIN savings AS T2 ON T1.custid = T2.custid ORDER BY T1.balance + T2.balance
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 3744, 41, 123, 2248, 26, 381, 6, 564, 1499, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 5051, 41, 123, 2248, 26, 381, 6, 2109, 381, 3, 61, 3, 32102, 32103, 32102, 2...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 332, 5411, 3849, 663, 1768, 332, 4416, 3849, 663, 21680, 6450, 6157, 332, 536, 3, 15355, 3162, 5051, 6157, 332, 357, 9191, 332, 5411, 1071, 2248, 26, 3274, 332, 4416, 1071, 2248, 26, 4674, 11300, 272, 476, 332, 5411, ...
Which Snatch has a Clean & Jerk of 180, and a Bodyweight smaller than 69.83?
CREATE TABLE table_61397 ( "Name" text, "Bodyweight" real, "Snatch" real, "Clean & Jerk" real, "Total (kg)" real )
SELECT MIN("Snatch") FROM table_61397 WHERE "Clean & Jerk" = '180' AND "Bodyweight" < '69.83'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4241, 519, 4327, 41, 96, 23954, 121, 1499, 6, 96, 279, 9666, 9378, 121, 490, 6, 96, 134, 29, 14547, 121, 490, 6, 96, 254, 109, 152, 3, 184, 446, 49, 157, 121, 490, 6, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 17684, 599, 121, 134, 29, 14547, 8512, 21680, 953, 834, 4241, 519, 4327, 549, 17444, 427, 96, 254, 109, 152, 3, 184, 446, 49, 157, 121, 3274, 3, 31, 20829, 31, 3430, 96, 279, 9666, 9378, 121, 3, 2, 3, 31, 3...
Which Transfer fee has Ends larger than 2011, and a Moving from of psv?
CREATE TABLE table_62856 ( "Nat." text, "Name" text, "Moving from" text, "Type" text, "Transfer window" text, "Ends" real, "Transfer fee" text )
SELECT "Transfer fee" FROM table_62856 WHERE "Ends" > '2011' AND "Moving from" = 'psv'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 948, 2577, 4834, 41, 96, 567, 144, 535, 1499, 6, 96, 23954, 121, 1499, 6, 96, 329, 32, 3745, 45, 121, 1499, 6, 96, 25160, 121, 1499, 6, 96, 18474, 1010, 2034, 121, 1499, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 18474, 1010, 2572, 121, 21680, 953, 834, 948, 2577, 4834, 549, 17444, 427, 96, 8532, 26, 7, 121, 2490, 3, 31, 13907, 31, 3430, 96, 329, 32, 3745, 45, 121, 3274, 3, 31, 102, 7, 208, 31, 1, -100, -100, -100, ...
Which Copa Libertadores 1996 has a Team of estudiantes?
CREATE TABLE table_name_10 (copa_libertadores_1996 VARCHAR, team VARCHAR)
SELECT copa_libertadores_1996 FROM table_name_10 WHERE team = "estudiantes"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1714, 41, 10845, 9, 834, 10661, 17, 10097, 7, 834, 2294, 4314, 584, 4280, 28027, 6, 372, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 10400, 9, 12774...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 7326, 9, 834, 10661, 17, 10097, 7, 834, 2294, 4314, 21680, 953, 834, 4350, 834, 1714, 549, 17444, 427, 372, 3274, 96, 222, 5291, 8386, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Name the nationality of the player with round more than 4
CREATE TABLE table_name_46 (nationality VARCHAR, round INTEGER)
SELECT nationality FROM table_name_46 WHERE round > 4
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4448, 41, 16557, 485, 584, 4280, 28027, 6, 1751, 3, 21342, 17966, 61, 3, 32102, 32103, 32101, 32103, 5570, 8, 1157, 485, 13, 8, 1959, 28, 1751, 72, 145, 314, 1, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1157, 485, 21680, 953, 834, 4350, 834, 4448, 549, 17444, 427, 1751, 2490, 314, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...