NATURAL_LANG
stringlengths
0
446
SCHEMA
stringlengths
27
2.21k
SQL
stringlengths
18
453
input_ids
list
attention_mask
list
labels
list
Who was the constructor of the car that went 56 laps and had a grid of 15?
CREATE TABLE table_name_31 (constructor VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT constructor FROM table_name_31 WHERE laps = "56" AND grid = "15"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3341, 41, 15982, 5317, 584, 4280, 28027, 6, 14941, 7, 584, 4280, 28027, 6, 8634, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 2645, 47, 8, 6774, 127, 13, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 6774, 127, 21680, 953, 834, 4350, 834, 3341, 549, 17444, 427, 14941, 7, 3274, 96, 4834, 121, 3430, 8634, 3274, 96, 1808, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
what is the number of patients whose admission year is less than 2144 and lab test name is lipase?
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 lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text ) CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob text, gender text, language text, religion text, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text ) CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text )
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.admityear < "2144" AND lab.label = "Lipase"
[ 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, 7690, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 7690, 5, 8399, 51, 834, 23, 26, 549, 17444,...
Name the wickets for overs bowled being 15
CREATE TABLE table_15700367_2 (wickets VARCHAR, overs_bowled VARCHAR)
SELECT wickets FROM table_15700367_2 WHERE overs_bowled = "15"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1808, 9295, 519, 3708, 834, 357, 41, 5981, 15, 17, 7, 584, 4280, 28027, 6, 147, 7, 834, 17710, 1361, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 5570, 8, 29719, 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, 29719, 7, 21680, 953, 834, 1808, 9295, 519, 3708, 834, 357, 549, 17444, 427, 147, 7, 834, 17710, 1361, 3274, 96, 1808, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
is episode 6 nightly rank above or below 11 ?
CREATE TABLE table_204_449 ( id number, "no" number, "episode" text, "title" text, "original airdate" text, "viewers" number, "nightly\nrank" number )
SELECT (SELECT "nightly\nrank" FROM table_204_449 WHERE "no" = 6) > (SELECT "nightly\nrank" FROM table_204_449 WHERE "no" = 11)
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26363, 834, 591, 3647, 41, 3, 23, 26, 381, 6, 96, 29, 32, 121, 381, 6, 96, 15, 102, 159, 32, 221, 121, 1499, 6, 96, 21869, 121, 1499, 6, 96, 21878, 799, 5522, 121, 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, 41, 23143, 14196, 96, 7602, 120, 2, 29, 6254, 121, 21680, 953, 834, 26363, 834, 591, 3647, 549, 17444, 427, 96, 29, 32, 121, 3274, 3, 10938, 2490, 41, 23143, 14196, 96, 7602, 120, 2, 29, 6254, 121, 21680, 953, 834...
What is the Year for Supplier Kooga?
CREATE TABLE table_name_97 ( year VARCHAR, supplier VARCHAR )
SELECT year FROM table_name_97 WHERE supplier = "kooga"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4327, 41, 215, 584, 4280, 28027, 6, 8106, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 2929, 21, 16406, 1793, 19914, 58, 1, 0, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 215, 21680, 953, 834, 4350, 834, 4327, 549, 17444, 427, 8106, 3274, 96, 157, 32, 19914, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What is Bruce Cerone overall?
CREATE TABLE table_16077 ( "Round" real, "Choice" real, "Overall" real, "Player name" text, "Position" text, "College" text )
SELECT MIN("Overall") FROM table_16077 WHERE "Player name" = 'Bruce Cerone'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 19129, 4013, 41, 96, 448, 32, 1106, 121, 490, 6, 96, 3541, 32, 867, 121, 490, 6, 96, 23847, 1748, 121, 490, 6, 96, 15800, 49, 564, 121, 1499, 6, 96, 345, 32, 7, 4749, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 23847, 1748, 8512, 21680, 953, 834, 19129, 4013, 549, 17444, 427, 96, 15800, 49, 564, 121, 3274, 3, 31, 9465, 565, 7112, 782, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
give me the number of patients whose age is less than 61 and diagnoses long title is pseudomonas infection in conditions classified elsewhere and of unspecified site?
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 lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text ) CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text ) 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 WHERE demographic.age < "61" AND diagnoses.long_title = "Pseudomonas infection in conditions classified elsewhere and of unspecified site"
[ 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, 18730, 7, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 18730, 7, 5, 8399, 51, 834, 23, 26, 5...
What was the most races he had in a season?
CREATE TABLE table_23128286_1 (races INTEGER)
SELECT MAX(races) FROM table_23128286_1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2773, 2122, 4613, 3840, 834, 536, 41, 12614, 7, 3, 21342, 17966, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 167, 10879, 3, 88, 141, 16, 3, 9, 774, 58, 1, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 4800, 4, 599, 12614, 7, 61, 21680, 953, 834, 2773, 2122, 4613, 3840, 834, 536, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What was the rank of flori lang when his time was less than 22.27
CREATE TABLE table_name_52 ( rank INTEGER, name VARCHAR, time VARCHAR )
SELECT SUM(rank) FROM table_name_52 WHERE name = "flori lang" AND time < 22.27
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 5373, 41, 11003, 3, 21342, 17966, 6, 564, 584, 4280, 28027, 6, 97, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 11003, 13, 12215, 12142, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 180, 6122, 599, 6254, 61, 21680, 953, 834, 4350, 834, 5373, 549, 17444, 427, 564, 3274, 96, 89, 322, 23, 12142, 121, 3430, 97, 3, 2, 1630, 5, 2555, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What is Agg., when Team 1 is CD El Nguema?
CREATE TABLE table_47671 ( "Team 1" text, "Agg." text, "Team 2" text, "1st leg" text, "2nd leg" text )
SELECT "Agg." FROM table_47671 WHERE "Team 1" = 'cd elá nguema'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4177, 3708, 536, 41, 96, 18699, 209, 121, 1499, 6, 96, 188, 4102, 535, 1499, 6, 96, 18699, 204, 121, 1499, 6, 96, 536, 7, 17, 4553, 121, 1499, 6, 96, 357, 727, 4553, 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, 188, 4102, 535, 21680, 953, 834, 4177, 3708, 536, 549, 17444, 427, 96, 18699, 209, 121, 3274, 3, 31, 75, 26, 3, 15, 40, 2975, 3, 29, 5398, 51, 9, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
The numbers 801-812 are in which country?
CREATE TABLE table_73563 ( "Order number" text, "Build date" text, "Serial numbers" text, "Country" text, "Railroad" text, "Numbers" text, "Quantity" real )
SELECT "Country" FROM table_73563 WHERE "Numbers" = '801-812'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 940, 2469, 3891, 41, 96, 7395, 588, 381, 121, 1499, 6, 96, 24752, 833, 121, 1499, 6, 96, 134, 15, 12042, 2302, 121, 1499, 6, 96, 10628, 651, 121, 1499, 6, 96, 448, 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, 1...
[ 3, 23143, 14196, 96, 10628, 651, 121, 21680, 953, 834, 940, 2469, 3891, 549, 17444, 427, 96, 567, 5937, 277, 121, 3274, 3, 31, 2079, 536, 6039, 2122, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
When Australian open is the championship what is the lowest year?
CREATE TABLE table_24901152_2 (year INTEGER, championship VARCHAR)
SELECT MIN(year) FROM table_24901152_2 WHERE championship = "Australian Open"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2266, 2394, 15660, 357, 834, 357, 41, 1201, 3, 21342, 17966, 6, 10183, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 366, 3746, 539, 19, 8, 10183, 125, 19, 8, 7402, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 17684, 599, 1201, 61, 21680, 953, 834, 2266, 2394, 15660, 357, 834, 357, 549, 17444, 427, 10183, 3274, 96, 31971, 29, 2384, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What is the Metric value of Russian ?
CREATE TABLE table_name_19 ( metric_value VARCHAR, russian VARCHAR )
SELECT metric_value FROM table_name_19 WHERE russian = "че́тверть"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2294, 41, 3, 7959, 834, 12097, 584, 4280, 28027, 6, 3, 26165, 29, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 1212, 3929, 701, 13, 4263, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 3, 7959, 834, 12097, 21680, 953, 834, 4350, 834, 2294, 549, 17444, 427, 3, 26165, 29, 3274, 96, 2, 1757, 2, 6725, 6609, 17657, 6725, 2, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
count the number of patients whose days of hospital stay is greater than 2 and procedure icd9 code is 9744?
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 procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob text, gender text, language text, religion text, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text ) CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text )
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.days_stay > "2" AND procedures.icd9_code = "9744"
[ 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, 4293, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 4293, 5, 8399, 51, 834, 23, 26, 549, 17444,...
What date was the Competition of rothmans cup?
CREATE TABLE table_name_67 (date VARCHAR, competition VARCHAR)
SELECT date FROM table_name_67 WHERE competition = "rothmans cup"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3708, 41, 5522, 584, 4280, 28027, 6, 2259, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 833, 47, 8, 15571, 13, 3, 2719, 107, 348, 7, 4119, 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, 833, 21680, 953, 834, 4350, 834, 3708, 549, 17444, 427, 2259, 3274, 96, 2719, 107, 348, 7, 4119, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What is the judge's total for Roxanne and Daniel?
CREATE TABLE table_19744915_16 ( judges VARCHAR, couple VARCHAR )
SELECT judges FROM table_19744915_16 WHERE couple = "Roxanne and Daniel"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2294, 4581, 3647, 1808, 834, 2938, 41, 14743, 584, 4280, 28027, 6, 1158, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 5191, 31, 7, 792, 21, 26490, 45...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 14743, 21680, 953, 834, 2294, 4581, 3647, 1808, 834, 2938, 549, 17444, 427, 1158, 3274, 96, 448, 32, 226, 4515, 11, 4173, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the lowest match for goals larger than 36?
CREATE TABLE table_name_42 (matches INTEGER, goals INTEGER)
SELECT MIN(matches) FROM table_name_42 WHERE goals > 36
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4165, 41, 19515, 15, 7, 3, 21342, 17966, 6, 1766, 3, 21342, 17966, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 7402, 1588, 21, 1766, 2186, 145, 4475, 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, 3, 17684, 599, 19515, 15, 7, 61, 21680, 953, 834, 4350, 834, 4165, 549, 17444, 427, 1766, 2490, 4475, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What is the smallest point total when the grid is larger than 5 and the time/retired is fire?
CREATE TABLE table_name_52 ( points INTEGER, grid VARCHAR, time_retired VARCHAR )
SELECT MIN(points) FROM table_name_52 WHERE grid > 5 AND time_retired = "fire"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 5373, 41, 979, 3, 21342, 17966, 6, 8634, 584, 4280, 28027, 6, 97, 834, 10682, 1271, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 3, 17924,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 3, 17684, 599, 2700, 7, 61, 21680, 953, 834, 4350, 834, 5373, 549, 17444, 427, 8634, 2490, 305, 3430, 97, 834, 10682, 1271, 3274, 96, 6608, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What's the bronze medal count for Rank 33 when the silver count was less than 2 and the total was more than 4?
CREATE TABLE table_64195 ( "Rank" text, "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real )
SELECT MAX("Bronze") FROM table_64195 WHERE "Silver" < '2' AND "Total" > '4' AND "Rank" = '33'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4389, 22464, 41, 96, 22557, 121, 1499, 6, 96, 567, 257, 121, 1499, 6, 96, 23576, 121, 490, 6, 96, 134, 173, 624, 121, 490, 6, 96, 22780, 29, 776, 121, 490, 6, 96, 3696,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 22780, 29, 776, 8512, 21680, 953, 834, 4389, 22464, 549, 17444, 427, 96, 134, 173, 624, 121, 3, 2, 3, 31, 357, 31, 3430, 96, 3696, 1947, 121, 2490, 3, 31, 591, 31, 3430, 96, 22557, 121, 3274, ...
How many of the writers had 5.35 viewers?
CREATE TABLE table_24743 ( "No. in series" real, "No. in season" real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text, "Production code" text, "U.S. viewers (millions)" text )
SELECT COUNT("Written by") FROM table_24743 WHERE "U.S. viewers (millions)" = '5.35'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2266, 4581, 519, 41, 96, 4168, 5, 16, 939, 121, 490, 6, 96, 4168, 5, 16, 774, 121, 490, 6, 96, 382, 155, 109, 121, 1499, 6, 96, 23620, 15, 26, 57, 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, 2847, 17161, 599, 121, 24965, 324, 57, 8512, 21680, 953, 834, 2266, 4581, 519, 549, 17444, 427, 96, 1265, 5, 134, 5, 13569, 41, 17030, 7, 61, 121, 3274, 3, 31, 9125, 2469, 31, 1, -100, -100, -100, -100, -100, -100...
Name the commander of 167 off 2348 men
CREATE TABLE table_17198 ( "Unit" text, "Commander" text, "Complement" text, "Killed" text, "Wounded" text, "Missing" text )
SELECT "Commander" FROM table_17198 WHERE "Complement" = '167 off 2348 men'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2517, 24151, 41, 96, 5110, 155, 121, 1499, 6, 96, 10205, 11849, 121, 1499, 6, 96, 5890, 102, 3335, 121, 1499, 6, 96, 439, 173, 1361, 121, 1499, 6, 96, 518, 14471, 121, 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, 96, 10205, 11849, 121, 21680, 953, 834, 2517, 24151, 549, 17444, 427, 96, 5890, 102, 3335, 121, 3274, 3, 31, 27650, 326, 1902, 3707, 1076, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What game ended with a final score of 126-108?
CREATE TABLE table_name_16 (game INTEGER, score VARCHAR)
SELECT MAX(game) FROM table_name_16 WHERE score = "126-108"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2938, 41, 7261, 3, 21342, 17966, 6, 2604, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 467, 3492, 28, 3, 9, 804, 2604, 13, 3, 21976, 18, 16169, 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, 4800, 4, 599, 7261, 61, 21680, 953, 834, 4350, 834, 2938, 549, 17444, 427, 2604, 3274, 96, 21976, 18, 16169, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Which Score has a Couple comprised of jason & edyta, and a Style of freestyle?
CREATE TABLE table_name_2 ( score VARCHAR, couple VARCHAR, style VARCHAR )
SELECT score FROM table_name_2 WHERE couple = "jason & edyta" AND style = "freestyle"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 357, 41, 2604, 584, 4280, 28027, 6, 1158, 584, 4280, 28027, 6, 869, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 4073, 17763, 65, 3, 9, 25185, 9418, 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, 2604, 21680, 953, 834, 4350, 834, 357, 549, 17444, 427, 1158, 3274, 96, 1191, 739, 3, 184, 3, 15, 26, 63, 17, 9, 121, 3430, 869, 3274, 96, 2113, 4084, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the sum of all the crowds that watched North Melbourne at home?
CREATE TABLE table_name_74 ( crowd INTEGER, home_team VARCHAR )
SELECT SUM(crowd) FROM table_name_74 WHERE home_team = "north melbourne"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4581, 41, 4374, 3, 21342, 17966, 6, 234, 834, 11650, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 4505, 13, 66, 8, 4374, 7, 24, 7533, 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, 180, 6122, 599, 75, 3623, 26, 61, 21680, 953, 834, 4350, 834, 4581, 549, 17444, 427, 234, 834, 11650, 3274, 96, 29, 127, 189, 3, 2341, 26255, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What was the stake president when the organized date is April 18, 1965?
CREATE TABLE table_39787 ( "Stake" text, "Organized" text, "Number of Wards/ Branches in Arkansas" real, "Stake President" text, "Occupation" text )
SELECT "Stake President" FROM table_39787 WHERE "Organized" = 'april 18, 1965'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 519, 4327, 4225, 41, 96, 134, 4914, 121, 1499, 6, 96, 14878, 15, 26, 121, 1499, 6, 96, 567, 5937, 49, 13, 15811, 7, 87, 3, 25709, 7, 16, 16622, 121, 490, 6, 96, 134, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 134, 4914, 1661, 121, 21680, 953, 834, 519, 4327, 4225, 549, 17444, 427, 96, 14878, 15, 26, 121, 3274, 3, 31, 9, 2246, 40, 14985, 19201, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
In what round was a left wing drafted?
CREATE TABLE table_61460 ( "Round" real, "Player" text, "Position" text, "Nationality" text, "College/junior/club team (league)" text )
SELECT "Round" FROM table_61460 WHERE "Position" = 'left wing'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4241, 25991, 41, 96, 448, 32, 1106, 121, 490, 6, 96, 15800, 49, 121, 1499, 6, 96, 345, 32, 7, 4749, 121, 1499, 6, 96, 24732, 485, 121, 1499, 6, 96, 9939, 7883, 87, 6959...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 448, 32, 1106, 121, 21680, 953, 834, 4241, 25991, 549, 17444, 427, 96, 345, 32, 7, 4749, 121, 3274, 3, 31, 17068, 3, 3108, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
How many products have the title 'Jak 3'?
CREATE TABLE table_10875694_11 ( product_no VARCHAR, title VARCHAR )
SELECT COUNT(product_no) FROM table_10875694_11 WHERE title = "Jak 3"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 16169, 3072, 3951, 591, 834, 2596, 41, 556, 834, 29, 32, 584, 4280, 28027, 6, 2233, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 494, 43, 8, 2233, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 15892, 834, 29, 32, 61, 21680, 953, 834, 16169, 3072, 3951, 591, 834, 2596, 549, 17444, 427, 2233, 3274, 96, 683, 1639, 220, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Result F A of 2 0 had what total number of attendance?
CREATE TABLE table_name_42 ( attendance VARCHAR, result_f_a VARCHAR )
SELECT COUNT(attendance) FROM table_name_42 WHERE result_f_a = "2–0"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4165, 41, 11364, 584, 4280, 28027, 6, 741, 834, 89, 834, 9, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 3, 20119, 377, 71, 13, 204, 3, 632, 141, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 15116, 663, 61, 21680, 953, 834, 4350, 834, 4165, 549, 17444, 427, 741, 834, 89, 834, 9, 3274, 96, 357, 104, 632, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the Branding of the Frequency owned by Sound of Faith Broadcasting Group?
CREATE TABLE table_name_23 (branding VARCHAR, owner VARCHAR)
SELECT branding FROM table_name_23 WHERE owner = "sound of faith broadcasting group"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2773, 41, 12164, 53, 584, 4280, 28027, 6, 2527, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 4688, 53, 13, 8, 5532, 835, 11298, 4157, 57, 704...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 14282, 21680, 953, 834, 4350, 834, 2773, 549, 17444, 427, 2527, 3274, 96, 17481, 13, 3251, 6878, 53, 563, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Compute the total number of chips of different company names for all the phones that were launched in year 2002 or have RAM size greater than 32, list y-axis in desc order.
CREATE TABLE phone ( Company_name text, Hardware_Model_name text, Accreditation_type text, Accreditation_level text, Date text, chip_model text, screen_mode text ) CREATE TABLE screen_mode ( Graphics_mode real, Char_cells text, Pixels text, Hardware_colours real, used_kb real, map text, Type text ) CREATE TABLE chip_model ( Model_name text, Launch_year real, RAM_MiB real, ROM_MiB real, Slots text, WiFi text, Bluetooth text )
SELECT Company_name, COUNT(Company_name) FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model WHERE T1.Launch_year = 2002 OR T1.RAM_MiB > 32 GROUP BY Company_name ORDER BY COUNT(Company_name) DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 951, 41, 1958, 834, 4350, 1499, 6, 19982, 834, 24663, 834, 4350, 1499, 6, 4292, 15547, 257, 834, 6137, 1499, 6, 4292, 15547, 257, 834, 4563, 1499, 6, 7678, 1499, 6, 6591, 834, 21770, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1958, 834, 4350, 6, 2847, 17161, 599, 5890, 2837, 63, 834, 4350, 61, 21680, 6591, 834, 21770, 6157, 332, 536, 3, 15355, 3162, 951, 6157, 332, 357, 9191, 332, 5411, 24663, 834, 4350, 3274, 332, 4416, 17362, 834, 21770,...
Which album was on June 1998?
CREATE TABLE table_11244 ( "Year" text, "Title" text, "US 100" text, "US AC" text, "Lead singer" text, "Album" text, "Label and cat#" text )
SELECT "Album" FROM table_11244 WHERE "Year" = 'june 1998'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2596, 357, 3628, 41, 96, 476, 2741, 121, 1499, 6, 96, 382, 155, 109, 121, 1499, 6, 96, 3063, 910, 121, 1499, 6, 96, 3063, 5686, 121, 1499, 6, 96, 2796, 9, 26, 7634, 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, 25691, 440, 121, 21680, 953, 834, 2596, 357, 3628, 549, 17444, 427, 96, 476, 2741, 121, 3274, 3, 31, 6959, 15, 6260, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
what was the name of the first race ?
CREATE TABLE table_204_508 ( id number, "no." number, "race title" text, "track" text, "date" text, "tv" text )
SELECT "race title" FROM table_204_508 ORDER BY "date" LIMIT 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26363, 834, 1752, 927, 41, 3, 23, 26, 381, 6, 96, 29, 32, 535, 381, 6, 96, 12614, 2233, 121, 1499, 6, 96, 11991, 121, 1499, 6, 96, 5522, 121, 1499, 6, 96, 17, 208, 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, 12614, 2233, 121, 21680, 953, 834, 26363, 834, 1752, 927, 4674, 11300, 272, 476, 96, 5522, 121, 8729, 12604, 209, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the station type for the branding ABS-CBN TV-32 Tagaytay?
CREATE TABLE table_2610582_2 (station_type VARCHAR, branding VARCHAR)
SELECT station_type FROM table_2610582_2 WHERE branding = "ABS-CBN TV-32 Tagaytay"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2688, 12869, 4613, 834, 357, 41, 6682, 834, 6137, 584, 4280, 28027, 6, 14282, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 2478, 686, 21, 8, 14282, 20798,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2478, 834, 6137, 21680, 953, 834, 2688, 12869, 4613, 834, 357, 549, 17444, 427, 14282, 3274, 96, 5359, 134, 18, 254, 19174, 1424, 18, 2668, 3284, 9, 63, 17, 9, 63, 121, 1, -100, -100, -100, -100, -100, -100, -100, ...
What is the batting team with the batting partnets of thilina kandamby and rangana herath?
CREATE TABLE table_16611 ( "Wicket" text, "Runs" text, "Batting partners" text, "Batting team" text, "Fielding team" text, "Venue" text, "Season" text )
SELECT "Batting team" FROM table_16611 WHERE "Batting partners" = 'Thilina Kandamby and Rangana Herath'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26811, 2596, 41, 96, 518, 447, 8044, 121, 1499, 6, 96, 448, 202, 7, 121, 1499, 6, 96, 279, 9, 6031, 3222, 121, 1499, 6, 96, 279, 9, 6031, 372, 121, 1499, 6, 96, 3183, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 279, 9, 6031, 372, 121, 21680, 953, 834, 26811, 2596, 549, 17444, 427, 96, 279, 9, 6031, 3222, 121, 3274, 3, 31, 8991, 23, 8280, 4540, 7812, 969, 11, 12612, 152, 9, 1347, 9, 189, 31, 1, -100, -100, -100, -10...
What Home team played Richmond?
CREATE TABLE table_4791 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Home team" FROM table_4791 WHERE "Away team" = 'richmond'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4177, 4729, 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, 19040, 372, 121, 21680, 953, 834, 4177, 4729, 549, 17444, 427, 96, 188, 1343, 372, 121, 3274, 3, 31, 3723, 6764, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Name the dar for cinese
CREATE TABLE table_1367 ( "N\u00b0" real, "Television service" text, "Country" text, "Language" text, "Content" text, "DAR" text, "HDTV" text, "Package/Option" text )
SELECT "DAR" FROM table_1367 WHERE "Language" = 'cinese'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2368, 3708, 41, 96, 567, 2, 76, 1206, 115, 632, 121, 490, 6, 96, 382, 400, 6610, 313, 121, 1499, 6, 96, 10628, 651, 121, 1499, 6, 96, 434, 1468, 76, 545, 121, 1499, 6, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 308, 4280, 121, 21680, 953, 834, 2368, 3708, 549, 17444, 427, 96, 434, 1468, 76, 545, 121, 3274, 3, 31, 14760, 7, 15, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Can you tell me the highest Season that has the Home Team of chonburi, and the Away Team of melbourne victory?
CREATE TABLE table_name_8 ( season INTEGER, home_team VARCHAR, away_team VARCHAR )
SELECT MAX(season) FROM table_name_8 WHERE home_team = "chonburi" AND away_team = "melbourne victory"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 927, 41, 774, 3, 21342, 17966, 6, 234, 834, 11650, 584, 4280, 28027, 6, 550, 834, 11650, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 1072, 25, 817, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 9476, 61, 21680, 953, 834, 4350, 834, 927, 549, 17444, 427, 234, 834, 11650, 3274, 96, 17128, 115, 459, 121, 3430, 550, 834, 11650, 3274, 96, 2341, 26255, 6224, 121, 1, -100, -100, -100, -100, -100, -1...
In the 21.40km Santa Rosa 1 Stage, what was the Time?
CREATE TABLE table_name_38 ( time VARCHAR, length VARCHAR, name VARCHAR )
SELECT time FROM table_name_38 WHERE length = "21.40km" AND name = "santa rosa 1"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3747, 41, 97, 584, 4280, 28027, 6, 2475, 584, 4280, 28027, 6, 564, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 86, 8, 1401, 5, 2445, 5848, 4625, 1564...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 97, 21680, 953, 834, 4350, 834, 3747, 549, 17444, 427, 2475, 3274, 96, 2658, 5, 2445, 5848, 121, 3430, 564, 3274, 96, 7, 288, 9, 3, 1859, 9, 209, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
give the number of patients whose marital status is widowed and procedure short title is nasal sinus dx proc nec.
CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text ) CREATE TABLE lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text ) CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob text, gender text, language text, religion text, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text )
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.marital_status = "WIDOWED" AND procedures.short_title = "Nasal sinus dx proc NEC"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 4293, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 3, 447, 26, 1298, 834, 4978, 1499, 6, 710, 834, 21869, 1499, 6, 307, 834, 21869, 1499, 3, 61, 3, 32102, 32103...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 4293, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 4293, 5, 8399, 51, 834, 23, 26, 549, 17444,...
What nation with Rank 1 won the fewest gold medals while winning more than 11 silver but fewer than 7 bronze medals?
CREATE TABLE table_69260 ( "Rank" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real )
SELECT MIN("Gold") FROM table_69260 WHERE "Silver" > '11' AND "Rank" = '1' AND "Bronze" < '7'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3951, 18365, 41, 96, 22557, 121, 1499, 6, 96, 23576, 121, 490, 6, 96, 134, 173, 624, 121, 490, 6, 96, 22780, 29, 776, 121, 490, 6, 96, 3696, 1947, 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, 3, 17684, 599, 121, 23576, 8512, 21680, 953, 834, 3951, 18365, 549, 17444, 427, 96, 134, 173, 624, 121, 2490, 3, 31, 2596, 31, 3430, 96, 22557, 121, 3274, 3, 31, 536, 31, 3430, 96, 22780, 29, 776, 121, 3, 2, 3, ...
what is the start source when started on 2 february?
CREATE TABLE table_name_47 (start_source VARCHAR, started VARCHAR)
SELECT start_source FROM table_name_47 WHERE started = "2 february"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4177, 41, 10208, 834, 7928, 584, 4280, 28027, 6, 708, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 125, 19, 8, 456, 1391, 116, 708, 30, 204, 29976, 76, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 456, 834, 7928, 21680, 953, 834, 4350, 834, 4177, 549, 17444, 427, 708, 3274, 96, 357, 29976, 76, 1208, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the role name and role description for employee called Ebba?
CREATE TABLE employees ( employee_id number, role_code text, employee_name text, gender_mfu text, date_of_birth time, other_details text ) CREATE TABLE ref_locations ( location_code text, location_name text, location_description text ) CREATE TABLE documents_to_be_destroyed ( document_id number, destruction_authorised_by_employee_id number, destroyed_by_employee_id number, planned_destruction_date time, actual_destruction_date time, other_details text ) CREATE TABLE all_documents ( document_id number, date_stored time, document_type_code text, document_name text, document_description text, other_details text ) CREATE TABLE ref_document_types ( document_type_code text, document_type_name text, document_type_description text ) CREATE TABLE roles ( role_code text, role_name text, role_description text ) CREATE TABLE ref_calendar ( calendar_date time, day_number number ) CREATE TABLE document_locations ( document_id number, location_code text, date_in_location_from time, date_in_locaton_to time )
SELECT T2.role_name, T2.role_description FROM employees AS T1 JOIN roles AS T2 ON T1.role_code = T2.role_code WHERE T1.employee_name = "Ebba"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1652, 41, 3490, 834, 23, 26, 381, 6, 1075, 834, 4978, 1499, 6, 3490, 834, 4350, 1499, 6, 7285, 834, 51, 89, 76, 1499, 6, 833, 834, 858, 834, 20663, 97, 6, 119, 834, 221, 5756, 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, 332, 4416, 3491, 15, 834, 4350, 6, 332, 4416, 3491, 15, 834, 221, 11830, 21680, 1652, 6157, 332, 536, 3, 15355, 3162, 6270, 6157, 332, 357, 9191, 332, 5411, 3491, 15, 834, 4978, 3274, 332, 4416, 3491, 15, 834, 4978,...
count the number of patients whose death status is 0 and year of birth is less than 2114?
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 lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text ) CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob text, gender text, language text, religion text, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text ) CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text )
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.expire_flag = "0" AND demographic.dob_year < "2114"
[ 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, 549, 17444, 427, 14798, 5, 994, 2388, 15, 834, 89, 5430, 3274, 96, 632, 121, 3430, 14798, 5, 26, 32, 115, 834, 1201, 3, 2...
Visualize a bar chart that bin the open date into a day of the week interval and count them, and list in ascending by the total number please.
CREATE TABLE wedding ( Church_ID int, Male_ID int, Female_ID int, Year int ) CREATE TABLE people ( People_ID int, Name text, Country text, Is_Male text, Age int ) CREATE TABLE church ( Church_ID int, Name text, Organized_by text, Open_Date int, Continuation_of text )
SELECT Open_Date, COUNT(Open_Date) FROM church ORDER BY COUNT(Open_Date)
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1683, 41, 2345, 834, 4309, 16, 17, 6, 17830, 834, 4309, 16, 17, 6, 27144, 834, 4309, 16, 17, 6, 2929, 16, 17, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 151, 41, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2384, 834, 308, 342, 6, 2847, 17161, 599, 22696, 834, 308, 342, 61, 21680, 2078, 4674, 11300, 272, 476, 2847, 17161, 599, 22696, 834, 308, 342, 61, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What country did Day & Age rank number 1 in Q prior to 2011?
CREATE TABLE table_name_52 (country VARCHAR, publication VARCHAR, year VARCHAR, rank VARCHAR)
SELECT country FROM table_name_52 WHERE year < 2011 AND rank > 1 AND publication = "q"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 5373, 41, 17529, 584, 4280, 28027, 6, 5707, 584, 4280, 28027, 6, 215, 584, 4280, 28027, 6, 11003, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 684, 41...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 684, 21680, 953, 834, 4350, 834, 5373, 549, 17444, 427, 215, 3, 2, 2722, 3430, 11003, 2490, 209, 3430, 5707, 3274, 96, 1824, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What was the attendance for the final quarter (1)?
CREATE TABLE table_name_97 (attendance VARCHAR, final VARCHAR)
SELECT attendance FROM table_name_97 WHERE final = "quarter (1)"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4327, 41, 15116, 663, 584, 4280, 28027, 6, 804, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 11364, 21, 8, 804, 2893, 5637, 58, 1, 0, 0, 0,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 11364, 21680, 953, 834, 4350, 834, 4327, 549, 17444, 427, 804, 3274, 96, 19973, 5637, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What are the notes for 2005?
CREATE TABLE table_name_36 ( notes VARCHAR, year VARCHAR )
SELECT notes FROM table_name_36 WHERE year = 2005
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3420, 41, 3358, 584, 4280, 28027, 6, 215, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 33, 8, 3358, 21, 3105, 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, 3358, 21680, 953, 834, 4350, 834, 3420, 549, 17444, 427, 215, 3274, 3105, 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...
List all the cities in a decreasing order of each city's stations' highest latitude.
CREATE TABLE station (city VARCHAR, lat INTEGER)
SELECT city FROM station GROUP BY city ORDER BY MAX(lat) DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 2478, 41, 6726, 584, 4280, 28027, 6, 50, 17, 3, 21342, 17966, 61, 3, 32102, 32103, 32101, 32103, 6792, 66, 8, 3119, 16, 3, 9, 23155, 455, 13, 284, 690, 31, 7, 6991, 31, 2030, 50, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 690, 21680, 2478, 350, 4630, 6880, 272, 476, 690, 4674, 11300, 272, 476, 4800, 4, 599, 40, 144, 61, 309, 25067, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What year did the player with a total less than 300 and a to par of 9 have a win?
CREATE TABLE table_62503 ( "Player" text, "Country" text, "Year(s) won" text, "Total" real, "To par" real, "Finish" text )
SELECT "Year(s) won" FROM table_62503 WHERE "Total" < '300' AND "To par" = '9'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4056, 1752, 519, 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...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 476, 2741, 599, 7, 61, 751, 121, 21680, 953, 834, 4056, 1752, 519, 549, 17444, 427, 96, 3696, 1947, 121, 3, 2, 3, 31, 5426, 31, 3430, 96, 3696, 260, 121, 3274, 3, 31, 1298, 31, 1, -100, -100, -100, -100, -...
What was the most recent year that Kathy Ahern was a runner-up?
CREATE TABLE table_name_12 ( year INTEGER, runner_s__up VARCHAR )
SELECT MAX(year) FROM table_name_12 WHERE runner_s__up = "kathy ahern"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2122, 41, 215, 3, 21342, 17966, 6, 3, 10806, 834, 7, 834, 834, 413, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 167, 1100, 215, 24, 258...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 4800, 4, 599, 1201, 61, 21680, 953, 834, 4350, 834, 2122, 549, 17444, 427, 3, 10806, 834, 7, 834, 834, 413, 3274, 96, 1258, 189, 63, 3, 9, 760, 29, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What is the largest round of a pick smaller than 92 from Toledo University?
CREATE TABLE table_name_34 (round INTEGER, college VARCHAR, pick VARCHAR)
SELECT MAX(round) FROM table_name_34 WHERE college = "toledo" AND pick < 92
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3710, 41, 7775, 3, 21342, 17966, 6, 1900, 584, 4280, 28027, 6, 1432, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 2015, 1751, 13, 3, 9, 1432,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 4800, 4, 599, 7775, 61, 21680, 953, 834, 4350, 834, 3710, 549, 17444, 427, 1900, 3274, 96, 235, 1361, 32, 121, 3430, 1432, 3, 2, 3, 4508, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What date was the ensemble in North East England closed?
CREATE TABLE table_4486 ( "Region" text, "Operator" text, "Licence award date" text, "On air date" text, "Closure date" text )
SELECT "Closure date" FROM table_4486 WHERE "Region" = 'north east england'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3628, 3840, 41, 96, 17748, 23, 106, 121, 1499, 6, 96, 667, 883, 1016, 121, 1499, 6, 96, 434, 447, 1433, 2760, 833, 121, 1499, 6, 96, 7638, 799, 833, 121, 1499, 6, 96, 2...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 254, 2298, 1462, 833, 121, 21680, 953, 834, 3628, 3840, 549, 17444, 427, 96, 17748, 23, 106, 121, 3274, 3, 31, 29, 127, 189, 5727, 3, 4606, 40, 232, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Name the number of virtual for NBC
CREATE TABLE table_14623167_1 (virtual VARCHAR, network VARCHAR)
SELECT COUNT(virtual) FROM table_14623167_1 WHERE network = "NBC"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 24300, 2773, 27650, 834, 536, 41, 5771, 17, 3471, 584, 4280, 28027, 6, 1229, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 5570, 8, 381, 13, 4291, 21, 3, 15829, 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, 5771, 17, 3471, 61, 21680, 953, 834, 24300, 2773, 27650, 834, 536, 549, 17444, 427, 1229, 3274, 96, 15829, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
How many tries for did the team with a try bonus of 5 score?
CREATE TABLE table_69524 ( "Club" text, "Played" text, "Drawn" text, "Lost" text, "Points for" text, "Points against" text, "Tries for" text, "Tries against" text, "Try bonus" text )
SELECT "Tries for" FROM table_69524 WHERE "Try bonus" = '5'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3951, 755, 2266, 41, 96, 254, 11158, 121, 1499, 6, 96, 15800, 15, 26, 121, 1499, 6, 96, 308, 10936, 29, 121, 1499, 6, 96, 434, 3481, 121, 1499, 6, 96, 22512, 7, 21, 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, 382, 2593, 21, 121, 21680, 953, 834, 3951, 755, 2266, 549, 17444, 427, 96, 382, 651, 4023, 121, 3274, 3, 31, 755, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
provide the number of patients whose age is less than 55 and drug route is td?
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 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 diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text )
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.age < "55" AND prescriptions.route = "TD"
[ 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...
what is the number of employees who work for pgnig sa ?
CREATE TABLE table_203_320 ( id number, "rank in\n2011" number, "name of\nconcern" text, "location of\nheadquarters" text, "revenue\n(thou.\npln)" number, "profit\n(thou.\npln)" number, "employees" number )
SELECT "employees" FROM table_203_320 WHERE "name of\nconcern" = 'pgnig sa'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 23330, 834, 15003, 41, 3, 23, 26, 381, 6, 96, 6254, 16, 2, 29, 13907, 121, 381, 6, 96, 4350, 13, 2, 29, 11620, 52, 29, 121, 1499, 6, 96, 14836, 13, 2, 29, 3313, 19973...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 15, 51, 7379, 63, 15, 15, 7, 121, 21680, 953, 834, 23330, 834, 15003, 549, 17444, 427, 96, 4350, 13, 2, 29, 11620, 52, 29, 121, 3274, 3, 31, 102, 122, 7315, 3, 7, 9, 31, 1, -100, -100, -100, -100, -100, ...
What was the average attendance of a team with a 38 31 8 record?
CREATE TABLE table_52325 ( "Date" text, "Visitor" text, "Score" text, "Home" text, "Decision" text, "Attendance" real, "Record" text )
SELECT AVG("Attendance") FROM table_52325 WHERE "Record" = '38–31–8'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 755, 2773, 1828, 41, 96, 308, 342, 121, 1499, 6, 96, 553, 159, 155, 127, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 19040, 121, 1499, 6, 96, 2962, 18901, 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, 71, 17217, 599, 121, 188, 17, 324, 26, 663, 8512, 21680, 953, 834, 755, 2773, 1828, 549, 17444, 427, 96, 1649, 7621, 121, 3274, 3, 31, 3747, 104, 3341, 104, 927, 31, 1, -100, -100, -100, -100, -100, -100, -100, -1...
For those employees whose salary is in the range of 8000 and 12000 and commission is not null or department number does not equal to 40, visualize the relationship between commission_pct and department_id .
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 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) ) 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 regions ( REGION_ID decimal(5,0), REGION_NAME varchar(25) ) CREATE TABLE job_history ( EMPLOYEE_ID decimal(6,0), START_DATE date, END_DATE date, JOB_ID varchar(10), DEPARTMENT_ID decimal(4,0) )
SELECT COMMISSION_PCT, DEPARTMENT_ID FROM employees WHERE SALARY BETWEEN 8000 AND 12000 AND COMMISSION_PCT <> "null" OR DEPARTMENT_ID <> 40
[ 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, 3, 6657, 329, 16994, 9215, 834, 4051, 382, 6, 3396, 19846, 11810, 834, 4309, 21680, 1652, 549, 17444, 427, 180, 4090, 24721, 272, 7969, 518, 23394, 3, 25129, 3430, 586, 2313, 3430, 3, 6657, 329, 16994, 9215, 834, 4051...
What is the Semi finalists when the Runner-up was katrina adams zina garrison-jackson?
CREATE TABLE table_40286 ( "Week of" text, "Tier" text, "Winner" text, "Runner-up" text, "Semi finalists" text )
SELECT "Semi finalists" FROM table_40286 WHERE "Runner-up" = 'katrina adams zina garrison-jackson'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2445, 357, 3840, 41, 96, 518, 10266, 13, 121, 1499, 6, 96, 382, 972, 121, 1499, 6, 96, 18455, 687, 121, 1499, 6, 96, 23572, 18, 413, 121, 1499, 6, 96, 134, 15, 51, 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, 134, 15, 51, 23, 3, 28077, 121, 21680, 953, 834, 2445, 357, 3840, 549, 17444, 427, 96, 23572, 18, 413, 121, 3274, 3, 31, 8682, 52, 77, 9, 3, 9, 7812, 7, 3, 7196, 9, 5260, 23790, 18, 9325, 739, 31, 1, -10...
What is the number of locations of the wrestlers? Visualize by a bar chart.
CREATE TABLE wrestler ( Wrestler_ID int, Name text, Reign text, Days_held text, Location text, Event text ) CREATE TABLE Elimination ( Elimination_ID text, Wrestler_ID text, Team text, Eliminated_By text, Elimination_Move text, Time text )
SELECT Location, COUNT(Location) FROM wrestler GROUP BY Location
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 26033, 52, 41, 549, 6216, 1171, 834, 4309, 16, 17, 6, 5570, 1499, 6, 419, 3191, 1499, 6, 13992, 834, 14796, 1499, 6, 10450, 1499, 6, 8042, 1499, 3, 61, 3, 32102, 32103, 32102, 205, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 10450, 6, 2847, 17161, 599, 434, 32, 75, 257, 61, 21680, 26033, 52, 350, 4630, 6880, 272, 476, 10450, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What is the date of appointment when the date of vacancy is 15 march 2011?
CREATE TABLE table_26998135_2 ( date_of_appointment VARCHAR, date_of_vacancy VARCHAR )
SELECT date_of_appointment FROM table_26998135_2 WHERE date_of_vacancy = "15 March 2011"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2688, 3264, 4959, 2469, 834, 357, 41, 833, 834, 858, 834, 9, 102, 2700, 297, 584, 4280, 28027, 6, 833, 834, 858, 834, 29685, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0...
[ 3, 23143, 14196, 833, 834, 858, 834, 9, 102, 2700, 297, 21680, 953, 834, 2688, 3264, 4959, 2469, 834, 357, 549, 17444, 427, 833, 834, 858, 834, 29685, 3274, 96, 1808, 1332, 2722, 121, 1, -100, -100, -100, -100, -100, -100, -100, -10...
What was the final score for the match held on April 11, 2007?
CREATE TABLE table_62510 ( "Date" text, "Venue" text, "Opponent" text, "Score" text, "Result" text )
SELECT "Score" FROM table_62510 WHERE "Date" = 'april 11, 2007'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4056, 25926, 41, 96, 308, 342, 121, 1499, 6, 96, 553, 35, 76, 15, 121, 1499, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 20119, 121, 1499, 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, 134, 9022, 121, 21680, 953, 834, 4056, 25926, 549, 17444, 427, 96, 308, 342, 121, 3274, 3, 31, 9, 2246, 40, 9694, 4101, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
baseline a1c within 6.5 % to 10 % ( may be determined by poc measurement
CREATE TABLE table_train_232 ( "id" int, "metastatic_cancer" bool, "hemoglobin_a1c_hba1c" float, "diabetic" string, "short_life_expectancy" bool, "body_mass_index_bmi" float, "a1c" float, "NOUSE" float )
SELECT * FROM table_train_232 WHERE a1c >= 6.5 AND a1c <= 10
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 9719, 834, 23188, 41, 96, 23, 26, 121, 16, 17, 6, 96, 3493, 9, 15165, 834, 1608, 2110, 121, 3, 12840, 40, 6, 96, 6015, 32, 14063, 77, 834, 9, 536, 75, 834, 107, 115, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 23188, 549, 17444, 427, 3, 9, 536, 75, 2490, 2423, 3, 17255, 3430, 3, 9, 536, 75, 3, 2, 2423, 335, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is the market value of every comapny in the banking industry ordered by sales and profits? Return a bar chart.
CREATE TABLE gas_station ( Station_ID int, Open_Year int, Location text, Manager_Name text, Vice_Manager_Name text, Representative_Name text ) CREATE TABLE company ( Company_ID int, Rank int, Company text, Headquarters text, Main_Industry text, Sales_billion real, Profits_billion real, Assets_billion real, Market_Value real ) CREATE TABLE station_company ( Station_ID int, Company_ID int, Rank_of_the_Year int )
SELECT Company, Market_Value FROM company WHERE Main_Industry = 'Banking' ORDER BY Sales_billion, Profits_billion
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1807, 834, 6682, 41, 5939, 834, 4309, 16, 17, 6, 2384, 834, 476, 2741, 16, 17, 6, 10450, 1499, 6, 3440, 834, 23954, 1499, 6, 8236, 834, 27272, 834, 23954, 1499, 6, 13517, 834, 23954,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1958, 6, 3611, 834, 18392, 76, 15, 21680, 349, 549, 17444, 427, 5140, 834, 1570, 8655, 8224, 3274, 3, 31, 21347, 53, 31, 4674, 11300, 272, 476, 7107, 834, 115, 14916, 6, 14717, 7, 834, 115, 14916, 1, -100, -100, -...
Which of the attributes has is cancelable and an answer of yes for bubbles?
CREATE TABLE table_35691 ( "Category" text, "Type" text, "Attribute" text, "Bubbles" text, "Cancelable" text )
SELECT "Attribute" FROM table_35691 WHERE "Cancelable" = 'yes' AND "Bubbles" = 'yes'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2469, 3951, 536, 41, 96, 18610, 6066, 651, 121, 1499, 6, 96, 25160, 121, 1499, 6, 96, 188, 17, 5135, 17, 15, 121, 1499, 6, 96, 7793, 7310, 7, 121, 1499, 6, 96, 254, 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, 188, 17, 5135, 17, 15, 121, 21680, 953, 834, 2469, 3951, 536, 549, 17444, 427, 96, 254, 663, 40, 179, 121, 3274, 3, 31, 10070, 31, 3430, 96, 7793, 7310, 7, 121, 3274, 3, 31, 10070, 31, 1, -100, -100, -100, ...
Who is the opponent of the submission (triangle choke) method of submission?
CREATE TABLE table_5368 ( "Res." text, "Record" text, "Opponent" text, "Method" text, "Round" real, "Time" text, "Location" text )
SELECT "Opponent" FROM table_5368 WHERE "Method" = 'submission (triangle choke)'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4867, 3651, 41, 96, 1649, 7, 535, 1499, 6, 96, 1649, 7621, 121, 1499, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 23351, 107, 32, 26, 121, 1499, 6, 96, 448, 32, 1106, 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, 667, 102, 9977, 121, 21680, 953, 834, 4867, 3651, 549, 17444, 427, 96, 23351, 107, 32, 26, 121, 3274, 3, 31, 7304, 5451, 41, 1788, 13247, 29787, 61, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
which symbol is listed at the top of the jamo column ?
CREATE TABLE table_203_119 ( id number, "jamo" text, "hangul compatibility" text, "hangul jamo area" text, "hanyang private use" text, "halfwidth" text )
SELECT "jamo" FROM table_203_119 ORDER BY id LIMIT 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 23330, 834, 19993, 41, 3, 23, 26, 381, 6, 96, 1191, 51, 32, 121, 1499, 6, 96, 9270, 83, 14235, 485, 121, 1499, 6, 96, 9270, 83, 7620, 32, 616, 121, 1499, 6, 96, 2618, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1191, 51, 32, 121, 21680, 953, 834, 23330, 834, 19993, 4674, 11300, 272, 476, 3, 23, 26, 8729, 12604, 209, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What campus started in year 1956, has more than 200 full time students, and more than 400 students enrolled?
CREATE TABLE degrees ( year number, campus number, degrees number ) CREATE TABLE faculty ( campus number, year number, faculty number ) CREATE TABLE campuses ( id number, campus text, location text, county text, year number ) CREATE TABLE csu_fees ( campus number, year number, campusfee number ) CREATE TABLE discipline_enrollments ( campus number, discipline number, year number, undergraduate number, graduate number ) CREATE TABLE enrollments ( campus number, year number, totalenrollment_ay number, fte_ay number )
SELECT T1.campus FROM campuses AS t1 JOIN enrollments AS t2 ON t1.id = t2.campus WHERE t2.year = 1956 AND totalenrollment_ay > 400 AND fte_ay > 200
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 4526, 41, 215, 381, 6, 4730, 381, 6, 4526, 381, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 6040, 41, 4730, 381, 6, 215, 381, 6, 6040, 381, 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, 332, 5411, 25532, 21680, 25784, 6157, 3, 17, 536, 3, 15355, 3162, 17938, 7, 6157, 3, 17, 357, 9191, 3, 17, 5411, 23, 26, 3274, 3, 17, 4416, 25532, 549, 17444, 427, 3, 17, 4416, 1201, 3274, 22951, 3430, 792, 35, ...
What is the average number scored in a friendly at kryoia soveto, moscow?
CREATE TABLE table_name_24 (scored INTEGER, competition VARCHAR, venue VARCHAR)
SELECT AVG(scored) FROM table_name_24 WHERE competition = "friendly" AND venue = "kryoia soveto, moscow"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2266, 41, 3523, 1271, 3, 21342, 17966, 6, 2259, 584, 4280, 28027, 6, 5669, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 1348, 381, 5799, 16, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0...
[ 3, 23143, 14196, 71, 17217, 599, 3523, 1271, 61, 21680, 953, 834, 4350, 834, 2266, 549, 17444, 427, 2259, 3274, 96, 4905, 121, 3430, 5669, 3274, 96, 157, 651, 32, 23, 9, 78, 162, 235, 6, 2288, 3523, 210, 121, 1, -100, -100, -100, ...
Name the most serial number for feb 1994
CREATE TABLE table_29002641_1 (Serial INTEGER, scrapped VARCHAR)
SELECT MAX(Serial) AS number FROM table_29002641_1 WHERE scrapped = "Feb 1994"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 357, 7015, 2688, 4853, 834, 536, 41, 134, 15, 12042, 3, 21342, 17966, 6, 7346, 3138, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 5570, 8, 167, 10501, 381, 21, 3, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 134, 15, 12042, 61, 6157, 381, 21680, 953, 834, 357, 7015, 2688, 4853, 834, 536, 549, 17444, 427, 7346, 3138, 3274, 96, 371, 15, 115, 7520, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What's the report for the True Value 500?
CREATE TABLE table_10527215_3 (report VARCHAR, name VARCHAR)
SELECT report FROM table_10527215_3 WHERE name = "True Value 500"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 12869, 2555, 357, 1808, 834, 519, 41, 60, 1493, 584, 4280, 28027, 6, 564, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 31, 7, 8, 934, 21, 8, 10998, 12419, 2899...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 934, 21680, 953, 834, 12869, 2555, 357, 1808, 834, 519, 549, 17444, 427, 564, 3274, 96, 21921, 15, 12419, 2899, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Director of christophe barratier had what highest year?
CREATE TABLE table_name_3 ( year INTEGER, director VARCHAR )
SELECT MAX(year) FROM table_name_3 WHERE director = "christophe barratier"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 519, 41, 215, 3, 21342, 17966, 6, 2090, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 2578, 13, 3, 15294, 10775, 15, 1207, 6850, 49, 141, 125, 2030, 21...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 4800, 4, 599, 1201, 61, 21680, 953, 834, 4350, 834, 519, 549, 17444, 427, 2090, 3274, 96, 15294, 10775, 15, 1207, 6850, 49, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is Updated In Past 30 Days, when Registration is 'Open to people 13 and over'?
CREATE TABLE table_47182 ( "Name" text, "Year Began" text, "s Registered user" text, "Updated in past 30 days" text, "Registration" text, "Ability to syndicate off-site feeds" text, "Userpics Free" text, "Userpics Paid" text, "Monthly Cost for Paid Account" text, "Yearly Cost for Paid Account" text, "Permanent Account" text )
SELECT "Updated in past 30 days" FROM table_47182 WHERE "Registration" = 'open to people 13 and over'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4177, 2606, 357, 41, 96, 23954, 121, 1499, 6, 96, 476, 2741, 493, 2565, 121, 1499, 6, 96, 7, 23889, 1139, 121, 1499, 6, 96, 29423, 26, 16, 657, 604, 477, 121, 1499, 6, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 29423, 26, 16, 657, 604, 477, 121, 21680, 953, 834, 4177, 2606, 357, 549, 17444, 427, 96, 18752, 257, 121, 3274, 3, 31, 8751, 12, 151, 1179, 11, 147, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What is Name, when Authors are Kammerer & Sidor?
CREATE TABLE table_name_51 (name VARCHAR, authors VARCHAR)
SELECT name FROM table_name_51 WHERE authors = "kammerer & sidor"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 5553, 41, 4350, 584, 4280, 28027, 6, 5921, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 5570, 6, 116, 10236, 7, 33, 8329, 935, 49, 3, 184, 925, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 564, 21680, 953, 834, 4350, 834, 5553, 549, 17444, 427, 5921, 3274, 96, 26028, 49, 3, 184, 108, 26, 127, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
How many color systems has a bit rate of 5.734?
CREATE TABLE table_1926240_1 (color_system VARCHAR, bit_rate_ VARCHAR, _mbit_s_ VARCHAR)
SELECT COUNT(color_system) FROM table_1926240_1 WHERE bit_rate_[_mbit_s_] = "5.734"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2294, 2688, 11944, 834, 536, 41, 9910, 834, 3734, 584, 4280, 28027, 6, 720, 834, 2206, 834, 584, 4280, 28027, 6, 3, 834, 51, 2360, 834, 7, 834, 584, 4280, 28027, 61, 3, 3...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 9910, 834, 3734, 61, 21680, 953, 834, 2294, 2688, 11944, 834, 536, 549, 17444, 427, 720, 834, 2206, 834, 6306, 834, 51, 2360, 834, 7, 834, 908, 3274, 96, 27220, 3710, 121, 1, -100, -100, -100, -100...
Which date's week was more than 4 with the venue being City Stadium and where the attendance was more than 14,297?
CREATE TABLE table_75175 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Venue" text, "Attendance" real )
SELECT "Date" FROM table_75175 WHERE "Week" > '4' AND "Venue" = 'city stadium' AND "Attendance" > '14,297'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3072, 536, 3072, 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, 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, 308, 342, 121, 21680, 953, 834, 3072, 536, 3072, 549, 17444, 427, 96, 518, 10266, 121, 2490, 3, 31, 591, 31, 3430, 96, 553, 35, 76, 15, 121, 3274, 3, 31, 6726, 14939, 31, 3430, 96, 188, 17, 324, 26, 663, 1...
What is Date, when Against is "22"?
CREATE TABLE table_name_87 (date VARCHAR, against VARCHAR)
SELECT date FROM table_name_87 WHERE against = 22
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4225, 41, 5522, 584, 4280, 28027, 6, 581, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 7678, 6, 116, 3, 20749, 19, 96, 2884, 121, 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, 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, 833, 21680, 953, 834, 4350, 834, 4225, 549, 17444, 427, 581, 3274, 1630, 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,...
Who is the opponent when the attendance is 57,331?
CREATE TABLE table_name_41 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_41 WHERE attendance = "57,331"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4853, 41, 32, 102, 9977, 584, 4280, 28027, 6, 11364, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 2645, 19, 8, 15264, 116, 8, 11364, 19, 3, 3436, 6, 519,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 15264, 21680, 953, 834, 4350, 834, 4853, 549, 17444, 427, 11364, 3274, 96, 3436, 6, 519, 3341, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which Points classification has a Trofeo Fast Team of metauro mobili-pinarello, and a Stage of 6?
CREATE TABLE table_name_85 ( points_classification VARCHAR, trofeo_fast_team VARCHAR, stage VARCHAR )
SELECT points_classification FROM table_name_85 WHERE trofeo_fast_team = "metauro mobili-pinarello" AND stage = "6"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4433, 41, 979, 834, 4057, 2420, 584, 4280, 28027, 6, 10968, 89, 15, 32, 834, 11584, 834, 11650, 584, 4280, 28027, 6, 1726, 584, 4280, 28027, 3, 61, 3, 32102, 321...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 979, 834, 4057, 2420, 21680, 953, 834, 4350, 834, 4433, 549, 17444, 427, 10968, 89, 15, 32, 834, 11584, 834, 11650, 3274, 96, 3493, 9, 450, 32, 11047, 23, 18, 3180, 291, 7126, 121, 3430, 1726, 3274, 96, 948, 121, ...
What type of engine does the model with model designation 97F00 have?
CREATE TABLE table_20866024_3 ( engine VARCHAR, model_designation VARCHAR )
SELECT engine FROM table_20866024_3 WHERE model_designation = "97F00"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 23946, 27720, 2266, 834, 519, 41, 1948, 584, 4280, 28027, 6, 825, 834, 9124, 257, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 686, 13, 1948, 405, 8, 825, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1948, 21680, 953, 834, 23946, 27720, 2266, 834, 519, 549, 17444, 427, 825, 834, 9124, 257, 3274, 96, 4327, 371, 1206, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Which treasurer has a President of sebastian ihler?
CREATE TABLE table_name_74 (treasurer VARCHAR, president VARCHAR)
SELECT treasurer FROM table_name_74 WHERE president = "sebastian ihler"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4581, 41, 929, 9, 3042, 49, 584, 4280, 28027, 6, 2753, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 9336, 52, 65, 3, 9, 1661, 13, 142, 4883, 12572,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 9336, 52, 21680, 953, 834, 4350, 834, 4581, 549, 17444, 427, 2753, 3274, 96, 7, 15, 4883, 12572, 3, 23, 107, 1171, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
who is the team 2 when the team 1 is sestese(e16)?
CREATE TABLE table_name_29 ( team_2 VARCHAR, team_1 VARCHAR )
SELECT team_2 FROM table_name_29 WHERE team_1 = "sestese(e16)"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3166, 41, 372, 834, 357, 584, 4280, 28027, 6, 372, 834, 536, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 113, 19, 8, 372, 204, 116, 8, 372, 209, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 372, 834, 357, 21680, 953, 834, 4350, 834, 3166, 549, 17444, 427, 372, 834, 536, 3274, 96, 7, 2613, 7, 15, 599, 15, 2938, 61, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Return a bar chart showing how many members have visited for each college, sort total number in asc order.
CREATE TABLE round ( Round_ID int, Member_ID int, Decoration_Theme text, Rank_in_Round int ) CREATE TABLE member ( Member_ID int, Name text, Country text, College_ID int ) CREATE TABLE college ( College_ID int, Name text, Leader_Name text, College_Location text )
SELECT T1.Name, COUNT(T1.Name) FROM college AS T1 JOIN member AS T2 ON T1.College_ID = T2.College_ID GROUP BY T1.Name ORDER BY COUNT(T1.Name)
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1751, 41, 9609, 834, 4309, 16, 17, 6, 8541, 834, 4309, 16, 17, 6, 23367, 834, 634, 526, 1499, 6, 3, 22557, 834, 77, 834, 448, 32, 1106, 16, 17, 3, 61, 3, 32102, 32103, 32102, 205...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 23954, 6, 2847, 17161, 599, 382, 5411, 23954, 61, 21680, 1900, 6157, 332, 536, 3, 15355, 3162, 1144, 6157, 332, 357, 9191, 332, 5411, 9939, 7883, 834, 4309, 3274, 332, 4416, 9939, 7883, 834, 4309, 350, 4630...
What is the minimum money list rank for the players having a best finish of T9?
CREATE TABLE table_24747844_2 (money_list_rank INTEGER, best_finish VARCHAR)
SELECT MIN(money_list_rank) FROM table_24747844_2 WHERE best_finish = "T9"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2266, 4581, 3940, 3628, 834, 357, 41, 28442, 834, 3350, 834, 6254, 3, 21342, 17966, 6, 200, 834, 25535, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 2559,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 3, 17684, 599, 28442, 834, 3350, 834, 6254, 61, 21680, 953, 834, 2266, 4581, 3940, 3628, 834, 357, 549, 17444, 427, 200, 834, 25535, 3274, 96, 382, 1298, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
How many nhl teams are listed when college/junior/club team is listed as newton north high school (ushs-ma)?
CREATE TABLE table_30582 ( "Pick #" real, "Player" text, "Position" text, "Nationality" text, "NHL team" text, "College/junior/club team" text )
SELECT COUNT("NHL team") FROM table_30582 WHERE "College/junior/club team" = 'Newton North High School (USHS-MA)'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26724, 4613, 41, 96, 345, 3142, 1713, 121, 490, 6, 96, 15800, 49, 121, 1499, 6, 96, 345, 32, 7, 4749, 121, 1499, 6, 96, 24732, 485, 121, 1499, 6, 96, 15743, 434, 372, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 15743, 434, 372, 8512, 21680, 953, 834, 26724, 4613, 549, 17444, 427, 96, 9939, 7883, 87, 6959, 23, 127, 87, 13442, 372, 121, 3274, 3, 31, 6861, 17, 106, 1117, 1592, 1121, 41, 3063, 4950, 18, ...
Find the name, class and rank of all captains.
CREATE TABLE captain (name VARCHAR, CLASS VARCHAR, rank VARCHAR)
SELECT name, CLASS, rank FROM captain
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 14268, 41, 4350, 584, 4280, 28027, 6, 3, 31598, 584, 4280, 28027, 6, 11003, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 2588, 8, 564, 6, 853, 11, 11003, 13, 66, 14268, 7, 5,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 564, 6, 3, 31598, 6, 11003, 21680, 14268, 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, -100, -100, -100, -100, -100, ...
Who directed the episode written by Lamont Ferrell?
CREATE TABLE table_16973 ( "Series #" real, "Season #" real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text, "Production code" real )
SELECT "Directed by" FROM table_16973 WHERE "Written by" = 'Lamont Ferrell'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 27096, 4552, 41, 96, 12106, 7, 1713, 121, 490, 6, 96, 134, 15, 9, 739, 1713, 121, 490, 6, 96, 382, 155, 109, 121, 1499, 6, 96, 23620, 15, 26, 57, 121, 1499, 6, 96, 24...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 23620, 15, 26, 57, 121, 21680, 953, 834, 27096, 4552, 549, 17444, 427, 96, 24965, 324, 57, 121, 3274, 3, 31, 3612, 4662, 12762, 3820, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What was the team features at Oran Park Raceway?
CREATE TABLE table_name_41 ( team VARCHAR, circuit VARCHAR )
SELECT team FROM table_name_41 WHERE circuit = "oran park raceway"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4853, 41, 372, 584, 4280, 28027, 6, 4558, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 372, 753, 44, 955, 152, 1061, 10949, 1343, 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, 372, 21680, 953, 834, 4350, 834, 4853, 549, 17444, 427, 4558, 3274, 96, 127, 152, 2447, 1964, 1343, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Tell me the tv time for attendance of 60,894
CREATE TABLE table_74562 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "TV Time" text, "Attendance" text )
SELECT "TV Time" FROM table_74562 WHERE "Attendance" = '60,894'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4581, 4834, 357, 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, 4562, 2900, 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, 4562, 2900, 121, 21680, 953, 834, 4581, 4834, 357, 549, 17444, 427, 96, 188, 17, 324, 26, 663, 121, 3274, 3, 31, 3328, 6, 3914, 591, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
what is the latest year when the venue is berlin, germany?
CREATE TABLE table_8576 ( "Year" real, "Competition" text, "Venue" text, "Position" text, "Notes" text )
SELECT MAX("Year") FROM table_8576 WHERE "Venue" = 'berlin, germany'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4433, 3959, 41, 96, 476, 2741, 121, 490, 6, 96, 5890, 4995, 4749, 121, 1499, 6, 96, 553, 35, 76, 15, 121, 1499, 6, 96, 345, 32, 7, 4749, 121, 1499, 6, 96, 10358, 15, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 4800, 4, 599, 121, 476, 2741, 8512, 21680, 953, 834, 4433, 3959, 549, 17444, 427, 96, 553, 35, 76, 15, 121, 3274, 3, 31, 27995, 6, 13692, 63, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Which Current car has a Number of cars of 1, and a Year started of 1999?
CREATE TABLE table_name_54 ( current_car VARCHAR, number_of_cars VARCHAR, year_started VARCHAR )
SELECT current_car FROM table_name_54 WHERE number_of_cars = 1 AND year_started = 1999
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 5062, 41, 750, 834, 1720, 584, 4280, 28027, 6, 381, 834, 858, 834, 1720, 7, 584, 4280, 28027, 6, 215, 834, 3624, 1054, 584, 4280, 28027, 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, 750, 834, 1720, 21680, 953, 834, 4350, 834, 5062, 549, 17444, 427, 381, 834, 858, 834, 1720, 7, 3274, 209, 3430, 215, 834, 3624, 1054, 3274, 5247, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which monarch assumed office on December 15, 1876?
CREATE TABLE table_8042 ( "Name" text, "Death" text, "Assumed Office" text, "Left Office" text, "Years in office" text, "Monarch" text )
SELECT "Monarch" FROM table_8042 WHERE "Assumed Office" = 'december 15, 1876'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2079, 4165, 41, 96, 23954, 121, 1499, 6, 96, 2962, 9, 189, 121, 1499, 6, 96, 188, 7, 4078, 15, 26, 2126, 121, 1499, 6, 96, 2796, 89, 17, 2126, 121, 1499, 6, 96, 476, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 9168, 7064, 121, 21680, 953, 834, 2079, 4165, 549, 17444, 427, 96, 188, 7, 4078, 15, 26, 2126, 121, 3274, 3, 31, 221, 75, 18247, 10725, 507, 3959, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
who is the opponent when the streak is won 9 on april 13, 1990?
CREATE TABLE table_name_3 ( opponent VARCHAR, streak VARCHAR, date VARCHAR )
SELECT opponent FROM table_name_3 WHERE streak = "won 9" AND date = "april 13, 1990"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 519, 41, 15264, 584, 4280, 28027, 6, 18631, 584, 4280, 28027, 6, 833, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 113, 19, 8, 15264, 116, 8, 18631, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 15264, 21680, 953, 834, 4350, 834, 519, 549, 17444, 427, 18631, 3274, 96, 210, 106, 668, 121, 3430, 833, 3274, 96, 9, 2246, 40, 10670, 5541, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the dysart of the principal?
CREATE TABLE table_180 ( "Information" text, "Dysart" text, "Shadow Ridge" text, "Valley Vista" text, "Willow Canyon" text )
SELECT "Dysart" FROM table_180 WHERE "Information" = 'Principal'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 20829, 41, 96, 1570, 14678, 121, 1499, 6, 96, 308, 63, 7, 1408, 121, 1499, 6, 96, 10499, 9, 15198, 13068, 121, 1499, 6, 96, 18392, 1306, 16695, 121, 1499, 6, 96, 518, 173...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 63, 7, 1408, 121, 21680, 953, 834, 20829, 549, 17444, 427, 96, 1570, 14678, 121, 3274, 3, 31, 7855, 29, 3389, 138, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is 1994 when 1996 is 3R?
CREATE TABLE table_name_46 ( Id VARCHAR )
SELECT 1994 FROM table_name_46 WHERE 1996 = "3r"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4448, 41, 27, 26, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 7520, 116, 6911, 19, 220, 448, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 7520, 21680, 953, 834, 4350, 834, 4448, 549, 17444, 427, 6911, 3274, 96, 519, 52, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What country is Lee Janzen from?
CREATE TABLE table_name_46 ( country VARCHAR, player VARCHAR )
SELECT country FROM table_name_46 WHERE player = "lee janzen"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4448, 41, 684, 584, 4280, 28027, 6, 1959, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 684, 19, 5531, 3049, 1847, 45, 58, 1, 0, 0, 0, 0, 0, 0...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 684, 21680, 953, 834, 4350, 834, 4448, 549, 17444, 427, 1959, 3274, 96, 109, 15, 3, 7066, 1847, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Visualize the relationship between Height and Weight .
CREATE TABLE people ( People_ID int, Sex text, Name text, Date_of_Birth text, Height real, Weight real ) CREATE TABLE candidate ( Candidate_ID int, People_ID int, Poll_Source text, Date text, Support_rate real, Consider_rate real, Oppose_rate real, Unsure_rate real )
SELECT Height, Weight FROM people
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 151, 41, 2449, 834, 4309, 16, 17, 6, 679, 226, 1499, 6, 5570, 1499, 6, 7678, 834, 858, 834, 279, 23, 52, 189, 1499, 6, 24231, 490, 6, 14230, 490, 3, 61, 3, 32102, 32103, 32102, 2...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 24231, 6, 14230, 21680, 151, 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, -100, -100, -100, -100, -100, -100, -100, -...
How many members does the club "Tennis Club" has?
CREATE TABLE club (clubid VARCHAR, clubname VARCHAR); CREATE TABLE member_of_club (clubid VARCHAR, stuid VARCHAR); CREATE TABLE student (stuid 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 = "Tennis Club"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1886, 41, 13442, 23, 26, 584, 4280, 28027, 6, 1886, 4350, 584, 4280, 28027, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 1144, 834, 858, 834, 13442, 41, 13442, 23, 26, 584,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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 was the attendance of april 17?
CREATE TABLE table_name_83 (attendance INTEGER, date VARCHAR)
SELECT SUM(attendance) FROM table_name_83 WHERE date = "april 17"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4591, 41, 15116, 663, 3, 21342, 17966, 6, 833, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 11364, 13, 3, 9, 2246, 40, 1003, 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, 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, 180, 6122, 599, 15116, 663, 61, 21680, 953, 834, 4350, 834, 4591, 549, 17444, 427, 833, 3274, 96, 9, 2246, 40, 1003, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the club for the 132 SHTS?
CREATE TABLE table_6735 ( "Rank" real, "Goalkeeper" text, "Club" text, "MINS" real, "SHTS" real, "W-L-T" text )
SELECT "Club" FROM table_6735 WHERE "SHTS" = '132'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3708, 2469, 41, 96, 22557, 121, 490, 6, 96, 6221, 138, 10477, 121, 1499, 6, 96, 254, 11158, 121, 1499, 6, 96, 17684, 134, 121, 490, 6, 96, 9122, 4578, 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, 96, 254, 11158, 121, 21680, 953, 834, 3708, 2469, 549, 17444, 427, 96, 9122, 4578, 121, 3274, 3, 31, 23757, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...