NATURAL_LANG
stringlengths
0
446
SCHEMA
stringlengths
27
2.21k
SQL
stringlengths
18
453
input_ids
list
attention_mask
list
labels
list
Which pole has a Season of 2009 and points of test driver?
CREATE TABLE table_name_90 (poles VARCHAR, season VARCHAR, points VARCHAR)
SELECT poles FROM table_name_90 WHERE season = 2009 AND points = "test driver"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2394, 41, 14332, 7, 584, 4280, 28027, 6, 774, 584, 4280, 28027, 6, 979, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 11148, 65, 3, 9, 7960, 13, 246...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 11148, 7, 21680, 953, 834, 4350, 834, 2394, 549, 17444, 427, 774, 3274, 2464, 3430, 979, 3274, 96, 4377, 2535, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
Tell me the province of 1941-1946
CREATE TABLE table_name_49 (province VARCHAR, period VARCHAR)
SELECT province FROM table_name_49 WHERE period = "1941-1946"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3647, 41, 1409, 2494, 565, 584, 4280, 28027, 6, 1059, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 8779, 140, 8, 7985, 13, 24822, 4481, 4448, 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, 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, 7985, 21680, 953, 834, 4350, 834, 3647, 549, 17444, 427, 1059, 3274, 96, 2294, 4853, 4481, 4448, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the Total of the Player who won in 1998?
CREATE TABLE table_13747 ( "Player" text, "Country" text, "Year(s) won" text, "Total" real, "To par" real )
SELECT MAX("Total") FROM table_13747 WHERE "Year(s) won" = '1998'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 24636, 4177, 41, 96, 15800, 49, 121, 1499, 6, 96, 10628, 651, 121, 1499, 6, 96, 476, 2741, 599, 7, 61, 751, 121, 1499, 6, 96, 3696, 1947, 121, 490, 6, 96, 3696, 260, 12...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 3696, 1947, 8512, 21680, 953, 834, 24636, 4177, 549, 17444, 427, 96, 476, 2741, 599, 7, 61, 751, 121, 3274, 3, 31, 2294, 3916, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
give me the number of patients whose primary disease is angioedema?
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 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 procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title 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 = "ANGIOEDEMA"
[ 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, 549, 17444, 427, 14798, 5, 25930, 4844, 159, 3274, 96, 19775, 7550, 2326, 20211, 121, 1, -100, -100, -100, -100, -100, -100, ...
weigh between 45 kg and 120 kg inclusive.
CREATE TABLE table_train_88 ( "id" int, "mini_mental_state_examination_mmse" int, "mild_cognitive_impairment" bool, "body_weight" float, "renal_disease" bool, "memantine" bool, "rivastigmine" bool, "lewy_body_dementia" bool, "NOUSE" float )
SELECT * FROM table_train_88 WHERE body_weight >= 45 AND body_weight <= 120
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 9719, 834, 4060, 41, 96, 23, 26, 121, 16, 17, 6, 96, 7619, 834, 13974, 834, 5540, 834, 994, 9, 14484, 834, 635, 7, 15, 121, 16, 17, 6, 96, 51, 173, 26, 834, 75, 12905...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 4060, 549, 17444, 427, 643, 834, 9378, 2490, 2423, 3479, 3430, 643, 834, 9378, 3, 2, 2423, 5864, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
how many patients whose age is less than 59 and lab test category is hematology?
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 diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title 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 lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.age < "59" AND lab."CATEGORY" = "Hematology"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 14798, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 564, 1499, 6, 2774, 1947, 834, 8547, 302, 1499, 6, 1246, 1499, 6, 103, 115, 1499, 6, 7285, 1499, 6, 1612, 14...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 7690, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 7690, 5, 8399, 51, 834, 23, 26, 549, 17444,...
which entrant after 1987 had 12 points and a benetton b188 chassis?
CREATE TABLE table_14934 ( "Year" real, "Entrant" text, "Chassis" text, "Engine" text, "Points" real )
SELECT "Entrant" FROM table_14934 WHERE "Year" > '1987' AND "Chassis" = 'benetton b188' AND "Points" = '12'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 24816, 3710, 41, 96, 476, 2741, 121, 490, 6, 96, 16924, 3569, 121, 1499, 6, 96, 3541, 6500, 7, 121, 1499, 6, 96, 31477, 121, 1499, 6, 96, 22512, 7, 121, 490, 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, 96, 16924, 3569, 121, 21680, 953, 834, 24816, 3710, 549, 17444, 427, 96, 476, 2741, 121, 2490, 3, 31, 2294, 4225, 31, 3430, 96, 3541, 6500, 7, 121, 3274, 3, 31, 346, 10544, 106, 3, 115, 25794, 31, 3430, 96, 22512,...
What's the lowest February for less than 57 points?
CREATE TABLE table_36185 ( "Game" real, "February" real, "Opponent" text, "Score" text, "Record" text, "Points" real )
SELECT MIN("February") FROM table_36185 WHERE "Points" < '57'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3420, 21594, 41, 96, 23055, 121, 490, 6, 96, 31122, 121, 490, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 1649, 7621, 121, 1499, 6, 96, 22512, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 31122, 8512, 21680, 953, 834, 3420, 21594, 549, 17444, 427, 96, 22512, 7, 121, 3, 2, 3, 31, 3436, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
How many in attendance when Penguins were home with a record of 14 19 6 with less than 34 points?
CREATE TABLE table_name_98 ( attendance VARCHAR, points VARCHAR, home VARCHAR, record VARCHAR )
SELECT COUNT(attendance) FROM table_name_98 WHERE home = "penguins" AND record = "14–19–6" AND points < 34
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3916, 41, 11364, 584, 4280, 28027, 6, 979, 584, 4280, 28027, 6, 234, 584, 4280, 28027, 6, 1368, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 571, 186, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 15116, 663, 61, 21680, 953, 834, 4350, 834, 3916, 549, 17444, 427, 234, 3274, 96, 3208, 17996, 7, 121, 3430, 1368, 3274, 96, 2534, 104, 2294, 104, 948, 121, 3430, 979, 3, 2, 6154, 1, -100, -100, ...
Name the number of partners for 5-7, 6-7 (5-7)
CREATE TABLE table_23944006_4 (partner VARCHAR, score VARCHAR)
SELECT COUNT(partner) FROM table_23944006_4 WHERE score = "5-7, 6-7 (5-7)"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2773, 4240, 5548, 948, 834, 591, 41, 12300, 584, 4280, 28027, 6, 2604, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 5570, 8, 381, 13, 3222, 21, 3, 23440, 6, 3, 2530...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 12300, 61, 21680, 953, 834, 2773, 4240, 5548, 948, 834, 591, 549, 17444, 427, 2604, 3274, 96, 23440, 6, 3, 25302, 41, 23440, 61, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is Date, when Away is High Park Demons?
CREATE TABLE table_name_6 ( date VARCHAR, away VARCHAR )
SELECT date FROM table_name_6 WHERE away = "high park demons"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 948, 41, 833, 584, 4280, 28027, 6, 550, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 7678, 6, 116, 71, 1343, 19, 1592, 1061, 15782, 29, 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, 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, 948, 549, 17444, 427, 550, 3274, 96, 6739, 2447, 20, 2157, 7, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the year leicester was established?
CREATE TABLE table_19225 ( "Institution" text, "Location" text, "Established" real, "Gained university status" real, "Vice-chancellor" text, "Total Number of Students" real, "Research Funding (\u00a3,000)" real )
SELECT MAX("Established") FROM table_19225 WHERE "Location" = 'Leicester'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 19978, 1828, 41, 96, 1570, 17448, 121, 1499, 6, 96, 434, 32, 75, 257, 121, 1499, 6, 96, 14997, 15403, 11904, 121, 490, 6, 96, 517, 7043, 26, 3819, 2637, 121, 490, 6, 96, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 14997, 15403, 11904, 8512, 21680, 953, 834, 19978, 1828, 549, 17444, 427, 96, 434, 32, 75, 257, 121, 3274, 3, 31, 2796, 867, 1370, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
On what date was game 3?
CREATE TABLE table_name_84 ( date VARCHAR, game VARCHAR )
SELECT date FROM table_name_84 WHERE game = "3"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4608, 41, 833, 584, 4280, 28027, 6, 467, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 461, 125, 833, 47, 467, 220, 58, 1, 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, 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, 833, 21680, 953, 834, 4350, 834, 4608, 549, 17444, 427, 467, 3274, 96, 519, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Where did Wales play?
CREATE TABLE table_name_39 ( venue VARCHAR, opposing_teams VARCHAR )
SELECT venue FROM table_name_39 WHERE opposing_teams = "wales"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3288, 41, 5669, 584, 4280, 28027, 6, 10720, 53, 834, 11650, 7, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 2840, 410, 10256, 577, 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, 5669, 21680, 953, 834, 4350, 834, 3288, 549, 17444, 427, 10720, 53, 834, 11650, 7, 3274, 96, 210, 4529, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What's the IS-3 when the KV-85 is 40?
CREATE TABLE table_14224 ( "T-35" text, "T-100" text, "KV-1 M1940" text, "KV-1 M1941" text, "KV-1 M1942" text, "KV-1S M1942" text, "KV-85 M1943" text, "IS-2 M1945" text, "IS-3 M1945" text )
SELECT "IS-3 M1945" FROM table_14224 WHERE "KV-85 M1943" = '40'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 24978, 2266, 41, 96, 382, 18, 2469, 121, 1499, 6, 96, 382, 18, 2915, 121, 1499, 6, 96, 439, 553, 2292, 283, 2294, 2445, 121, 1499, 6, 96, 439, 553, 2292, 283, 2294, 4853,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 4555, 3486, 283, 2294, 2128, 121, 21680, 953, 834, 24978, 2266, 549, 17444, 427, 96, 439, 553, 18, 4433, 283, 2294, 4906, 121, 3274, 3, 31, 2445, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
For the car with a qual of 134.288, what was the rank?
CREATE TABLE table_name_72 ( rank VARCHAR, qual VARCHAR )
SELECT rank FROM table_name_72 WHERE qual = "134.288"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 5865, 41, 11003, 584, 4280, 28027, 6, 3, 11433, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 242, 8, 443, 28, 3, 9, 3, 11433, 13, 1179, 19765, 4060, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 11003, 21680, 953, 834, 4350, 834, 5865, 549, 17444, 427, 3, 11433, 3274, 96, 2368, 19765, 4060, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What are the lowest losses with more than 13 scored, and more than 7 draws?
CREATE TABLE table_63063 ( "Position" real, "Team" text, "Played" real, "Wins" real, "Draws" real, "Losses" real, "Scored" real, "Conceded" real, "Points" real )
SELECT MIN("Losses") FROM table_63063 WHERE "Scored" > '13' AND "Draws" > '7'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26106, 3891, 41, 96, 345, 32, 7, 4749, 121, 490, 6, 96, 18699, 121, 1499, 6, 96, 15800, 15, 26, 121, 490, 6, 96, 18455, 7, 121, 490, 6, 96, 308, 10936, 7, 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, 434, 13526, 7, 8512, 21680, 953, 834, 26106, 3891, 549, 17444, 427, 96, 134, 9022, 26, 121, 2490, 3, 31, 2368, 31, 3430, 96, 308, 10936, 7, 121, 2490, 3, 31, 940, 31, 1, -100, -100, -100, -10...
What is the Outcome of the match on 12 september 2004?
CREATE TABLE table_name_21 (outcome VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_21 WHERE date = "12 september 2004"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2658, 41, 670, 287, 15, 584, 4280, 28027, 6, 833, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 3387, 287, 15, 13, 8, 1588, 30, 586, 16022, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 6138, 21680, 953, 834, 4350, 834, 2658, 549, 17444, 427, 833, 3274, 96, 2122, 16022, 18247, 4406, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
what is the venue when the competition is 1996 afc asian cup group stage?
CREATE TABLE table_name_66 (venue VARCHAR, competition VARCHAR)
SELECT venue FROM table_name_66 WHERE competition = "1996 afc asian cup group stage"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3539, 41, 15098, 584, 4280, 28027, 6, 2259, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 125, 19, 8, 5669, 116, 8, 2259, 19, 6911, 3, 9, 89, 75, 3, 9, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 5669, 21680, 953, 834, 4350, 834, 3539, 549, 17444, 427, 2259, 3274, 96, 2294, 4314, 3, 9, 89, 75, 3, 9, 10488, 4119, 563, 1726, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
what is the top company that has the most employees ?
CREATE TABLE table_204_614 ( id number, "date announced" text, "plant name" text, "location" text, "date of closing" text, "products" text, "employees" number )
SELECT "plant name" FROM table_204_614 ORDER BY "employees" DESC LIMIT 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26363, 834, 948, 2534, 41, 3, 23, 26, 381, 6, 96, 5522, 2162, 121, 1499, 6, 96, 14925, 564, 121, 1499, 6, 96, 14836, 121, 1499, 6, 96, 5522, 13, 6733, 121, 1499, 6, 96,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 14925, 564, 121, 21680, 953, 834, 26363, 834, 948, 2534, 4674, 11300, 272, 476, 96, 15, 51, 7379, 63, 15, 15, 7, 121, 309, 25067, 8729, 12604, 209, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
For the game with 26,236 attendance, what was the record?
CREATE TABLE table_name_81 (record VARCHAR, attendance VARCHAR)
SELECT record FROM table_name_81 WHERE attendance = "26,236"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4959, 41, 60, 7621, 584, 4280, 28027, 6, 11364, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 242, 8, 467, 28, 13597, 357, 3420, 11364, 6, 125, 47, 8, 136...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1368, 21680, 953, 834, 4350, 834, 4959, 549, 17444, 427, 11364, 3274, 96, 2688, 6, 357, 3420, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
In the game where the away team was Carlton and the crowd was larger than 25,000, what was the venue?
CREATE TABLE table_10816 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Venue" FROM table_10816 WHERE "Crowd" > '25,000' AND "Away team" = 'carlton'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 16169, 2938, 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, 16169, 2938, 549, 17444, 427, 96, 254, 3623, 26, 121, 2490, 3, 31, 24338, 31, 3430, 96, 188, 1343, 372, 121, 3274, 3, 31, 1720, 7377, 31, 1, -100, -100, -100, -100, -10...
What was the premiere date for the episode whose alternate title was mi o i przeznaczenie?
CREATE TABLE table_29799700_2 ( series_premiere VARCHAR, alternante_title VARCHAR )
SELECT series_premiere FROM table_29799700_2 WHERE alternante_title = "Miłość i przeznaczenie"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 357, 4327, 3264, 9295, 834, 357, 41, 939, 834, 2026, 2720, 60, 584, 4280, 28027, 6, 21934, 1841, 834, 21869, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 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, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 939, 834, 2026, 2720, 60, 21680, 953, 834, 357, 4327, 3264, 9295, 834, 357, 549, 17444, 427, 21934, 1841, 834, 21869, 3274, 96, 329, 23, 2, 32, 2, 3, 23, 25030, 172, 11962, 172, 15050, 121, 1, -100, -100, -100, -1...
What is the general classification with the winner being evgeni berzin?
CREATE TABLE table_12261926_2 (general_classification VARCHAR, winner VARCHAR)
SELECT COUNT(general_classification) FROM table_12261926_2 WHERE winner = "Evgeni Berzin"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2122, 2688, 2294, 2688, 834, 357, 41, 27369, 834, 4057, 2420, 584, 4280, 28027, 6, 4668, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 879, 13774, 28, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 27369, 834, 4057, 2420, 61, 21680, 953, 834, 2122, 2688, 2294, 2688, 834, 357, 549, 17444, 427, 4668, 3274, 96, 427, 208, 729, 23, 5653, 7196, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, ...
What Local/Networked has a Show Name of nightline?
CREATE TABLE table_78994 ( "Time" text, "Show Name" text, "Local/Networked" text, "Ad Freq" text, "News Freq" text )
SELECT "Local/Networked" FROM table_78994 WHERE "Show Name" = 'nightline'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3940, 3264, 591, 41, 96, 13368, 121, 1499, 6, 96, 134, 4067, 5570, 121, 1499, 6, 96, 434, 32, 1489, 87, 9688, 1981, 15, 26, 121, 1499, 6, 96, 188, 26, 5532, 1824, 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, 434, 32, 1489, 87, 9688, 1981, 15, 26, 121, 21680, 953, 834, 3940, 3264, 591, 549, 17444, 427, 96, 134, 4067, 5570, 121, 3274, 3, 31, 7602, 747, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
When was there a team of Simon and the start was 3?
CREATE TABLE table_name_48 (year VARCHAR, team VARCHAR, start VARCHAR)
SELECT year FROM table_name_48 WHERE team = "simon" AND start = "3"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3707, 41, 1201, 584, 4280, 28027, 6, 372, 584, 4280, 28027, 6, 456, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 366, 47, 132, 3, 9, 372, 13, 6308, 11, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 215, 21680, 953, 834, 4350, 834, 3707, 549, 17444, 427, 372, 3274, 96, 28348, 29, 121, 3430, 456, 3274, 96, 519, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
what is the money for argentina?
CREATE TABLE table_71072 ( "Place" text, "Player" text, "Country" text, "Score" text, "To par" text, "Money ( $ )" real )
SELECT COUNT("Money ( $ )") FROM table_71072 WHERE "Country" = 'argentina'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4450, 4560, 357, 41, 96, 345, 11706, 121, 1499, 6, 96, 15800, 49, 121, 1499, 6, 96, 10628, 651, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 3696, 260, 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, 2847, 17161, 599, 121, 9168, 15, 63, 41, 1514, 3, 61, 8512, 21680, 953, 834, 4450, 4560, 357, 549, 17444, 427, 96, 10628, 651, 121, 3274, 3, 31, 9917, 77, 9, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which Field goals is the highest one that has Touchdowns of 0, and Points larger than 4?
CREATE TABLE table_name_76 ( field_goals INTEGER, touchdowns VARCHAR, points VARCHAR )
SELECT MAX(field_goals) FROM table_name_76 WHERE touchdowns = 0 AND points > 4
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3959, 41, 1057, 834, 839, 5405, 3, 21342, 17966, 6, 19396, 7, 584, 4280, 28027, 6, 979, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 4073, 7257, 1766, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 4800, 4, 599, 1846, 834, 839, 5405, 61, 21680, 953, 834, 4350, 834, 3959, 549, 17444, 427, 19396, 7, 3274, 3, 632, 3430, 979, 2490, 314, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
how many albums are there ?
CREATE TABLE table_204_631 ( id number, "#" number, "title" text, "english translation" text, "original album" text, "length" text )
SELECT COUNT("title") FROM table_204_631
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26363, 834, 3891, 536, 41, 3, 23, 26, 381, 6, 96, 4663, 121, 381, 6, 96, 21869, 121, 1499, 6, 96, 4606, 40, 1273, 7314, 121, 1499, 6, 96, 21878, 2306, 121, 1499, 6, 96,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2847, 17161, 599, 121, 21869, 8512, 21680, 953, 834, 26363, 834, 3891, 536, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
Which team/s have 48 goals total?
CREATE TABLE table_18967450_2 (club VARCHAR, goals VARCHAR)
SELECT club FROM table_18967450_2 WHERE goals = 48
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 25312, 3708, 10593, 834, 357, 41, 13442, 584, 4280, 28027, 6, 1766, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 372, 87, 7, 43, 4678, 1766, 792, 58, 1, 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, 1886, 21680, 953, 834, 25312, 3708, 10593, 834, 357, 549, 17444, 427, 1766, 3274, 4678, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What is the highest crowd at mcg?
CREATE TABLE table_56793 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT MAX("Crowd") FROM table_56793 WHERE "Venue" = 'mcg'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4834, 4440, 519, 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, 4800, 4, 599, 121, 254, 3623, 26, 8512, 21680, 953, 834, 4834, 4440, 519, 549, 17444, 427, 96, 553, 35, 76, 15, 121, 3274, 3, 31, 51, 75, 122, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What time did bruce anstey complete in a honda 1000cc?
CREATE TABLE table_name_88 (time VARCHAR, machine VARCHAR, rider_s_ VARCHAR)
SELECT time FROM table_name_88 WHERE machine = "honda 1000cc" AND rider_s_ = "bruce anstey"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4060, 41, 715, 584, 4280, 28027, 6, 1437, 584, 4280, 28027, 6, 2564, 52, 834, 7, 834, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 97, 410, 3, 9052,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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...
[ 3, 23143, 14196, 97, 21680, 953, 834, 4350, 834, 4060, 549, 17444, 427, 1437, 3274, 96, 31782, 5580, 75, 75, 121, 3430, 2564, 52, 834, 7, 834, 3274, 96, 9052, 565, 46, 849, 63, 121, 1, -100, -100, -100, -100, -100, -100, -100, -10...
Can you tell me the average Weight that has Height of 6-9?
CREATE TABLE table_name_69 ( weight INTEGER, height VARCHAR )
SELECT AVG(weight) FROM table_name_69 WHERE height = "6-9"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3951, 41, 1293, 3, 21342, 17966, 6, 3902, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 1072, 25, 817, 140, 8, 1348, 14230, 24, 65, 24231, 13, 431, 714...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 71, 17217, 599, 9378, 61, 21680, 953, 834, 4350, 834, 3951, 549, 17444, 427, 3902, 3274, 96, 948, 7141, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Which artist/group is most productive?
CREATE TABLE tags ( index number, id number, tag text ) CREATE TABLE torrents ( groupname text, totalsnatched number, artist text, groupyear number, releasetype text, groupid number, id number )
SELECT artist FROM torrents GROUP BY artist ORDER BY COUNT(groupname) DESC LIMIT 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 12391, 41, 5538, 381, 6, 3, 23, 26, 381, 6, 7860, 1499, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 23326, 7, 41, 563, 4350, 1499, 6, 792, 7, 29, 144, 4513, 381, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2377, 21680, 23326, 7, 350, 4630, 6880, 272, 476, 2377, 4674, 11300, 272, 476, 2847, 17161, 599, 10739, 4350, 61, 309, 25067, 8729, 12604, 209, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Create a bar chart showing the number of state province across state province, show from low to high by the bar.
CREATE TABLE countries ( COUNTRY_ID varchar(2), COUNTRY_NAME varchar(40), REGION_ID decimal(10,0) ) CREATE TABLE departments ( DEPARTMENT_ID decimal(4,0), DEPARTMENT_NAME varchar(30), MANAGER_ID decimal(6,0), LOCATION_ID decimal(4,0) ) CREATE TABLE employees ( EMPLOYEE_ID decimal(6,0), FIRST_NAME varchar(20), LAST_NAME varchar(25), EMAIL varchar(25), PHONE_NUMBER varchar(20), HIRE_DATE date, JOB_ID varchar(10), SALARY decimal(8,2), COMMISSION_PCT decimal(2,2), MANAGER_ID decimal(6,0), DEPARTMENT_ID decimal(4,0) ) CREATE TABLE job_history ( EMPLOYEE_ID decimal(6,0), START_DATE date, END_DATE date, JOB_ID varchar(10), DEPARTMENT_ID decimal(4,0) ) CREATE TABLE regions ( REGION_ID decimal(5,0), REGION_NAME varchar(25) ) CREATE TABLE locations ( LOCATION_ID decimal(4,0), STREET_ADDRESS varchar(40), POSTAL_CODE varchar(12), CITY varchar(30), STATE_PROVINCE varchar(25), COUNTRY_ID varchar(2) ) CREATE TABLE jobs ( JOB_ID varchar(10), JOB_TITLE varchar(35), MIN_SALARY decimal(6,0), MAX_SALARY decimal(6,0) )
SELECT STATE_PROVINCE, COUNT(STATE_PROVINCE) FROM locations GROUP BY STATE_PROVINCE ORDER BY STATE_PROVINCE
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1440, 41, 2847, 17161, 11824, 834, 4309, 3, 4331, 4059, 16426, 6, 2847, 17161, 11824, 834, 567, 17683, 3, 4331, 4059, 599, 2445, 201, 4083, 517, 9215, 834, 4309, 7908, 1982, 599, 1714, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 5097, 6048, 834, 17618, 553, 3162, 4770, 6, 2847, 17161, 599, 4209, 6048, 834, 17618, 553, 3162, 4770, 61, 21680, 3248, 350, 4630, 6880, 272, 476, 5097, 6048, 834, 17618, 553, 3162, 4770, 4674, 11300, 272, 476, 5097, ...
What was the Result after the Week 4 on November 3, 1968?
CREATE TABLE table_34498 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Attendance" real )
SELECT "Result" FROM table_34498 WHERE "Week" > '4' AND "Date" = 'november 3, 1968'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 519, 3628, 3916, 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, 1...
[ 3, 23143, 14196, 96, 20119, 121, 21680, 953, 834, 519, 3628, 3916, 549, 17444, 427, 96, 518, 10266, 121, 2490, 3, 31, 591, 31, 3430, 96, 308, 342, 121, 3274, 3, 31, 5326, 18247, 6180, 16506, 31, 1, -100, -100, -100, -100, -100, -1...
What was the state with the total electricity generated is 38380 gw-h?
CREATE TABLE table_25244412_2 (state VARCHAR, total_electricity__gw·h_ VARCHAR)
SELECT state FROM table_25244412_2 WHERE total_electricity__gw·h_ = 38380
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1828, 2266, 3628, 2122, 834, 357, 41, 5540, 584, 4280, 28027, 6, 792, 834, 17470, 485, 834, 834, 122, 210, 2, 107, 834, 584, 4280, 28027, 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, 0, 0, 0...
[ 3, 23143, 14196, 538, 21680, 953, 834, 1828, 2266, 3628, 2122, 834, 357, 549, 17444, 427, 792, 834, 17470, 485, 834, 834, 122, 210, 2, 107, 834, 3274, 6654, 22671, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the high lap total for pedro diniz?
CREATE TABLE table_name_24 ( laps INTEGER, driver VARCHAR )
SELECT MAX(laps) FROM table_name_24 WHERE driver = "pedro diniz"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2266, 41, 14941, 7, 3, 21342, 17966, 6, 2535, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 306, 14941, 792, 21, 3, 3138, 52, 32, 176, 23...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 4800, 4, 599, 8478, 7, 61, 21680, 953, 834, 4350, 834, 2266, 549, 17444, 427, 2535, 3274, 96, 3138, 52, 32, 176, 23, 172, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Who is the turbine vendor for Meenadreen in Donegal county with less than 6 turbines with a size of 0.85 MW?
CREATE TABLE table_name_85 ( turbine_vendor VARCHAR, wind_farm VARCHAR, size__mw_ VARCHAR, turbines VARCHAR, county VARCHAR )
SELECT turbine_vendor FROM table_name_85 WHERE turbines < 6 AND county = "donegal" AND size__mw_ = "0.85" AND wind_farm = "meenadreen"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4433, 41, 20784, 834, 1926, 26, 127, 584, 4280, 28027, 6, 2943, 834, 5544, 51, 584, 4280, 28027, 6, 812, 834, 834, 51, 210, 834, 584, 4280, 28027, 6, 20784, 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, 20784, 834, 1926, 26, 127, 21680, 953, 834, 4350, 834, 4433, 549, 17444, 427, 20784, 7, 3, 2, 431, 3430, 5435, 3274, 96, 2029, 15, 6191, 121, 3430, 812, 834, 834, 51, 210, 834, 3274, 96, 22384, 17395, 3430, 2943, ...
what is subject name and date of birth of subject id 29541?
CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title 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 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 )
SELECT demographic.name, demographic.dob FROM demographic WHERE demographic.subject_id = "29541"
[ 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, 14798, 5, 4350, 6, 14798, 5, 26, 32, 115, 21680, 14798, 549, 17444, 427, 14798, 5, 7304, 11827, 834, 23, 26, 3274, 96, 357, 3301, 4853, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Give me a bar chart for mean points of each position, show X-axis in ascending order.
CREATE TABLE club_rank ( Rank real, Club_ID int, Gold real, Silver real, Bronze real, Total real ) CREATE TABLE club ( Club_ID int, name text, Region text, Start_year text ) CREATE TABLE player ( Player_ID int, name text, Position text, Club_ID int, Apps real, Tries real, Goals text, Points real ) CREATE TABLE competition ( Competition_ID int, Year real, Competition_type text, Country text ) CREATE TABLE competition_result ( Competition_ID int, Club_ID_1 int, Club_ID_2 int, Score text )
SELECT Position, AVG(Points) FROM player GROUP BY Position ORDER BY Position
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1886, 834, 6254, 41, 3, 22557, 490, 6, 1949, 834, 4309, 16, 17, 6, 2540, 490, 6, 5642, 490, 6, 20841, 490, 6, 9273, 490, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 14258, 6, 71, 17217, 599, 22512, 7, 61, 21680, 1959, 350, 4630, 6880, 272, 476, 14258, 4674, 11300, 272, 476, 14258, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What is the branding of the callsign DWCI-TV?
CREATE TABLE table_2610582_2 (branding VARCHAR, callsign VARCHAR)
SELECT branding FROM table_2610582_2 WHERE callsign = "DWCI-TV"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2688, 12869, 4613, 834, 357, 41, 12164, 53, 584, 4280, 28027, 6, 580, 6732, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 14282, 13, 8, 580, 6732, 3, 202...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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...
[ 3, 23143, 14196, 14282, 21680, 953, 834, 2688, 12869, 4613, 834, 357, 549, 17444, 427, 580, 6732, 3274, 96, 20293, 3597, 18, 4562, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
How many teams are listed for February 18?
CREATE TABLE table_15869204_7 (team VARCHAR, date VARCHAR)
SELECT COUNT(team) FROM table_15869204_7 WHERE date = "February 18"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26556, 3951, 26363, 834, 940, 41, 11650, 584, 4280, 28027, 6, 833, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 2323, 33, 2616, 21, 2083, 507, 58, 1, 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, 2847, 17161, 599, 11650, 61, 21680, 953, 834, 26556, 3951, 26363, 834, 940, 549, 17444, 427, 833, 3274, 96, 31122, 507, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What was the Michele Alboreto's engine?
CREATE TABLE table_name_22 (engine VARCHAR, driver VARCHAR)
SELECT engine FROM table_name_22 WHERE driver = "michele alboreto"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2884, 41, 20165, 584, 4280, 28027, 6, 2535, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 9411, 15, 12677, 127, 15, 235, 31, 7, 1948, 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, 1948, 21680, 953, 834, 4350, 834, 2884, 549, 17444, 427, 2535, 3274, 96, 51, 362, 400, 7046, 127, 15, 235, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
what mayor of anglet town served for the same number of years as daubin ?
CREATE TABLE table_203_372 ( id number, "from" number, "to" number, "name" text, "party" text, "position" number )
SELECT "name" FROM table_203_372 WHERE "name" <> 'daubin' AND "to" - "from" = (SELECT "to" - "from" FROM table_203_372 WHERE "name" = 'daubin')
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 23330, 834, 4118, 357, 41, 3, 23, 26, 381, 6, 96, 7152, 121, 381, 6, 96, 235, 121, 381, 6, 96, 4350, 121, 1499, 6, 96, 8071, 121, 1499, 6, 96, 4718, 121, 381, 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, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 4350, 121, 21680, 953, 834, 23330, 834, 4118, 357, 549, 17444, 427, 96, 4350, 121, 3, 2, 3155, 3, 31, 26, 402, 4517, 31, 3430, 96, 235, 121, 3, 18, 96, 7152, 121, 3274, 41, 23143, 14196, 96, 235, 121, 3, 1...
Who was the partner that played against Serena Williams Venus Williams?
CREATE TABLE table_name_94 (partner VARCHAR, opponents_in_the_final VARCHAR)
SELECT partner FROM table_name_94 WHERE opponents_in_the_final = "serena williams venus williams"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4240, 41, 12300, 584, 4280, 28027, 6, 16383, 834, 77, 834, 532, 834, 12406, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 2645, 47, 8, 2397, 24, 1944, 581, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2397, 21680, 953, 834, 4350, 834, 4240, 549, 17444, 427, 16383, 834, 77, 834, 532, 834, 12406, 3274, 96, 7, 49, 35, 9, 56, 23, 265, 7, 3, 25116, 56, 23, 265, 7, 121, 1, -100, -100, -100, -100, -100, -100, -100, ...
what is the engine that saw 0 points, and a Chassis of porsche 718, in 1961?
CREATE TABLE table_name_27 ( engine VARCHAR, year VARCHAR, points VARCHAR, chassis VARCHAR )
SELECT engine FROM table_name_27 WHERE points = 0 AND chassis = "porsche 718" AND year = 1961
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2555, 41, 1948, 584, 4280, 28027, 6, 215, 584, 4280, 28027, 6, 979, 584, 4280, 28027, 6, 22836, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 125, 19, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1948, 21680, 953, 834, 4350, 834, 2555, 549, 17444, 427, 979, 3274, 3, 632, 3430, 22836, 3274, 96, 102, 127, 3992, 489, 2606, 121, 3430, 215, 3274, 21018, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Who wrote the episodes that were directed by Peter O'Fallon?
CREATE TABLE table_28561455_1 (written_by VARCHAR, directed_by VARCHAR)
SELECT written_by FROM table_28561455_1 WHERE directed_by = "Peter O'Fallon"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2577, 4834, 2534, 3769, 834, 536, 41, 14973, 834, 969, 584, 4280, 28027, 6, 6640, 834, 969, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 2645, 2832, 8, 13562, 24, 130...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1545, 834, 969, 21680, 953, 834, 2577, 4834, 2534, 3769, 834, 536, 549, 17444, 427, 6640, 834, 969, 3274, 96, 345, 15, 449, 411, 31, 371, 1748, 106, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
provide the number of patients whose diagnoses long title is diverticulosis of colon with hemorrhage and lab test abnormal status is abnormal?
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 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 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 diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE diagnoses.long_title = "Diverticulosis of colon with hemorrhage" AND lab.flag = "abnormal"
[ 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, 18730, 7, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 18730, 7, 5, 8399, 51, 834, 23, 26, 3...
what is the average finish for thomas lloyd ?
CREATE TABLE table_204_24 ( id number, "year" number, "league" text, "record" text, "finish" text, "manager" text, "playoffs" text, "notes" text )
SELECT AVG("finish") FROM table_204_24 WHERE "manager" = 'thomas lloyd'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26363, 834, 2266, 41, 3, 23, 26, 381, 6, 96, 1201, 121, 381, 6, 96, 29512, 121, 1499, 6, 96, 60, 7621, 121, 1499, 6, 96, 25535, 121, 1499, 6, 96, 24185, 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, 71, 17217, 599, 121, 25535, 8512, 21680, 953, 834, 26363, 834, 2266, 549, 17444, 427, 96, 24185, 121, 3274, 3, 31, 189, 32, 2754, 3, 195, 32, 63, 26, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
Who was the opponent with a series of 1-0?
CREATE TABLE table_14901 ( "Date" text, "Opponent" text, "Score" text, "Loss" text, "Attendance" real, "Series" text )
SELECT "Opponent" FROM table_14901 WHERE "Series" = '1-0'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 24816, 4542, 41, 96, 308, 342, 121, 1499, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 434, 32, 7, 7, 121, 1499, 6, 96, 188, 17, 324, 26, 663...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 102, 9977, 121, 21680, 953, 834, 24816, 4542, 549, 17444, 427, 96, 12106, 7, 121, 3274, 3, 31, 18930, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What is the average round of the rw position player from the United States?
CREATE TABLE table_name_18 (round INTEGER, nationality VARCHAR, position VARCHAR)
SELECT AVG(round) FROM table_name_18 WHERE nationality = "united states" AND position = "rw"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2606, 41, 7775, 3, 21342, 17966, 6, 1157, 485, 584, 4280, 28027, 6, 1102, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 1348, 1751, 13, 8, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 71, 17217, 599, 7775, 61, 21680, 953, 834, 4350, 834, 2606, 549, 17444, 427, 1157, 485, 3274, 96, 15129, 15, 26, 2315, 121, 3430, 1102, 3274, 96, 52, 210, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Find the number of members of club 'Pen and Paper Gaming'.
CREATE TABLE member_of_club ( clubid VARCHAR, stuid VARCHAR ) CREATE TABLE student ( stuid VARCHAR ) CREATE TABLE club ( clubid VARCHAR, clubname VARCHAR )
SELECT COUNT(*) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Pen and Paper Gaming"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1144, 834, 858, 834, 13442, 41, 1886, 23, 26, 584, 4280, 28027, 6, 21341, 23, 26, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 1236, 41, 21341, 23, 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, 2847, 17161, 599, 1935, 61, 21680, 1886, 6157, 3, 17, 536, 3, 15355, 3162, 1144, 834, 858, 834, 13442, 6157, 3, 17, 357, 9191, 3, 17, 5411, 13442, 23, 26, 3274, 3, 17, 4416, 13442, 23, 26, 3, 15355, 3162, 1236, ...
what is the dadar xi b where pifa colaba is sporting options?
CREATE TABLE table_28759261_5 (dadar_xi_‘b’ VARCHAR, pifa_colaba_fc_u_17 VARCHAR)
SELECT dadar_xi_‘b’ FROM table_28759261_5 WHERE pifa_colaba_fc_u_17 = "Sporting Options"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2577, 3072, 4508, 4241, 834, 755, 41, 26, 9, 3439, 834, 226, 23, 834, 5174, 115, 22, 584, 4280, 28027, 6, 3, 102, 99, 9, 834, 3297, 8699, 834, 89, 75, 834, 76, 834, 251...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 7370, 291, 834, 226, 23, 834, 5174, 115, 22, 21680, 953, 834, 2577, 3072, 4508, 4241, 834, 755, 549, 17444, 427, 3, 102, 99, 9, 834, 3297, 8699, 834, 89, 75, 834, 76, 834, 2517, 3274, 96, 17682, 53, 17011, 121, ...
who did highest rebounds in the game with score w 105 88 (ot)
CREATE TABLE table_17190012_7 ( high_rebounds VARCHAR, score VARCHAR )
SELECT high_rebounds FROM table_17190012_7 WHERE score = "W 105–88 (OT)"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2517, 2294, 1206, 2122, 834, 940, 41, 306, 834, 23768, 584, 4280, 28027, 6, 2604, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 113, 410, 2030, 3, 23768, 16, 8, 4...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 306, 834, 23768, 21680, 953, 834, 2517, 2294, 1206, 2122, 834, 940, 549, 17444, 427, 2604, 3274, 96, 518, 3, 12869, 104, 4060, 41, 6951, 61, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
How much #s have an Area in km² larger than 13.5, and a Population Canada 2011 Census of 134,038?
CREATE TABLE table_name_3 (number__map_ VARCHAR, area_in_km² VARCHAR, population_canada_2011_census VARCHAR)
SELECT COUNT(number__map_) FROM table_name_3 WHERE area_in_km² > 13.5 AND population_canada_2011_census = 134 OFFSET 038
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 519, 41, 5525, 1152, 834, 834, 11576, 834, 584, 4280, 28027, 6, 616, 834, 77, 834, 5848, 357, 584, 4280, 28027, 6, 2074, 834, 658, 18089, 834, 13907, 834, 75, 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, 2847, 17161, 599, 5525, 1152, 834, 834, 11576, 834, 61, 21680, 953, 834, 4350, 834, 519, 549, 17444, 427, 616, 834, 77, 834, 5848, 357, 2490, 209, 9285, 3430, 2074, 834, 658, 18089, 834, 13907, 834, 75, 35, 7, 302, ...
What is Opponent, when Rank is 3?
CREATE TABLE table_45774 ( "Rank" text, "Figures" text, "Player" text, "Opponent" text, "Venue" text, "Season" text )
SELECT "Opponent" FROM table_45774 WHERE "Rank" = '3'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2128, 4013, 591, 41, 96, 22557, 121, 1499, 6, 96, 16691, 7, 121, 1499, 6, 96, 15800, 49, 121, 1499, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 553, 35, 76, 15, 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, 667, 102, 9977, 121, 21680, 953, 834, 2128, 4013, 591, 549, 17444, 427, 96, 22557, 121, 3274, 3, 31, 519, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What name has a Rocket of titan iv(401)b and a Block of block i/ii hybrid?
CREATE TABLE table_name_2 ( name VARCHAR, rocket VARCHAR, block VARCHAR )
SELECT name FROM table_name_2 WHERE rocket = "titan iv(401)b" AND block = "block i/ii hybrid"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 357, 41, 564, 584, 4280, 28027, 6, 15721, 584, 4280, 28027, 6, 2463, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 564, 65, 3, 9, 22176, 13, 29243...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 21680, 953, 834, 4350, 834, 357, 549, 17444, 427, 15721, 3274, 96, 17, 155, 152, 3, 23, 208, 599, 20016, 61, 115, 121, 3430, 2463, 3274, 96, 10734, 3, 23, 87, 23, 23, 9279, 121, 1, -100, -100, -100, -100, -...
What format for the release that had 2000 copies?
CREATE TABLE table_18710512_3 (format VARCHAR, other_details VARCHAR)
SELECT format FROM table_18710512_3 WHERE other_details = "2000 copies"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 25828, 12869, 2122, 834, 519, 41, 8995, 584, 4280, 28027, 6, 119, 834, 221, 5756, 7, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 1910, 21, 8, 1576, 24, 141, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1910, 21680, 953, 834, 25828, 12869, 2122, 834, 519, 549, 17444, 427, 119, 834, 221, 5756, 7, 3274, 96, 13527, 8167, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What is the largest win percentage when John Gartin is coach, the record is 11-0, and the year is 2009?
CREATE TABLE table_38333 ( "Year" text, "Coach" text, "Crew" text, "Record" text, "Win %" real )
SELECT MAX("Win %") FROM table_38333 WHERE "Coach" = 'john gartin' AND "Record" = '11-0' AND "Year" = '2009'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3747, 23360, 41, 96, 476, 2741, 121, 1499, 6, 96, 3881, 1836, 121, 1499, 6, 96, 254, 60, 210, 121, 1499, 6, 96, 1649, 7621, 121, 1499, 6, 96, 18455, 3, 1454, 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, 1, 1, 1...
[ 3, 23143, 14196, 4800, 4, 599, 121, 18455, 3, 1454, 8512, 21680, 953, 834, 3747, 23360, 549, 17444, 427, 96, 3881, 1836, 121, 3274, 3, 31, 27341, 5260, 17, 77, 31, 3430, 96, 1649, 7621, 121, 3274, 3, 31, 536, 18930, 31, 3430, 96, ...
What is North Valleys School Mascot?
CREATE TABLE table_name_51 ( mascot VARCHAR, school VARCHAR )
SELECT mascot FROM table_name_51 WHERE school = "north valleys"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 5553, 41, 3, 2754, 4310, 584, 4280, 28027, 6, 496, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 1117, 3460, 7, 1121, 6664, 4310, 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, 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, 3, 2754, 4310, 21680, 953, 834, 4350, 834, 5553, 549, 17444, 427, 496, 3274, 96, 29, 127, 189, 10645, 7, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
How many clubs have won 6 games?
CREATE TABLE table_12886178_5 ( club VARCHAR, won VARCHAR )
SELECT COUNT(club) FROM table_12886178_5 WHERE won = "6"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2122, 4060, 4241, 3940, 834, 755, 41, 1886, 584, 4280, 28027, 6, 751, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 8122, 43, 751, 431, 1031, 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, 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, 2847, 17161, 599, 13442, 61, 21680, 953, 834, 2122, 4060, 4241, 3940, 834, 755, 549, 17444, 427, 751, 3274, 96, 948, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
How many years was there a peter jackson classic?
CREATE TABLE table_name_64 (year VARCHAR, championship VARCHAR)
SELECT COUNT(year) FROM table_name_64 WHERE championship = "peter jackson classic"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4389, 41, 1201, 584, 4280, 28027, 6, 10183, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 203, 47, 132, 3, 9, 158, 449, 3, 9325, 739, 2431, 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...
[ 3, 23143, 14196, 2847, 17161, 599, 1201, 61, 21680, 953, 834, 4350, 834, 4389, 549, 17444, 427, 10183, 3274, 96, 4995, 49, 3, 9325, 739, 2431, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is Series, when Winner is Jetmir Salaj?
CREATE TABLE table_name_54 (series VARCHAR, winner VARCHAR)
SELECT series FROM table_name_54 WHERE winner = "jetmir salaj"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 5062, 41, 10833, 7, 584, 4280, 28027, 6, 4668, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 4531, 6, 116, 18125, 19, 12434, 5884, 8930, 354, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 939, 21680, 953, 834, 4350, 834, 5062, 549, 17444, 427, 4668, 3274, 96, 9245, 5884, 5394, 9, 354, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
when has patient 004-11006 first received a procedure since 2103?
CREATE TABLE cost ( costid number, uniquepid text, patienthealthsystemstayid number, eventtype text, eventid number, chargetime time, cost number ) CREATE TABLE allergy ( allergyid number, patientunitstayid number, drugname text, allergyname text, allergytime time ) CREATE TABLE diagnosis ( diagnosisid number, patientunitstayid number, diagnosisname text, diagnosistime time, icd9code text ) CREATE TABLE microlab ( microlabid number, patientunitstayid number, culturesite text, organism text, culturetakentime time ) CREATE TABLE lab ( labid number, patientunitstayid number, labname text, labresult number, labresulttime 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 ) CREATE TABLE intakeoutput ( intakeoutputid number, patientunitstayid number, cellpath text, celllabel text, cellvaluenumeric number, intakeoutputtime 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 medication ( medicationid number, patientunitstayid number, drugname text, dosage text, routeadmin text, drugstarttime time, drugstoptime time ) CREATE TABLE treatment ( treatmentid number, patientunitstayid number, treatmentname text, treatmenttime time )
SELECT treatment.treatmenttime FROM treatment WHERE treatment.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '004-11006')) AND STRFTIME('%y', treatment.treatmenttime) >= '2103' ORDER BY treatment.treatmenttime 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, 1058, 5, 26889, 715, 21680, 1058, 549, 17444, 427, 1058, 5, 10061, 15129, 21545, 23, 26, 3388, 41, 23143, 14196, 1868, 5, 10061, 15129, 21545, 23, 26, 21680, 1868, 549, 17444, 427, 1868, 5, 10061, 15878, 3734, 21545, ...
Return a pie chart on how many events are there for each party?
CREATE TABLE party_events ( Event_ID int, Event_Name text, Party_ID int, Member_in_charge_ID int ) CREATE TABLE region ( Region_ID int, Region_name text, Date text, Label text, Format text, Catalogue text ) CREATE TABLE party ( Party_ID int, Minister text, Took_office text, Left_office text, Region_ID int, Party_name text ) CREATE TABLE member ( Member_ID int, Member_Name text, Party_ID text, In_office text )
SELECT Party_name, COUNT(*) FROM party_events AS T1 JOIN party AS T2 ON T1.Party_ID = T2.Party_ID GROUP BY T1.Party_ID
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1088, 834, 15, 2169, 7, 41, 8042, 834, 4309, 16, 17, 6, 8042, 834, 23954, 1499, 6, 3450, 834, 4309, 16, 17, 6, 8541, 834, 77, 834, 7993, 834, 4309, 16, 17, 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, 3450, 834, 4350, 6, 2847, 17161, 599, 1935, 61, 21680, 1088, 834, 15, 2169, 7, 6157, 332, 536, 3, 15355, 3162, 1088, 6157, 332, 357, 9191, 332, 5411, 13725, 63, 834, 4309, 3274, 332, 4416, 13725, 63, 834, 4309, 350,...
Name the best when runs of 1088 and matches more than 11
CREATE TABLE table_67442 ( "Matches" real, "Wickets" real, "Runs" real, "10WM" real, "Best" text )
SELECT "Best" FROM table_67442 WHERE "Matches" > '11' AND "Runs" = '1088'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3708, 3628, 357, 41, 96, 329, 144, 2951, 121, 490, 6, 96, 518, 447, 8044, 7, 121, 490, 6, 96, 448, 202, 7, 121, 490, 6, 96, 1714, 16727, 121, 490, 6, 96, 17278, 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, 17278, 121, 21680, 953, 834, 3708, 3628, 357, 549, 17444, 427, 96, 329, 144, 2951, 121, 2490, 3, 31, 2596, 31, 3430, 96, 448, 202, 7, 121, 3274, 3, 31, 1714, 4060, 31, 1, -100, -100, -100, -100, -100, -100, ...
What are the seasons where Marcello Puglisi (formula master italia) was the secondary class champion?
CREATE TABLE table_55689 ( "Season" real, "Series Name" text, "Champion" text, "Team Champion" text, "Secondary Class Champion" text )
SELECT SUM("Season") FROM table_55689 WHERE "Secondary Class Champion" = 'marcello puglisi (formula master italia)'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3769, 948, 3914, 41, 96, 134, 15, 9, 739, 121, 490, 6, 96, 12106, 7, 5570, 121, 1499, 6, 96, 254, 1483, 12364, 121, 1499, 6, 96, 18699, 16127, 121, 1499, 6, 96, 134, 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, 180, 6122, 599, 121, 134, 15, 9, 739, 8512, 21680, 953, 834, 3769, 948, 3914, 549, 17444, 427, 96, 134, 15, 1018, 26, 1208, 4501, 16127, 121, 3274, 3, 31, 1635, 8725, 32, 4353, 4707, 7, 23, 41, 2032, 83, 9, 2325...
what is the game where the high points is by manu gin bili (26)?
CREATE TABLE table_3859 ( "Game" real, "Date" text, "Team" text, "Score" text, "High points" text, "High rebounds" text, "High assists" text, "Location Attendance" text, "Record" text )
SELECT "Game" FROM table_3859 WHERE "High points" = 'Manu Ginóbili (26)'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3747, 3390, 41, 96, 23055, 121, 490, 6, 96, 308, 342, 121, 1499, 6, 96, 18699, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 21417, 979, 121, 1499, 6, 96, 21417, 3, 23...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 23055, 121, 21680, 953, 834, 3747, 3390, 549, 17444, 427, 96, 21417, 979, 121, 3274, 3, 31, 7296, 76, 15079, 4922, 3727, 23, 4743, 10938, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What are the names of all females who are friends with Zach?
CREATE TABLE personfriend ( name text, friend text, year number ) CREATE TABLE person ( name text, age number, city text, gender text, job text )
SELECT T1.name FROM person AS T1 JOIN personfriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Zach' AND T1.gender = 'female'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 568, 15504, 41, 564, 1499, 6, 1565, 1499, 6, 215, 381, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 568, 41, 564, 1499, 6, 1246, 381, 6, 690, 1499, 6, 7285, 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, 332, 5411, 4350, 21680, 568, 6157, 332, 536, 3, 15355, 3162, 568, 15504, 6157, 332, 357, 9191, 332, 5411, 4350, 3274, 332, 4416, 4350, 549, 17444, 427, 332, 4416, 15504, 3274, 3, 31, 956, 1836, 31, 3430, 332, 5411, ...
Who were the opponents in the match that was played on a hard court and had a runner-up outcome?
CREATE TABLE table_68338 ( "Outcome" text, "Date" text, "Surface" text, "Partner" text, "Opponents" text, "Score" text )
SELECT "Opponents" FROM table_68338 WHERE "Surface" = 'hard' AND "Outcome" = 'runner-up'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3651, 519, 3747, 41, 96, 15767, 287, 15, 121, 1499, 6, 96, 308, 342, 121, 1499, 6, 96, 134, 450, 4861, 121, 1499, 6, 96, 13725, 687, 121, 1499, 6, 96, 667, 102, 9977, 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, 667, 102, 9977, 7, 121, 21680, 953, 834, 3651, 519, 3747, 549, 17444, 427, 96, 134, 450, 4861, 121, 3274, 3, 31, 5651, 31, 3430, 96, 15767, 287, 15, 121, 3274, 3, 31, 10806, 18, 413, 31, 1, -100, -100, -100,...
Which team had a start of 8 in years under 2008?
CREATE TABLE table_name_22 (team VARCHAR, start VARCHAR, year VARCHAR)
SELECT team FROM table_name_22 WHERE start = 8 AND year < 2008
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2884, 41, 11650, 584, 4280, 28027, 6, 456, 584, 4280, 28027, 6, 215, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 372, 141, 3, 9, 456, 13, 505, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 372, 21680, 953, 834, 4350, 834, 2884, 549, 17444, 427, 456, 3274, 505, 3430, 215, 3, 2, 2628, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What day did the team play in murcia with a score of 0-3 after 1992?
CREATE TABLE table_57313 ( "Year" real, "Competition" text, "Date" text, "Location" text, "Score" text, "Result" text )
SELECT "Date" FROM table_57313 WHERE "Year" > '1992' AND "Location" = 'murcia' AND "Score" = '0-3'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3436, 519, 2368, 41, 96, 476, 2741, 121, 490, 6, 96, 5890, 4995, 4749, 121, 1499, 6, 96, 308, 342, 121, 1499, 6, 96, 434, 32, 75, 257, 121, 1499, 6, 96, 134, 9022, 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, 308, 342, 121, 21680, 953, 834, 3436, 519, 2368, 549, 17444, 427, 96, 476, 2741, 121, 2490, 3, 31, 19479, 357, 31, 3430, 96, 434, 32, 75, 257, 121, 3274, 3, 31, 11054, 4915, 31, 3430, 96, 134, 9022, 121, 327...
What is Pittodrie Stadium's maximum capacity?
CREATE TABLE table_156 ( "Team" text, "Stadium" text, "Capacity" real, "Lowest" real, "Highest" real, "Average" real )
SELECT MAX("Capacity") FROM table_156 WHERE "Stadium" = 'Pittodrie'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 25463, 41, 96, 18699, 121, 1499, 6, 96, 134, 17, 9, 12925, 121, 1499, 6, 96, 19566, 9, 6726, 121, 490, 6, 96, 434, 32, 12425, 121, 490, 6, 96, 21417, 222, 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, 4800, 4, 599, 121, 19566, 9, 6726, 8512, 21680, 953, 834, 25463, 549, 17444, 427, 96, 134, 17, 9, 12925, 121, 3274, 3, 31, 345, 155, 235, 26, 1753, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
among patients to whom the drug was administered via ng route, how many of them were aged below 62?
CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text ) CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) 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 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 COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.age < "62" AND prescriptions.route = "NG"
[ 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...
Which Stations are in vancouver, bc?
CREATE TABLE table_name_64 (stations VARCHAR, city VARCHAR)
SELECT stations FROM table_name_64 WHERE city = "vancouver, bc"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4389, 41, 6682, 7, 584, 4280, 28027, 6, 690, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 5939, 7, 33, 16, 4049, 3422, 624, 6, 3, 115, 75, 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, 6991, 21680, 953, 834, 4350, 834, 4389, 549, 17444, 427, 690, 3274, 96, 2132, 3422, 624, 6, 3, 115, 75, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Who is the tournament winner in the Atlantic Coast Conference?
CREATE TABLE table_22779004_1 ( tournament_winner VARCHAR, conference VARCHAR )
SELECT tournament_winner FROM table_22779004_1 WHERE conference = "Atlantic Coast conference"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2884, 4013, 7015, 591, 834, 536, 41, 5892, 834, 3757, 687, 584, 4280, 28027, 6, 2542, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 2645, 19, 8, 5892, 4668, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 5892, 834, 3757, 687, 21680, 953, 834, 2884, 4013, 7015, 591, 834, 536, 549, 17444, 427, 2542, 3274, 96, 188, 17, 1618, 1225, 5458, 2542, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is the sum of Blank Ends for Denmark when less than 42 is the ends lost?
CREATE TABLE table_name_39 (blank_ends INTEGER, nation VARCHAR, ends_lost VARCHAR)
SELECT SUM(blank_ends) FROM table_name_39 WHERE nation = "denmark" AND ends_lost < 42
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3288, 41, 4605, 29, 157, 834, 989, 7, 3, 21342, 17966, 6, 2982, 584, 4280, 28027, 6, 5542, 834, 2298, 17, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 36...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 180, 6122, 599, 4605, 29, 157, 834, 989, 7, 61, 21680, 953, 834, 4350, 834, 3288, 549, 17444, 427, 2982, 3274, 96, 537, 3920, 121, 3430, 5542, 834, 2298, 17, 3, 2, 6426, 1, -100, -100, -100, -100, -100, -100, -100...
What is the Time/Retired for the BMW Sauber, and Nick Heidfeld?
CREATE TABLE table_name_80 (time_retired VARCHAR, constructor VARCHAR, driver VARCHAR)
SELECT time_retired FROM table_name_80 WHERE constructor = "bmw sauber" AND driver = "nick heidfeld"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2079, 41, 715, 834, 10682, 1271, 584, 4280, 28027, 6, 6774, 127, 584, 4280, 28027, 6, 2535, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 2900, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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...
[ 3, 23143, 14196, 97, 834, 10682, 1271, 21680, 953, 834, 4350, 834, 2079, 549, 17444, 427, 6774, 127, 3274, 96, 29471, 24007, 121, 3430, 2535, 3274, 96, 11191, 3, 88, 23, 26, 5003, 121, 1, -100, -100, -100, -100, -100, -100, -100, -1...
what is the least number of stumps in a game with 13 dismissals
CREATE TABLE table_19870086_24 (stumped INTEGER, dismissals VARCHAR)
SELECT MIN(stumped) FROM table_19870086_24 WHERE dismissals = 13
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 24151, 9295, 3840, 834, 2266, 41, 7, 17, 440, 3138, 3, 21342, 17966, 6, 16708, 5405, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 125, 19, 8, 709, 381, 13, 27879, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 17684, 599, 7, 17, 440, 3138, 61, 21680, 953, 834, 24151, 9295, 3840, 834, 2266, 549, 17444, 427, 16708, 5405, 3274, 1179, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What is the 20 year for Sulfur Hexafluoride?
CREATE TABLE table_21350772_2 ( gas_name VARCHAR )
SELECT 20 AS _yr FROM table_21350772_2 WHERE gas_name = "Sulfur hexafluoride"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2658, 16975, 4013, 357, 834, 357, 41, 1807, 834, 4350, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 460, 215, 21, 180, 83, 9827, 216, 226, 9, 6947, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 460, 6157, 3, 834, 63, 52, 21680, 953, 834, 2658, 16975, 4013, 357, 834, 357, 549, 17444, 427, 1807, 834, 4350, 3274, 96, 134, 83, 9827, 3, 88, 226, 9, 6947, 127, 1599, 121, 1, -100, -100, -100, -100, -100, -100, ...
Which team has a 1990-91 number of 39 and a 1989-90 number of 34?
CREATE TABLE table_34869 ( "Team" text, "Average" real, "Points" real, "Played" real, "1989-90" text, "1990-91" text, "1991-1992" real )
SELECT "Team" FROM table_34869 WHERE "1990-91" = '39' AND "1989-90" = '34'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 519, 3707, 3951, 41, 96, 18699, 121, 1499, 6, 96, 188, 624, 545, 121, 490, 6, 96, 22512, 7, 121, 490, 6, 96, 15800, 15, 26, 121, 490, 6, 96, 2294, 3914, 18, 2394, 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, 18699, 121, 21680, 953, 834, 519, 3707, 3951, 549, 17444, 427, 96, 19479, 9498, 4729, 121, 3274, 3, 31, 3288, 31, 3430, 96, 2294, 3914, 18, 2394, 121, 3274, 3, 31, 3710, 31, 1, -100, -100, -100, -100, -100, -1...
What is the full name of the staff member who has rented a film to a customer with the first name April and the last name Burns?
CREATE TABLE customer (customer_id VARCHAR, first_name VARCHAR, last_name VARCHAR); CREATE TABLE rental (staff_id VARCHAR, customer_id VARCHAR); CREATE TABLE staff (first_name VARCHAR, last_name VARCHAR, staff_id VARCHAR)
SELECT DISTINCT T1.first_name, T1.last_name FROM staff AS T1 JOIN rental AS T2 ON T1.staff_id = T2.staff_id JOIN customer AS T3 ON T2.customer_id = T3.customer_id WHERE T3.first_name = 'APRIL' AND T3.last_name = 'BURNS'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 884, 41, 25697, 49, 834, 23, 26, 584, 4280, 28027, 6, 166, 834, 4350, 584, 4280, 28027, 6, 336, 834, 4350, 584, 4280, 28027, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 332, 5411, 14672, 834, 4350, 6, 332, 5411, 5064, 834, 4350, 21680, 871, 6157, 332, 536, 3, 15355, 3162, 3571, 6157, 332, 357, 9191, 332, 5411, 26416, 834, 23, 26, 3274, 332, 4416, 26416, 834, ...
Stacked bar of took office and how many took office colored by Minister, and sort Y from low to high order.
CREATE TABLE party ( Party_ID int, Minister text, Took_office text, Left_office text, Region_ID int, Party_name text ) CREATE TABLE party_events ( Event_ID int, Event_Name text, Party_ID int, Member_in_charge_ID int ) CREATE TABLE region ( Region_ID int, Region_name text, Date text, Label text, Format text, Catalogue text ) CREATE TABLE member ( Member_ID int, Member_Name text, Party_ID text, In_office text )
SELECT Took_office, COUNT(Took_office) FROM party GROUP BY Minister ORDER BY COUNT(Took_office)
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1088, 41, 3450, 834, 4309, 16, 17, 6, 3271, 1499, 6, 304, 1825, 834, 19632, 1499, 6, 14298, 834, 19632, 1499, 6, 6163, 834, 4309, 16, 17, 6, 3450, 834, 4350, 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, 304, 1825, 834, 19632, 6, 2847, 17161, 599, 3696, 1825, 834, 19632, 61, 21680, 1088, 350, 4630, 6880, 272, 476, 3271, 4674, 11300, 272, 476, 2847, 17161, 599, 3696, 1825, 834, 19632, 61, 1, -100, -100, -100, -100, -10...
Tell me the province for 260km ese of calgary
CREATE TABLE table_31585 ( "Camp" text, "Place" text, "Province" text, "Location" text, "Period" text )
SELECT "Province" FROM table_31585 WHERE "Location" = '260km ese of calgary'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 519, 1808, 4433, 41, 96, 24626, 121, 1499, 6, 96, 345, 11706, 121, 1499, 6, 96, 3174, 2494, 565, 121, 1499, 6, 96, 434, 32, 75, 257, 121, 1499, 6, 96, 12988, 23, 32, 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...
[ 3, 23143, 14196, 96, 3174, 2494, 565, 121, 21680, 953, 834, 519, 1808, 4433, 549, 17444, 427, 96, 434, 32, 75, 257, 121, 3274, 3, 31, 18365, 5848, 3, 15, 7, 15, 13, 3, 1489, 1478, 63, 31, 1, -100, -100, -100, -100, -100, -100, ...
A bar chart about what are the different software platforms for devices, and how many devices have each?, and could you display by the x-axis in desc?
CREATE TABLE stock ( Shop_ID int, Device_ID int, Quantity int ) CREATE TABLE shop ( Shop_ID int, Shop_Name text, Location text, Open_Date text, Open_Year int ) CREATE TABLE device ( Device_ID int, Device text, Carrier text, Package_Version text, Applications text, Software_Platform text )
SELECT Software_Platform, COUNT(*) FROM device GROUP BY Software_Platform ORDER BY Software_Platform DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1519, 41, 3687, 834, 4309, 16, 17, 6, 15511, 834, 4309, 16, 17, 6, 12716, 485, 16, 17, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 1814, 41, 3687, 834, 4309, 16, 17...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 4300, 834, 10146, 2032, 6, 2847, 17161, 599, 1935, 61, 21680, 1407, 350, 4630, 6880, 272, 476, 4300, 834, 10146, 2032, 4674, 11300, 272, 476, 4300, 834, 10146, 2032, 309, 25067, 1, -100, -100, -100, -100, -100, -100, ...
Which Language has a Number of 553 633?
CREATE TABLE table_68314 ( "Language" text, "Number" text, "percentage (%)" text, "males" text, "females" text )
SELECT "Language" FROM table_68314 WHERE "Number" = '553 633'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3651, 519, 2534, 41, 96, 434, 1468, 76, 545, 121, 1499, 6, 96, 567, 5937, 49, 121, 1499, 6, 96, 883, 3728, 545, 41, 6210, 121, 1499, 6, 96, 13513, 7, 121, 1499, 6, 96, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 434, 1468, 76, 545, 121, 21680, 953, 834, 3651, 519, 2534, 549, 17444, 427, 96, 567, 5937, 49, 121, 3274, 3, 31, 3769, 519, 431, 4201, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Where does Melbourne play home games?
CREATE TABLE table_name_13 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_13 WHERE home_team = "melbourne"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2368, 41, 15098, 584, 4280, 28027, 6, 234, 834, 11650, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 2840, 405, 9396, 577, 234, 1031, 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, 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, 5669, 21680, 953, 834, 4350, 834, 2368, 549, 17444, 427, 234, 834, 11650, 3274, 96, 2341, 26255, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What was the highest grid for a time/retired of +19.1 secs?
CREATE TABLE table_name_50 ( grid INTEGER, time_retired VARCHAR )
SELECT MAX(grid) FROM table_name_50 WHERE time_retired = "+19.1 secs"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1752, 41, 8634, 3, 21342, 17966, 6, 97, 834, 10682, 1271, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 2030, 8634, 21, 3, 9, 97, 87, 106...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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...
[ 3, 23143, 14196, 4800, 4, 599, 3496, 26, 61, 21680, 953, 834, 4350, 834, 1752, 549, 17444, 427, 97, 834, 10682, 1271, 3274, 96, 1220, 2294, 5, 536, 4220, 7, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the result for a year later than 2002?
CREATE TABLE table_name_1 (result VARCHAR, year INTEGER)
SELECT result FROM table_name_1 WHERE year > 2002
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 536, 41, 60, 7, 83, 17, 584, 4280, 28027, 6, 215, 3, 21342, 17966, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 741, 21, 3, 9, 215, 865, 145, 4407, 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, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 741, 21680, 953, 834, 4350, 834, 536, 549, 17444, 427, 215, 2490, 4407, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the name of the opponent at the Herceg Novi tournament?
CREATE TABLE table_name_54 (opponent VARCHAR, tournament VARCHAR)
SELECT opponent FROM table_name_54 WHERE tournament = "herceg novi"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 5062, 41, 32, 102, 9977, 584, 4280, 28027, 6, 5892, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 564, 13, 8, 15264, 44, 8, 1347, 565, 122, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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...
[ 3, 23143, 14196, 15264, 21680, 953, 834, 4350, 834, 5062, 549, 17444, 427, 5892, 3274, 96, 760, 565, 122, 150, 2099, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Who was the team for game 34?
CREATE TABLE table_name_79 (team VARCHAR, game VARCHAR)
SELECT team FROM table_name_79 WHERE game = 34
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4440, 41, 11650, 584, 4280, 28027, 6, 467, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 2645, 47, 8, 372, 21, 467, 6154, 58, 1, 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, 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, 372, 21680, 953, 834, 4350, 834, 4440, 549, 17444, 427, 467, 3274, 6154, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Name the D 43 and D 48 of r 28
CREATE TABLE table_66959 ( "D 48" text, "D 47" text, "D 46" text, "D 45" text, "D 44" text, "D 43" text, "D 42" text, "D 41" text )
SELECT "D 43" FROM table_66959 WHERE "D 48" = 'r 28'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 948, 3951, 3390, 41, 96, 308, 4678, 121, 1499, 6, 96, 308, 10635, 121, 1499, 6, 96, 308, 9668, 121, 1499, 6, 96, 308, 3479, 121, 1499, 6, 96, 308, 8537, 121, 1499, 6, 9...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 308, 8838, 121, 21680, 953, 834, 948, 3951, 3390, 549, 17444, 427, 96, 308, 4678, 121, 3274, 3, 31, 52, 2059, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
what's the function / genus with shigella being spa32
CREATE TABLE table_16047 ( "\u2193 Function / Genus \u2192" text, "Shigella" text, "Salmonella" text, "Yersinia" text, "Escherichia" text )
SELECT "\u2193 Function / Genus \u2192" FROM table_16047 WHERE "Shigella" = 'Spa32'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 19129, 4177, 41, 96, 2, 76, 2658, 4271, 21839, 3, 87, 5945, 302, 3, 2, 76, 357, 19978, 121, 1499, 6, 96, 10499, 3077, 195, 9, 121, 1499, 6, 96, 134, 138, 2157, 5303, 12...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2, 76, 2658, 4271, 21839, 3, 87, 5945, 302, 3, 2, 76, 357, 19978, 121, 21680, 953, 834, 19129, 4177, 549, 17444, 427, 96, 10499, 3077, 195, 9, 121, 3274, 3, 31, 134, 102, 9, 2668, 31, 1, -100, -100, -100, ...
What was the record when the score was w 108 93 (ot)?
CREATE TABLE table_18885 ( "Game" real, "Date" text, "Team" text, "Score" text, "High points" text, "High rebounds" text, "High assists" text, "Location Attendance" text, "Record" text )
SELECT "Record" FROM table_18885 WHERE "Score" = 'W 108–93 (OT)'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 25794, 4433, 41, 96, 23055, 121, 490, 6, 96, 308, 342, 121, 1499, 6, 96, 18699, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 21417, 979, 121, 1499, 6, 96, 21417, 3, 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, 1649, 7621, 121, 21680, 953, 834, 25794, 4433, 549, 17444, 427, 96, 134, 9022, 121, 3274, 3, 31, 518, 3, 16169, 104, 4271, 41, 6951, 61, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
when did patient 031-22988 get the microbiology test, for the first time when they visited the hospital first time?
CREATE TABLE intakeoutput ( intakeoutputid number, patientunitstayid number, cellpath text, celllabel text, cellvaluenumeric number, intakeoutputtime time ) CREATE TABLE treatment ( treatmentid number, patientunitstayid number, treatmentname text, treatmenttime time ) CREATE TABLE microlab ( microlabid number, patientunitstayid number, culturesite text, organism text, culturetakentime 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 ) CREATE TABLE medication ( medicationid number, patientunitstayid number, drugname text, dosage text, routeadmin text, drugstarttime time, drugstoptime time ) CREATE TABLE allergy ( allergyid number, patientunitstayid number, drugname text, allergyname text, allergytime time ) CREATE TABLE lab ( labid number, patientunitstayid number, labname text, labresult number, labresulttime time ) CREATE TABLE diagnosis ( diagnosisid number, patientunitstayid number, diagnosisname text, diagnosistime time, icd9code text ) CREATE TABLE cost ( costid number, uniquepid text, patienthealthsystemstayid number, eventtype text, eventid number, chargetime time, cost number ) CREATE TABLE vitalperiodic ( vitalperiodicid number, patientunitstayid number, temperature number, sao2 number, heartrate number, respiration number, systemicsystolic number, systemicdiastolic number, systemicmean number, observationtime time )
SELECT microlab.culturetakentime FROM microlab WHERE microlab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '031-22988' AND NOT patient.hospitaldischargetime IS NULL ORDER BY patient.hospitaladmittime LIMIT 1)) ORDER BY microlab.culturetakentime LIMIT 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 11963, 670, 2562, 41, 11963, 670, 2562, 23, 26, 381, 6, 1868, 15129, 21545, 23, 26, 381, 6, 2358, 8292, 1499, 6, 2358, 40, 10333, 1499, 6, 2358, 7480, 35, 76, 17552, 381, 6, 11963, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2179, 9339, 5, 10547, 4914, 29, 715, 21680, 2179, 9339, 549, 17444, 427, 2179, 9339, 5, 10061, 15129, 21545, 23, 26, 3388, 41, 23143, 14196, 1868, 5, 10061, 15129, 21545, 23, 26, 21680, 1868, 549, 17444, 427, 1868, 5,...
What was the position of the Slavia team in 1998?
CREATE TABLE table_name_10 ( position_in_1998 VARCHAR, team VARCHAR )
SELECT position_in_1998 FROM table_name_10 WHERE team = "slavia"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1714, 41, 1102, 834, 77, 834, 2294, 3916, 584, 4280, 28027, 6, 372, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 1102, 13, 8, 180, 521, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1102, 834, 77, 834, 2294, 3916, 21680, 953, 834, 4350, 834, 1714, 549, 17444, 427, 372, 3274, 96, 17457, 23, 9, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which Second has a Lead of ben hebert?
CREATE TABLE table_name_6 (second VARCHAR, lead VARCHAR)
SELECT second FROM table_name_6 WHERE lead = "ben hebert"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 948, 41, 12091, 584, 4280, 28027, 6, 991, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 5212, 65, 3, 9, 12208, 13, 36, 29, 3, 88, 7041, 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, 511, 21680, 953, 834, 4350, 834, 948, 549, 17444, 427, 991, 3274, 96, 115, 35, 3, 88, 7041, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Who were the candidates when gregory w. meeks was the incumbent
CREATE TABLE table_673 ( "District" text, "Incumbent" text, "Party" text, "First elected" real, "Result" text, "Candidates" text )
SELECT "Candidates" FROM table_673 WHERE "Incumbent" = 'Gregory W. Meeks'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3708, 519, 41, 96, 308, 23, 20066, 121, 1499, 6, 96, 1570, 75, 5937, 295, 121, 1499, 6, 96, 13725, 63, 121, 1499, 6, 96, 25171, 8160, 121, 490, 6, 96, 20119, 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, 14050, 12416, 6203, 121, 21680, 953, 834, 3708, 519, 549, 17444, 427, 96, 1570, 75, 5937, 295, 121, 3274, 3, 31, 26705, 63, 549, 5, 1212, 16789, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What are the most goals listed when Jack Trehey was the player, with the listed debut year of 1902, games less than 1?
CREATE TABLE table_name_29 (goals INTEGER, games VARCHAR, debut_year VARCHAR, player VARCHAR)
SELECT MAX(goals) FROM table_name_29 WHERE debut_year = 1902 AND player = "jack trehey" AND games < 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3166, 41, 839, 5405, 3, 21342, 17966, 6, 1031, 584, 4280, 28027, 6, 5695, 834, 1201, 584, 4280, 28027, 6, 1959, 584, 4280, 28027, 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, 4800, 4, 599, 839, 5405, 61, 21680, 953, 834, 4350, 834, 3166, 549, 17444, 427, 5695, 834, 1201, 3274, 957, 4305, 3430, 1959, 3274, 96, 9325, 3, 929, 13133, 121, 3430, 1031, 3, 2, 209, 1, -100, -100, -100, -100, -...