NATURAL_LANG
stringlengths
0
446
SCHEMA
stringlengths
27
2.21k
SQL
stringlengths
18
453
input_ids
list
attention_mask
list
labels
list
What is Website, when License is Apache License 2.0?
CREATE TABLE table_name_55 ( website VARCHAR, license VARCHAR )
SELECT website FROM table_name_55 WHERE license = "apache license 2.0"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3769, 41, 475, 584, 4280, 28027, 6, 3344, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 3637, 6, 116, 16452, 19, 24263, 16452, 6864, 58, 1, 0,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 475, 21680, 953, 834, 4350, 834, 3769, 549, 17444, 427, 3344, 3274, 96, 9750, 1033, 3344, 6864, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
count the number of patients whose age is less than 89 and lab test category is blood gas?
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 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 lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.age < "89" AND lab."CATEGORY" = "Blood Gas"
[ 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,...
List the name of all products along with the number of complaints that they have received, and order from low to high by the X-axis.
CREATE TABLE Products ( product_id INTEGER, parent_product_id INTEGER, product_category_code VARCHAR(20), date_product_first_available DATETIME, date_product_discontinued DATETIME, product_name VARCHAR(80), product_description VARCHAR(255), product_price DECIMAL(19,4) ) CREATE TABLE Staff ( staff_id INTEGER, gender VARCHAR(1), first_name VARCHAR(80), last_name VARCHAR(80), email_address VARCHAR(255), phone_number VARCHAR(80) ) CREATE TABLE Customers ( customer_id INTEGER, customer_type_code VARCHAR(20), address_line_1 VARCHAR(80), address_line_2 VARCHAR(80), town_city VARCHAR(80), state VARCHAR(80), email_address VARCHAR(255), phone_number VARCHAR(80) ) CREATE TABLE Complaints ( complaint_id INTEGER, product_id INTEGER, customer_id INTEGER, complaint_outcome_code VARCHAR(20), complaint_status_code VARCHAR(20), complaint_type_code VARCHAR(20), date_complaint_raised DATETIME, date_complaint_closed DATETIME, staff_id INTEGER )
SELECT product_name, COUNT(*) FROM Products AS t1 JOIN Complaints AS t2 ON t1.product_id = t2.product_id GROUP BY t1.product_name ORDER BY product_name
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7554, 41, 556, 834, 23, 26, 3, 21342, 17966, 6, 4208, 834, 15892, 834, 23, 26, 3, 21342, 17966, 6, 556, 834, 8367, 839, 651, 834, 4978, 584, 4280, 28027, 599, 1755, 201, 833, 834, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 556, 834, 4350, 6, 2847, 17161, 599, 1935, 61, 21680, 7554, 6157, 3, 17, 536, 3, 15355, 3162, 2570, 18689, 17, 7, 6157, 3, 17, 357, 9191, 3, 17, 5411, 15892, 834, 23, 26, 3274, 3, 17, 4416, 15892, 834, 23, 26, ...
What is every team with location attendance of Philips Arena 12,140?
CREATE TABLE table_27734577_7 (team VARCHAR, location_attendance VARCHAR)
SELECT team FROM table_27734577_7 WHERE location_attendance = "Philips Arena 12,140"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2555, 4552, 2128, 4013, 834, 940, 41, 11650, 584, 4280, 28027, 6, 1128, 834, 15116, 663, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 334, 372, 28, 1128, 113...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 372, 21680, 953, 834, 2555, 4552, 2128, 4013, 834, 940, 549, 17444, 427, 1128, 834, 15116, 663, 3274, 96, 23305, 15432, 14904, 10440, 22012, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
whats after october 29 and what is the result
CREATE TABLE table_204_994 ( id number, "date" text, "time" text, "opponent#" text, "rank#" text, "site" text, "tv" text, "result" text, "attendance" number )
SELECT "date", "result" FROM table_204_994 WHERE id = (SELECT id FROM table_204_994 WHERE "date" = 'october 29') + 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26363, 834, 3264, 591, 41, 3, 23, 26, 381, 6, 96, 5522, 121, 1499, 6, 96, 715, 121, 1499, 6, 96, 32, 102, 9977, 4663, 121, 1499, 6, 96, 6254, 4663, 121, 1499, 6, 96, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 5522, 1686, 96, 60, 7, 83, 17, 121, 21680, 953, 834, 26363, 834, 3264, 591, 549, 17444, 427, 3, 23, 26, 3274, 41, 23143, 14196, 3, 23, 26, 21680, 953, 834, 26363, 834, 3264, 591, 549, 17444, 427, 96, 5522, 1...
What date did the Hawks play against Boston?
CREATE TABLE table_27734577_11 ( date VARCHAR, team VARCHAR )
SELECT date FROM table_27734577_11 WHERE team = "Boston"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2555, 4552, 2128, 4013, 834, 2596, 41, 833, 584, 4280, 28027, 6, 372, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 833, 410, 8, 12833, 7, 577, 581, 5053, 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, 833, 21680, 953, 834, 2555, 4552, 2128, 4013, 834, 2596, 549, 17444, 427, 372, 3274, 96, 279, 32, 4411, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Tell me the sum of yards for jason campbell and long less than 23
CREATE TABLE table_name_29 ( yards INTEGER, player VARCHAR, long VARCHAR )
SELECT SUM(yards) FROM table_name_29 WHERE player = "jason campbell" AND long < 23
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3166, 41, 6460, 3, 21342, 17966, 6, 1959, 584, 4280, 28027, 6, 307, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 8779, 140, 8, 4505, 13, 6460, 21, 266...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 6636, 7, 61, 21680, 953, 834, 4350, 834, 3166, 549, 17444, 427, 1959, 3274, 96, 1191, 739, 2856, 7708, 121, 3430, 307, 3, 2, 1902, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Tell me the pick for canada centre
CREATE TABLE table_name_74 ( pick VARCHAR, position VARCHAR, nationality VARCHAR )
SELECT pick FROM table_name_74 WHERE position = "centre" AND nationality = "canada"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4581, 41, 1432, 584, 4280, 28027, 6, 1102, 584, 4280, 28027, 6, 1157, 485, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 8779, 140, 8, 1432, 21, 19343, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1432, 21680, 953, 834, 4350, 834, 4581, 549, 17444, 427, 1102, 3274, 96, 3728, 60, 121, 3430, 1157, 485, 3274, 96, 658, 18089, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Which Nationality has a Round of 4?
CREATE TABLE table_13047 ( "Round" real, "Player" text, "Position" text, "Nationality" text, "College/junior/club team (league)" text )
SELECT "Nationality" FROM table_13047 WHERE "Round" = '4'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 21448, 4177, 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, 24732, 485, 121, 21680, 953, 834, 21448, 4177, 549, 17444, 427, 96, 448, 32, 1106, 121, 3274, 3, 31, 591, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What was the winning team when mikhail goikhberg was the winning driver?
CREATE TABLE table_25668203_2 (winning_team VARCHAR, winning_driver VARCHAR)
SELECT winning_team FROM table_25668203_2 WHERE winning_driver = "Mikhail Goikhberg"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 19337, 3651, 23330, 834, 357, 41, 8163, 834, 11650, 584, 4280, 28027, 6, 3447, 834, 13739, 52, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 3447, 372, 116...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 3447, 834, 11650, 21680, 953, 834, 19337, 3651, 23330, 834, 357, 549, 17444, 427, 3447, 834, 13739, 52, 3274, 96, 329, 19030, 9, 173, 1263, 19030, 2235, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What is the Qaxmu al village with a Fistiqli village ke qutan?
CREATE TABLE table_75413 ( "Almal\u0131 (Qax)" text, "F\u0131st\u0131ql\u0131" text, "Malax" text, "Qaxmu\u011fal" text, "S\u00fcsk\u0259n" text )
SELECT "Qaxmu\u011fal" FROM table_75413 WHERE "F\u0131st\u0131ql\u0131" = 'keşqutan'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3072, 591, 2368, 41, 96, 188, 40, 1982, 2, 76, 4542, 3341, 41, 2247, 9, 226, 61, 121, 1499, 6, 96, 371, 2, 76, 4542, 3341, 7, 17, 2, 76, 4542, 3341, 1824, 40, 2, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 2247, 9, 226, 51, 76, 2, 76, 632, 2596, 89, 138, 121, 21680, 953, 834, 3072, 591, 2368, 549, 17444, 427, 96, 371, 2, 76, 4542, 3341, 7, 17, 2, 76, 4542, 3341, 1824, 40, 2, 76, 4542, 3341, 121, 3274, 3, 3...
What is the average number of cuts made when there were more than 2 tournaments played in 2011?
CREATE TABLE table_40160 ( "Year" real, "Tournaments played" real, "Cuts made" real, "Wins" real, "Best finish" text, "Earnings ( $ )" text, "Scoring average" real )
SELECT AVG("Cuts made") FROM table_40160 WHERE "Tournaments played" > '2' AND "Year" = '2011'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2445, 19129, 41, 96, 476, 2741, 121, 490, 6, 96, 382, 1211, 29, 9, 4128, 1944, 121, 490, 6, 96, 15784, 17, 7, 263, 121, 490, 6, 96, 18455, 7, 121, 490, 6, 96, 17278, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 15784, 17, 7, 263, 8512, 21680, 953, 834, 2445, 19129, 549, 17444, 427, 96, 382, 1211, 29, 9, 4128, 1944, 121, 2490, 3, 31, 357, 31, 3430, 96, 476, 2741, 121, 3274, 3, 31, 13907, 31, 1, -100...
How many episodes had their first air date on March 6, 2008?
CREATE TABLE table_11220799_2 (episode_titles VARCHAR, first_air_date VARCHAR)
SELECT COUNT(episode_titles) FROM table_11220799_2 WHERE first_air_date = "March 6, 2008"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2596, 2884, 4560, 3264, 834, 357, 41, 15, 102, 159, 32, 221, 834, 21869, 7, 584, 4280, 28027, 6, 166, 834, 2256, 834, 5522, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 15, 102, 159, 32, 221, 834, 21869, 7, 61, 21680, 953, 834, 2596, 2884, 4560, 3264, 834, 357, 549, 17444, 427, 166, 834, 2256, 834, 5522, 3274, 96, 25019, 8580, 2628, 121, 1, -100, -100, -100, -100,...
What is the novelty of Tylocephale?
CREATE TABLE table_name_14 (novelty VARCHAR, name VARCHAR)
SELECT novelty FROM table_name_14 WHERE name = "tylocephale"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2534, 41, 5326, 15, 40, 17, 63, 584, 4280, 28027, 6, 564, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 30372, 13, 10352, 5133, 15, 21367, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 30372, 21680, 953, 834, 4350, 834, 2534, 549, 17444, 427, 564, 3274, 96, 17, 63, 5133, 15, 21367, 15, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What was the time of sportfight 10?
CREATE TABLE table_71724 ( "Res." text, "Record" text, "Opponent" text, "Method" text, "Event" text, "Round" real, "Time" text, "Location" text )
SELECT "Time" FROM table_71724 WHERE "Event" = 'sportfight 10'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 940, 2517, 2266, 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, 427, 2169, 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, 13368, 121, 21680, 953, 834, 940, 2517, 2266, 549, 17444, 427, 96, 427, 2169, 121, 3274, 3, 31, 6661, 14466, 335, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Find the number of stores in each city.
CREATE TABLE store_district ( store_id VARCHAR, district_id VARCHAR ) CREATE TABLE store ( store_id VARCHAR ) CREATE TABLE district ( headquartered_city VARCHAR, district_id VARCHAR )
SELECT t3.headquartered_city, COUNT(*) FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id JOIN district AS t3 ON t2.district_id = t3.district_id GROUP BY t3.headquartered_city
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1078, 834, 26, 23, 20066, 41, 1078, 834, 23, 26, 584, 4280, 28027, 6, 3939, 834, 23, 26, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 1078, 41, 1078,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 17, 5787, 27630, 834, 6726, 6, 2847, 17161, 599, 1935, 61, 21680, 1078, 6157, 3, 17, 536, 3, 15355, 3162, 1078, 834, 26, 23, 20066, 6157, 3, 17, 357, 9191, 3, 17, 5411, 7154, 834, 23, 26, 3274, 3, 17, 4416, ...
List all the document names which contains "CV".
CREATE TABLE documents (document_name VARCHAR)
SELECT document_name FROM documents WHERE document_name LIKE "%CV%"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 2691, 41, 28244, 834, 4350, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 6792, 66, 8, 1708, 3056, 84, 2579, 96, 20410, 1280, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1708, 834, 4350, 21680, 2691, 549, 17444, 427, 1708, 834, 4350, 8729, 9914, 96, 1454, 20410, 1454, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
where cfl team is winnipeg (3) via hamilton what are all the player
CREATE TABLE table_26996293_2 (player VARCHAR, cfl_team VARCHAR)
SELECT player FROM table_26996293_2 WHERE cfl_team = "Winnipeg (3) via Hamilton"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2688, 3264, 4056, 4271, 834, 357, 41, 20846, 584, 4280, 28027, 6, 3, 75, 89, 40, 834, 11650, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 213, 3, 75, 89, 40, 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, 0, 0, 0...
[ 3, 23143, 14196, 1959, 21680, 953, 834, 2688, 3264, 4056, 4271, 834, 357, 549, 17444, 427, 3, 75, 89, 40, 834, 11650, 3274, 96, 18455, 29, 23, 855, 122, 10153, 1009, 13450, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Who is the actor playing ' Alan Turing ' in ' The Imitation Game ' ?
CREATE TABLE actor ( aid int, gender text, name text, nationality text, birth_city text, birth_year int ) CREATE TABLE movie ( mid int, title text, release_year int, title_aka text, budget text ) CREATE TABLE director ( did int, gender text, name text, nationality text, birth_city text, birth_year int ) CREATE TABLE made_by ( id int, msid int, pid int ) CREATE TABLE writer ( wid int, gender text, name text, nationality text, birth_city text, birth_year int ) CREATE TABLE producer ( pid int, gender text, name text, nationality text, birth_city text, birth_year int ) CREATE TABLE directed_by ( id int, msid int, did int ) CREATE TABLE tags ( id int, msid int, kid int ) CREATE TABLE classification ( id int, msid int, gid int ) CREATE TABLE cast ( id int, msid int, aid int, role text ) CREATE TABLE keyword ( id int, keyword text ) CREATE TABLE copyright ( id int, msid int, cid int ) CREATE TABLE company ( id int, name text, country_code varchar ) CREATE TABLE written_by ( id int, msid int, wid int ) CREATE TABLE genre ( gid int, genre text ) CREATE TABLE tv_series ( sid int, title text, release_year int, num_of_seasons int, num_of_episodes int, title_aka text, budget text )
SELECT actor.name FROM actor, cast, movie WHERE cast.aid = actor.aid AND cast.role = 'Alan Turing' AND movie.mid = cast.msid AND movie.title = 'The Imitation Game'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7556, 41, 3052, 16, 17, 6, 7285, 1499, 6, 564, 1499, 6, 1157, 485, 1499, 6, 3879, 834, 6726, 1499, 6, 3879, 834, 1201, 16, 17, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 7556, 5, 4350, 21680, 7556, 6, 4061, 6, 1974, 549, 17444, 427, 4061, 5, 6146, 3274, 7556, 5, 6146, 3430, 4061, 5, 3491, 15, 3274, 3, 31, 188, 1618, 7538, 53, 31, 3430, 1974, 5, 6983, 3274, 4061, 5, 51, 7, 23, ...
how many patients speak spanish language and tested under hematology in lab?
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 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 )
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.language = "SPAN" AND lab."CATEGORY" = "Hematology"
[ 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,...
A bar chart that computes the total number of wines with a price is bigger than 100 Next, Bin the year into the weekday interval, and I want to rank by the y axis in desc please.
CREATE TABLE wine ( No INTEGER, Grape TEXT, Winery TEXT, Appelation TEXT, State TEXT, Name TEXT, Year INTEGER, Price INTEGER, Score INTEGER, Cases INTEGER, Drink TEXT ) CREATE TABLE grapes ( ID INTEGER, Grape TEXT, Color TEXT ) CREATE TABLE appellations ( No INTEGER, Appelation TEXT, County TEXT, State TEXT, Area TEXT, isAVA TEXT )
SELECT Year, COUNT(Year) FROM wine WHERE Price > 100 ORDER BY COUNT(Year) DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 2013, 41, 465, 3, 21342, 17966, 6, 29083, 3, 3463, 4, 382, 6, 9426, 651, 3, 3463, 4, 382, 6, 3, 27794, 257, 3, 3463, 4, 382, 6, 1015, 3, 3463, 4, 382, 6, 5570, 3, 3463, 4, 38...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2929, 6, 2847, 17161, 599, 476, 2741, 61, 21680, 2013, 549, 17444, 427, 5312, 2490, 910, 4674, 11300, 272, 476, 2847, 17161, 599, 476, 2741, 61, 309, 25067, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is Dominik Meichtry's Time in Heat 7 or lower?
CREATE TABLE table_13507 ( "Rank" real, "Heat" real, "Lane" real, "Name" text, "Nationality" text, "Time" real )
SELECT COUNT("Time") FROM table_13507 WHERE "Name" = 'dominik meichtry' AND "Heat" < '7'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2368, 1752, 940, 41, 96, 22557, 121, 490, 6, 96, 3845, 144, 121, 490, 6, 96, 434, 152, 15, 121, 490, 6, 96, 23954, 121, 1499, 6, 96, 24732, 485, 121, 1499, 6, 96, 13368...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 13368, 8512, 21680, 953, 834, 2368, 1752, 940, 549, 17444, 427, 96, 23954, 121, 3274, 3, 31, 5012, 23, 4953, 140, 362, 8224, 31, 3430, 96, 3845, 144, 121, 3, 2, 3, 31, 940, 31, 1, -100, -1...
Name the 3rd place with winners of weymouth wildcats and 4th place of boston barracudas
CREATE TABLE table_69694 ( "Year" real, "Winners" text, "2nd place" text, "3rd place" text, "4th place" text )
SELECT "3rd place" FROM table_69694 WHERE "Winners" = 'weymouth wildcats' AND "4th place" = 'boston barracudas'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3951, 3951, 591, 41, 96, 476, 2741, 121, 490, 6, 96, 18455, 687, 7, 121, 1499, 6, 96, 357, 727, 286, 121, 1499, 6, 96, 519, 52, 26, 286, 121, 1499, 6, 96, 591, 189, 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, 519, 52, 26, 286, 121, 21680, 953, 834, 3951, 3951, 591, 549, 17444, 427, 96, 18455, 687, 7, 121, 3274, 3, 31, 1123, 63, 11975, 3645, 2138, 7, 31, 3430, 96, 591, 189, 286, 121, 3274, 3, 31, 115, 32, 4411, ...
Which Score has Points smaller than 67, and a Home of calgary flames?
CREATE TABLE table_name_45 (score VARCHAR, points VARCHAR, home VARCHAR)
SELECT score FROM table_name_45 WHERE points < 67 AND home = "calgary flames"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2128, 41, 7, 9022, 584, 4280, 28027, 6, 979, 584, 4280, 28027, 6, 234, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 17763, 65, 4564, 7, 2755, 145, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2604, 21680, 953, 834, 4350, 834, 2128, 549, 17444, 427, 979, 3, 2, 3, 3708, 3430, 234, 3274, 96, 1489, 1478, 63, 12314, 7, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
How many dfb-pokal did kevin-prince boateng have?
CREATE TABLE table_22167196_1 ( dfb_pokal VARCHAR, player VARCHAR )
SELECT COUNT(dfb_pokal) FROM table_22167196_1 WHERE player = "Kevin-Prince Boateng"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2884, 27650, 26937, 834, 536, 41, 3, 26, 89, 115, 834, 102, 32, 4766, 584, 4280, 28027, 6, 1959, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 3, 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, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 26, 89, 115, 834, 102, 32, 4766, 61, 21680, 953, 834, 2884, 27650, 26937, 834, 536, 549, 17444, 427, 1959, 3274, 96, 439, 15, 2494, 18, 7855, 3772, 17733, 4606, 121, 1, -100, -100, -100, -100, -100...
What is the Winter in 1906?
CREATE TABLE table_name_99 (winter VARCHAR, year VARCHAR)
SELECT winter FROM table_name_99 WHERE year = 1906
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3264, 41, 210, 3870, 584, 4280, 28027, 6, 215, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 4272, 16, 29696, 58, 1, 0, 0, 0, 0, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2265, 21680, 953, 834, 4350, 834, 3264, 549, 17444, 427, 215, 3274, 29696, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Name the result for lukas smital and home
CREATE TABLE table_17120964_5 (result VARCHAR, man_of_the_match VARCHAR, venue VARCHAR)
SELECT result FROM table_17120964_5 WHERE man_of_the_match = "Lukas Smital" AND venue = "Home"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2517, 2122, 4198, 4389, 834, 755, 41, 60, 7, 83, 17, 584, 4280, 28027, 6, 388, 834, 858, 834, 532, 834, 19515, 584, 4280, 28027, 6, 5669, 584, 4280, 28027, 61, 3, 32102, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0...
[ 3, 23143, 14196, 741, 21680, 953, 834, 2517, 2122, 4198, 4389, 834, 755, 549, 17444, 427, 388, 834, 858, 834, 532, 834, 19515, 3274, 96, 434, 1598, 9, 7, 180, 1538, 138, 121, 3430, 5669, 3274, 96, 19040, 121, 1, -100, -100, -100, ...
Which engineer has visited the most times? Show the engineer id, first name and last name.
CREATE TABLE Maintenance_Engineers (engineer_id VARCHAR, first_name VARCHAR, last_name VARCHAR); CREATE TABLE Engineer_Visits (Id VARCHAR)
SELECT T1.engineer_id, T1.first_name, T1.last_name FROM Maintenance_Engineers AS T1 JOIN Engineer_Visits AS T2 GROUP BY T1.engineer_id ORDER BY COUNT(*) DESC LIMIT 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 18192, 834, 31477, 277, 41, 20165, 49, 834, 23, 26, 584, 4280, 28027, 6, 166, 834, 4350, 584, 4280, 28027, 6, 336, 834, 4350, 584, 4280, 28027, 61, 3, 32102, 32103, 32102, 205, 4386, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 20165, 49, 834, 23, 26, 6, 332, 5411, 14672, 834, 4350, 6, 332, 5411, 5064, 834, 4350, 21680, 18192, 834, 31477, 277, 6157, 332, 536, 3, 15355, 3162, 11597, 834, 553, 159, 7085, 6157, 332, 357, 350, 4630,...
Name the margin of victory for jonas blixt
CREATE TABLE table_name_24 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT margin_of_victory FROM table_name_24 WHERE runner_s__up = "jonas blixt"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2266, 41, 1635, 122, 77, 834, 858, 834, 7287, 10972, 584, 4280, 28027, 6, 3, 10806, 834, 7, 834, 834, 413, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 6346, 834, 858, 834, 7287, 10972, 21680, 953, 834, 4350, 834, 2266, 549, 17444, 427, 3, 10806, 834, 7, 834, 834, 413, 3274, 96, 15429, 9, 7, 3, 7437, 226, 17, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100...
Who was the opponent for game number less than 47 and a record of 24-13-4?
CREATE TABLE table_name_34 ( opponent VARCHAR, game VARCHAR, record VARCHAR )
SELECT opponent FROM table_name_34 WHERE game < 47 AND record = "24-13-4"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3710, 41, 15264, 584, 4280, 28027, 6, 467, 584, 4280, 28027, 6, 1368, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 2645, 47, 8, 15264, 21, 467, 381, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 15264, 21680, 953, 834, 4350, 834, 3710, 549, 17444, 427, 467, 3, 2, 10635, 3430, 1368, 3274, 96, 2266, 13056, 18, 20364, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
How many names are listed for the player with 50 points?
CREATE TABLE table_25401874_1 (name VARCHAR, points VARCHAR)
SELECT COUNT(name) FROM table_25401874_1 WHERE points = 50
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1828, 2445, 2606, 4581, 834, 536, 41, 4350, 584, 4280, 28027, 6, 979, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 3056, 33, 2616, 21, 8, 1959, 28, 943, 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, 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, 4350, 61, 21680, 953, 834, 1828, 2445, 2606, 4581, 834, 536, 549, 17444, 427, 979, 3274, 943, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
In language where Saturday is senasuraadaa, what is Tuesday?
CREATE TABLE table_17785 ( "Day" text, "Sunday Surya (the Sun)" text, "Monday Soma (the Moon)" text, "Tuesday Mangala (Mars)" text, "Wednesday Budha (Mercury)" text, "Thursday Guru (Jupiter)" text, "Friday Shukra (Venus)" text, "Saturday Shani (Saturn)" text )
SELECT "Tuesday Mangala (Mars)" FROM table_17785 WHERE "Saturday Shani (Saturn)" = 'සෙනසුරාදා Senasuraadaa'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26793, 4433, 41, 96, 16803, 121, 1499, 6, 96, 134, 202, 1135, 3705, 63, 9, 41, 532, 3068, 61, 121, 1499, 6, 96, 9168, 1135, 264, 51, 9, 41, 532, 9023, 61, 121, 1499, 6,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 382, 76, 15, 7, 1135, 26005, 521, 41, 7286, 7, 61, 121, 21680, 953, 834, 26793, 4433, 549, 17444, 427, 96, 134, 6010, 1135, 12077, 23, 41, 134, 9, 7535, 61, 121, 3274, 3, 31, 2, 4892, 9, 7, 2414, 9, 26, ...
What is the hioghest amount of silver medals for a nation ranked higher than 19 and less than 2 gold medals?
CREATE TABLE table_66028 ( "Rank" text, "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real )
SELECT MAX("Silver") FROM table_66028 WHERE "Rank" = '19' AND "Gold" < '2'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 27720, 2577, 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, 134, 173, 624, 8512, 21680, 953, 834, 27720, 2577, 549, 17444, 427, 96, 22557, 121, 3274, 3, 31, 2294, 31, 3430, 96, 23576, 121, 3, 2, 3, 31, 357, 31, 1, -100, -100, -100, -100, -100, -100, -1...
What is the lowest cuts made that had a Top-25 less than 6 and wins greater than 0?
CREATE TABLE table_name_63 (cuts_made INTEGER, top_25 VARCHAR, wins VARCHAR)
SELECT MIN(cuts_made) FROM table_name_63 WHERE top_25 < 6 AND wins < 0
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3891, 41, 3044, 7, 834, 4725, 3, 21342, 17966, 6, 420, 834, 1828, 584, 4280, 28027, 6, 9204, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 740...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 3044, 7, 834, 4725, 61, 21680, 953, 834, 4350, 834, 3891, 549, 17444, 427, 420, 834, 1828, 3, 2, 431, 3430, 9204, 3, 2, 3, 632, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
give me the number of patients whose admission year is less than 2137 and procedure icd9 code is 3322?
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 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 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.admityear < "2137" AND procedures.icd9_code = "3322"
[ 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 was the week 12 standing for the housemate that nominated Deepak P Rahul in week 1 and Amit Carol in week 3?
CREATE TABLE table_name_8 (Final VARCHAR, week_1 VARCHAR, week_3 VARCHAR)
SELECT Final AS week_12 FROM table_name_8 WHERE week_1 = "deepak p rahul" AND week_3 = "amit carol"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 927, 41, 371, 10270, 584, 4280, 28027, 6, 471, 834, 536, 584, 4280, 28027, 6, 471, 834, 519, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 471...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 6514, 6157, 471, 834, 2122, 21680, 953, 834, 4350, 834, 927, 549, 17444, 427, 471, 834, 536, 3274, 96, 25221, 1639, 3, 102, 3, 52, 9, 107, 83, 121, 3430, 471, 834, 519, 3274, 96, 9, 1538, 212, 3491, 121, 1, -100...
What is the type earlier than 1968, and a Title of stretchin' out?
CREATE TABLE table_name_42 ( type VARCHAR, year VARCHAR, title VARCHAR )
SELECT type FROM table_name_42 WHERE year < 1968 AND title = "stretchin' out"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4165, 41, 686, 584, 4280, 28027, 6, 215, 584, 4280, 28027, 6, 2233, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 686, 2283, 145, 16506, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 686, 21680, 953, 834, 4350, 834, 4165, 549, 17444, 427, 215, 3, 2, 16506, 3430, 2233, 3274, 96, 7, 929, 17, 5675, 31, 91, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Name the original air date for ai% for 83
CREATE TABLE table_18012738_1 ( original_air_date VARCHAR, ai___percentage_ VARCHAR )
SELECT original_air_date FROM table_18012738_1 WHERE ai___percentage_ = 83
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 20829, 22367, 3747, 834, 536, 41, 926, 834, 2256, 834, 5522, 584, 4280, 28027, 6, 3, 9, 23, 834, 834, 834, 883, 3728, 545, 834, 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, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 926, 834, 2256, 834, 5522, 21680, 953, 834, 20829, 22367, 3747, 834, 536, 549, 17444, 427, 3, 9, 23, 834, 834, 834, 883, 3728, 545, 834, 3274, 3, 4591, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is listed for the Lengtht that has a Version of Single Version?
CREATE TABLE table_name_32 (length VARCHAR, version VARCHAR)
SELECT length FROM table_name_32 WHERE version = "single version"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2668, 41, 19457, 584, 4280, 28027, 6, 988, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 2616, 21, 8, 312, 1725, 189, 17, 24, 65, 3, 9, 8011, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2475, 21680, 953, 834, 4350, 834, 2668, 549, 17444, 427, 988, 3274, 96, 7, 53, 109, 988, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What type of ship is a Kobben class vessel that has been in service longer than 2?
CREATE TABLE table_63631 ( "Vessel" text, "Origin" text, "Type" text, "In service" real, "Unit" text )
SELECT "Type" FROM table_63631 WHERE "In service" > '2' AND "Vessel" = 'kobben class'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3891, 3891, 536, 41, 96, 553, 19132, 121, 1499, 6, 96, 667, 3380, 77, 121, 1499, 6, 96, 25160, 121, 1499, 6, 96, 1570, 313, 121, 490, 6, 96, 5110, 155, 121, 1499, 3, 61...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 25160, 121, 21680, 953, 834, 3891, 3891, 536, 549, 17444, 427, 96, 1570, 313, 121, 2490, 3, 31, 357, 31, 3430, 96, 553, 19132, 121, 3274, 3, 31, 157, 32, 115, 115, 35, 853, 31, 1, -100, -100, -100, -100, -10...
What's the last 5 meetings with an opponent's venue result of vu, 2-0?
CREATE TABLE table_48151 ( "Missouri vs." text, "Overall Record" text, "at Columbia" text, "at Opponent's Venue" text, "at Neutral Site" text, "Last 5 Meetings" text, "Last 10 Meetings" text, "Current Streak" text, "Since Joining SEC" text )
SELECT "Last 5 Meetings" FROM table_48151 WHERE "at Opponent's Venue" = 'vu, 2-0'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3707, 26578, 41, 96, 329, 159, 7, 32, 459, 3, 208, 7, 535, 1499, 6, 96, 23847, 1748, 11392, 121, 1499, 6, 96, 144, 8183, 121, 1499, 6, 96, 144, 4495, 9977, 31, 7, 29940...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 3612, 7, 17, 305, 9198, 7, 121, 21680, 953, 834, 3707, 26578, 549, 17444, 427, 96, 144, 4495, 9977, 31, 7, 29940, 121, 3274, 3, 31, 208, 76, 6, 3, 19423, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100...
Who wrote the episode that had 8.84 million viewers?
CREATE TABLE table_21025437_5 ( written_by VARCHAR, viewers__millions_ VARCHAR )
SELECT written_by FROM table_21025437_5 WHERE viewers__millions_ = "8.84"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 15239, 1828, 591, 4118, 834, 755, 41, 1545, 834, 969, 584, 4280, 28027, 6, 13569, 834, 834, 17030, 7, 834, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 2645, 2832,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1545, 834, 969, 21680, 953, 834, 15239, 1828, 591, 4118, 834, 755, 549, 17444, 427, 13569, 834, 834, 17030, 7, 834, 3274, 96, 927, 5, 4608, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What is the number of failure for the country of Russia, and a Family of r14 r-14, and a Partial failures smaller than 0?
CREATE TABLE table_name_76 ( failures VARCHAR, partial_failures VARCHAR, country VARCHAR, family VARCHAR )
SELECT COUNT(failures) FROM table_name_76 WHERE country = "russia" AND family = "r14 r-14" AND partial_failures < 0
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3959, 41, 3338, 7, 584, 4280, 28027, 6, 11807, 834, 89, 9, 173, 7665, 584, 4280, 28027, 6, 684, 584, 4280, 28027, 6, 384, 584, 4280, 28027, 3, 61, 3, 32102, 32...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 89, 9, 173, 7665, 61, 21680, 953, 834, 4350, 834, 3959, 549, 17444, 427, 684, 3274, 96, 26165, 121, 3430, 384, 3274, 96, 52, 2534, 3, 52, 11590, 121, 3430, 11807, 834, 89, 9, 173, 7665, 3, 2, 3...
Feature of gear stick involves which driving force gt?
CREATE TABLE table_6409 ( "Feature" text, "GT Force" text, "Driving Force EX" text, "Driving Force Pro" text, "Driving Force GT" text, "G25 Racing Wheel" text, "G27 Racing Wheel" text )
SELECT "Driving Force GT" FROM table_6409 WHERE "Feature" = 'gear stick'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4389, 4198, 41, 96, 16772, 121, 1499, 6, 96, 18489, 5205, 121, 1499, 6, 96, 308, 5927, 53, 5205, 262, 4, 121, 1499, 6, 96, 308, 5927, 53, 5205, 749, 121, 1499, 6, 96, 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, 308, 5927, 53, 5205, 10188, 121, 21680, 953, 834, 4389, 4198, 549, 17444, 427, 96, 16772, 121, 3274, 3, 31, 397, 291, 4372, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
How many total points does Mike Hyndman have with more than 119 assists?
CREATE TABLE table_66862 ( "Player" text, "Years" text, "Goals" real, "Assists" real, "Points" real )
SELECT SUM("Points") FROM table_66862 WHERE "Player" = 'mike hyndman' AND "Assists" > '119'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3539, 3840, 357, 41, 96, 15800, 49, 121, 1499, 6, 96, 476, 2741, 7, 121, 1499, 6, 96, 6221, 5405, 121, 490, 6, 96, 188, 7, 7, 343, 7, 121, 490, 6, 96, 22512, 7, 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, 180, 6122, 599, 121, 22512, 7, 8512, 21680, 953, 834, 3539, 3840, 357, 549, 17444, 427, 96, 15800, 49, 121, 3274, 3, 31, 20068, 15, 3, 107, 63, 727, 348, 31, 3430, 96, 188, 7, 7, 343, 7, 121, 2490, 3, 31, 1999...
What Site had an Attendance of 45,000?
CREATE TABLE table_name_20 ( site VARCHAR, attendance VARCHAR )
SELECT site FROM table_name_20 WHERE attendance = "45,000"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1755, 41, 353, 584, 4280, 28027, 6, 11364, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 3238, 141, 46, 22497, 663, 13, 314, 5898, 58, 1, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 353, 21680, 953, 834, 4350, 834, 1755, 549, 17444, 427, 11364, 3274, 96, 591, 5898, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which Points have an Opponent of new york islanders, and a Game smaller than 65?
CREATE TABLE table_75244 ( "Game" real, "March" real, "Opponent" text, "Score" text, "Record" text, "Points" real )
SELECT SUM("Points") FROM table_75244 WHERE "Opponent" = 'new york islanders' AND "Game" < '65'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3072, 357, 3628, 41, 96, 23055, 121, 490, 6, 96, 25019, 121, 490, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 1649, 7621, 121, 1499, 6, 96, 22...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 180, 6122, 599, 121, 22512, 7, 8512, 21680, 953, 834, 3072, 357, 3628, 549, 17444, 427, 96, 667, 102, 9977, 121, 3274, 3, 31, 5534, 25453, 3368, 277, 31, 3430, 96, 23055, 121, 3, 2, 3, 31, 4122, 31, 1, -100, -10...
What is the average grid for the competitiors who had laps smaller than 3?
CREATE TABLE table_name_55 ( grid INTEGER, laps INTEGER )
SELECT AVG(grid) FROM table_name_55 WHERE laps < 3
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3769, 41, 8634, 3, 21342, 17966, 6, 14941, 7, 3, 21342, 17966, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 1348, 8634, 21, 8, 2890, 15, 9715, 127, 7, 113...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 71, 17217, 599, 3496, 26, 61, 21680, 953, 834, 4350, 834, 3769, 549, 17444, 427, 14941, 7, 3, 2, 220, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
what is the race where the pole position is niki lauda and the date is 27 april?
CREATE TABLE table_16745 ( "Rnd" real, "Race" text, "Date" text, "Location" text, "Pole Position" text, "Fastest Lap" text, "Race Winner" text, "Constructor" text, "Report" text )
SELECT "Race" FROM table_16745 WHERE "Pole Position" = 'Niki Lauda' AND "Date" = '27 April'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 27650, 2128, 41, 96, 448, 727, 121, 490, 6, 96, 448, 3302, 121, 1499, 6, 96, 308, 342, 121, 1499, 6, 96, 434, 32, 75, 257, 121, 1499, 6, 96, 8931, 15, 14258, 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, 448, 3302, 121, 21680, 953, 834, 27650, 2128, 549, 17444, 427, 96, 8931, 15, 14258, 121, 3274, 3, 31, 567, 9069, 18465, 26, 9, 31, 3430, 96, 308, 342, 121, 3274, 3, 31, 2555, 1186, 31, 1, -100, -100, -100, -...
What the highest Year with a Remixed by Laurent Boutonnat?
CREATE TABLE table_name_38 ( year INTEGER, remixed_by VARCHAR )
SELECT MAX(year) FROM table_name_38 WHERE remixed_by = "laurent boutonnat"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3747, 41, 215, 3, 21342, 17966, 6, 26063, 15, 26, 834, 969, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 8, 2030, 2929, 28, 3, 9, 419, 13682, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 1201, 61, 21680, 953, 834, 4350, 834, 3747, 549, 17444, 427, 26063, 15, 26, 834, 969, 3274, 96, 40, 402, 5320, 19899, 29, 144, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which week was the November 5, 1978 game which had an attendance larger than 62,989?
CREATE TABLE table_9307 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Attendance" real )
SELECT "Week" FROM table_9307 WHERE "Attendance" > '62,989' AND "Date" = 'november 5, 1978'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4271, 4560, 41, 96, 518, 10266, 121, 490, 6, 96, 308, 342, 121, 1499, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 20119, 121, 1499, 6, 96, 188, 17, 324, 26, 663, 121, 490,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 518, 10266, 121, 21680, 953, 834, 4271, 4560, 549, 17444, 427, 96, 188, 17, 324, 26, 663, 121, 2490, 3, 31, 4056, 6, 1298, 3914, 31, 3430, 96, 308, 342, 121, 3274, 3, 31, 5326, 18247, 7836, 14834, 31, 1, -10...
Which channel tv (dt) plays in San Francisco - Oakland - San Jose?
CREATE TABLE table_20130 ( "City of License /Market" text, "Station" text, "Channel TV ( DT )" text, "Years owned" text, "Current affiliation" text )
SELECT "Channel TV ( DT )" FROM table_20130 WHERE "City of License /Market" = 'San Francisco - Oakland - San Jose'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 11138, 632, 41, 96, 254, 485, 13, 16452, 3, 87, 22572, 121, 1499, 6, 96, 134, 6821, 121, 1499, 6, 96, 3541, 4515, 40, 1424, 41, 3, 12111, 3, 61, 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, 3541, 4515, 40, 1424, 41, 3, 12111, 3, 61, 121, 21680, 953, 834, 11138, 632, 549, 17444, 427, 96, 254, 485, 13, 16452, 3, 87, 22572, 121, 3274, 3, 31, 134, 152, 5901, 3, 18, 19837, 3, 18, 1051, 10854, 31, ...
What catalog came out after 2000?
CREATE TABLE table_name_23 (catalog VARCHAR, year INTEGER)
SELECT catalog FROM table_name_23 WHERE year > 2000
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2773, 41, 2138, 9, 2152, 584, 4280, 28027, 6, 215, 3, 21342, 17966, 61, 3, 32102, 32103, 32101, 32103, 363, 10173, 764, 91, 227, 2766, 58, 1, 0, 0, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 10173, 21680, 953, 834, 4350, 834, 2773, 549, 17444, 427, 215, 2490, 2766, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the position of the song that was eliminated on 11 november?
CREATE TABLE table_23585197_3 ( position INTEGER, date_eliminated VARCHAR )
SELECT MAX(position) FROM table_23585197_3 WHERE date_eliminated = "11 November"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 25174, 4433, 27181, 834, 519, 41, 1102, 3, 21342, 17966, 6, 833, 834, 15, 4941, 77, 920, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 1102, 13, 8, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 4718, 61, 21680, 953, 834, 25174, 4433, 27181, 834, 519, 549, 17444, 427, 833, 834, 15, 4941, 77, 920, 3274, 96, 2596, 1671, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
how many canton with commune being waldbillig
CREATE TABLE table_1417184_1 ( canton VARCHAR, commune VARCHAR )
SELECT COUNT(canton) FROM table_1417184_1 WHERE commune = "Waldbillig"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2534, 2517, 25987, 834, 536, 41, 26652, 584, 4280, 28027, 6, 9026, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 149, 186, 26652, 28, 9026, 271, 3, 11611, 3727, 282...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 658, 6992, 61, 21680, 953, 834, 2534, 2517, 25987, 834, 536, 549, 17444, 427, 9026, 3274, 96, 518, 138, 26, 3727, 2825, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
what is the score when the tie no is 28?
CREATE TABLE table_10435 ( "Tie no" real, "Home team" text, "Score" text, "Away team" text, "Attendance" real )
SELECT "Score" FROM table_10435 WHERE "Tie no" = '28'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 15442, 2469, 41, 96, 382, 23, 15, 150, 121, 490, 6, 96, 19040, 372, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 188, 1343, 372, 121, 1499, 6, 96, 188, 17, 324, 26, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 134, 9022, 121, 21680, 953, 834, 15442, 2469, 549, 17444, 427, 96, 382, 23, 15, 150, 121, 3274, 3, 31, 2577, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is the round with ajax opponents
CREATE TABLE table_name_33 ( round VARCHAR, opponents VARCHAR )
SELECT round FROM table_name_33 WHERE opponents = "ajax"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4201, 41, 1751, 584, 4280, 28027, 6, 16383, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 1751, 28, 3, 9, 1191, 226, 16383, 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, 1751, 21680, 953, 834, 4350, 834, 4201, 549, 17444, 427, 16383, 3274, 96, 9, 1191, 226, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Who was the successor for the Kentucky 2nd district?
CREATE TABLE table_224794_3 ( successor VARCHAR, district VARCHAR )
SELECT successor FROM table_224794_3 WHERE district = "Kentucky 2nd"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2884, 4177, 4240, 834, 519, 41, 22261, 584, 4280, 28027, 6, 3939, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 2645, 47, 8, 22261, 21, 8, 13401, 204, 727, 3939, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 22261, 21680, 953, 834, 2884, 4177, 4240, 834, 519, 549, 17444, 427, 3939, 3274, 96, 439, 295, 4636, 63, 204, 727, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Name the height for demetrius jemison
CREATE TABLE table_25360865_1 ( height VARCHAR, name VARCHAR )
SELECT height FROM table_25360865_1 WHERE name = "Demetrius Jemison"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1828, 3420, 4018, 4122, 834, 536, 41, 3902, 584, 4280, 28027, 6, 564, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 5570, 8, 3902, 21, 20, 8180, 302, 3, 354, 1264...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 3902, 21680, 953, 834, 1828, 3420, 4018, 4122, 834, 536, 549, 17444, 427, 564, 3274, 96, 2962, 8180, 302, 446, 12641, 106, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
what happened during the election for Richard M. Kleberg?
CREATE TABLE table_1342331_43 (result VARCHAR, incumbent VARCHAR)
SELECT result FROM table_1342331_43 WHERE incumbent = "Richard M. Kleberg"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 23747, 2773, 3341, 834, 4906, 41, 60, 7, 83, 17, 584, 4280, 28027, 6, 28406, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 125, 2817, 383, 8, 4356, 21, 4117, 283, 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, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 741, 21680, 953, 834, 23747, 2773, 3341, 834, 4906, 549, 17444, 427, 28406, 3274, 96, 448, 362, 986, 283, 5, 19549, 2235, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
what is the difference between the number of games played at manny ramjohn stadium and the number of games played at marvin lee stadium ?
CREATE TABLE table_204_894 ( id number, "season" number, "winner" text, "score" text, "runners-up" text, "venue" text )
SELECT ABS((SELECT COUNT(*) FROM table_204_894 WHERE "venue" = 'manny ramjohn stadium') - (SELECT COUNT(*) FROM table_204_894 WHERE "venue" = 'marvin lee stadium'))
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26363, 834, 3914, 591, 41, 3, 23, 26, 381, 6, 96, 9476, 121, 381, 6, 96, 3757, 687, 121, 1499, 6, 96, 7, 9022, 121, 1499, 6, 96, 10806, 7, 18, 413, 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, 20798, 599, 599, 23143, 14196, 2847, 17161, 599, 1935, 61, 21680, 953, 834, 26363, 834, 3914, 591, 549, 17444, 427, 96, 15098, 121, 3274, 3, 31, 2434, 63, 3, 2375, 27341, 14939, 31, 61, 3, 18, 41, 23143, 14196, 2847...
What date did the game at Arden Street Oval take place?
CREATE TABLE table_name_12 ( date VARCHAR, venue VARCHAR )
SELECT date FROM table_name_12 WHERE venue = "arden street oval"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2122, 41, 833, 584, 4280, 28027, 6, 5669, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 833, 410, 8, 467, 44, 22635, 35, 1887, 411, 2165, 240, 286...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 833, 21680, 953, 834, 4350, 834, 2122, 549, 17444, 427, 5669, 3274, 96, 986, 35, 2815, 17986, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What was the lowest heat for Germany with a rank smaller than 9 for Mike Fenner and a time smaller than 13.52?
CREATE TABLE table_7158 ( "Rank" real, "Heat" real, "Name" text, "Nationality" text, "Time" real )
SELECT MIN("Heat") FROM table_7158 WHERE "Nationality" = 'germany' AND "Rank" < '9' AND "Name" = 'mike fenner' AND "Time" < '13.52'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4450, 3449, 41, 96, 22557, 121, 490, 6, 96, 3845, 144, 121, 490, 6, 96, 23954, 121, 1499, 6, 96, 24732, 485, 121, 1499, 6, 96, 13368, 121, 490, 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, 3, 17684, 599, 121, 3845, 144, 8512, 21680, 953, 834, 4450, 3449, 549, 17444, 427, 96, 24732, 485, 121, 3274, 3, 31, 1304, 348, 63, 31, 3430, 96, 22557, 121, 3, 2, 3, 31, 1298, 31, 3430, 96, 23954, 121, 3274, 3,...
What is the frequency of the newspaper, el diario de nuevo laredo in the city of nuevo laredo ?
CREATE TABLE table_name_70 ( frequency VARCHAR, city VARCHAR, name VARCHAR )
SELECT frequency FROM table_name_70 WHERE city = "nuevo laredo" AND name = "el diario de nuevo laredo"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2518, 41, 7321, 584, 4280, 28027, 6, 690, 584, 4280, 28027, 6, 564, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 7321, 13, 8, 8468, 6, 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, 7321, 21680, 953, 834, 4350, 834, 2518, 549, 17444, 427, 690, 3274, 96, 29, 76, 15, 1621, 50, 1271, 32, 121, 3430, 564, 3274, 96, 15, 40, 1227, 14414, 20, 206, 15, 1621, 50, 1271, 32, 121, 1, -100, -100, -100, -...
At what venue did the team from Collingwood score 7.14 (56) - 4.5 (29)?
CREATE TABLE table_74493 ( "Year" text, "Competition" text, "Opponent" text, "Score" text, "Venue" text )
SELECT "Venue" FROM table_74493 WHERE "Opponent" = 'collingwood' AND "Score" = '7.14 (56) - 4.5 (29)'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4581, 3647, 519, 41, 96, 476, 2741, 121, 1499, 6, 96, 5890, 4995, 4749, 121, 1499, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 553, 35, 76, 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, 96, 553, 35, 76, 15, 121, 21680, 953, 834, 4581, 3647, 519, 549, 17444, 427, 96, 667, 102, 9977, 121, 3274, 3, 31, 3297, 697, 2037, 31, 3430, 96, 134, 9022, 121, 3274, 3, 31, 25059, 591, 9209, 10938, 3, 18, 3, ...
Which title has content including mysticism, spiritualism, and a translation of the minaret of light?
CREATE TABLE table_53954 ( "Title" text, "Urdu" text, "Translation" text, "Date" real, "Content" text )
SELECT "Title" FROM table_53954 WHERE "Content" = 'mysticism, spiritualism' AND "Translation" = 'the minaret of light'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4867, 3301, 591, 41, 96, 382, 155, 109, 121, 1499, 6, 96, 1265, 52, 1259, 121, 1499, 6, 96, 18474, 6105, 121, 1499, 6, 96, 308, 342, 121, 490, 6, 96, 4302, 4669, 121, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 382, 155, 109, 121, 21680, 953, 834, 4867, 3301, 591, 549, 17444, 427, 96, 4302, 4669, 121, 3274, 3, 31, 2258, 7, 17, 20231, 6, 3428, 159, 51, 31, 3430, 96, 18474, 6105, 121, 3274, 3, 31, 532, 3519, 355, 17,...
What time did bruce anstey complete in a honda 1000cc?
CREATE TABLE table_6456 ( "Race" text, "Trophy" text, "Rider(s)" text, "Machine" text, "Year" real, "Average speed" text, "Time" text )
SELECT "Time" FROM table_6456 WHERE "Machine" = 'honda 1000cc' AND "Rider(s)" = 'bruce anstey'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4389, 4834, 41, 96, 448, 3302, 121, 1499, 6, 96, 382, 29006, 121, 1499, 6, 96, 448, 23, 588, 599, 7, 61, 121, 1499, 6, 96, 329, 1836, 630, 121, 1499, 6, 96, 476, 2741, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 13368, 121, 21680, 953, 834, 4389, 4834, 549, 17444, 427, 96, 329, 1836, 630, 121, 3274, 3, 31, 31782, 5580, 75, 75, 31, 3430, 96, 448, 23, 588, 599, 7, 61, 121, 3274, 3, 31, 9052, 565, 46, 849, 63, 31, 1,...
What is the average market value with a revenue greater than 6.2, a Company of national bank of greece, and a Rank smaller than 1?
CREATE TABLE table_70117 ( "Rank" real, "Company" text, "Revenues (US$ billion)" real, "Profit (US$ billion)" real, "Assets (US$ billion)" real, "Market value (US$ billion)" real )
SELECT AVG("Market value (US$ billion)") FROM table_70117 WHERE "Revenues (US$ billion)" > '6.2' AND "Company" = 'national bank of greece' AND "Rank" < '1'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2518, 20275, 41, 96, 22557, 121, 490, 6, 96, 5890, 2837, 63, 121, 1499, 6, 96, 1649, 15098, 7, 41, 3063, 3229, 2108, 61, 121, 490, 6, 96, 23057, 155, 41, 3063, 3229, 2108...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 22572, 701, 41, 3063, 3229, 2108, 61, 8512, 21680, 953, 834, 2518, 20275, 549, 17444, 427, 96, 1649, 15098, 7, 41, 3063, 3229, 2108, 61, 121, 2490, 3, 31, 23913, 31, 3430, 96, 5890, 2837, 63, ...
When was naomi cavaday the opponent?
CREATE TABLE table_name_19 ( date VARCHAR, opponent VARCHAR )
SELECT date FROM table_name_19 WHERE opponent = "naomi cavaday"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2294, 41, 833, 584, 4280, 28027, 6, 15264, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 366, 47, 3, 29, 9, 32, 51, 23, 212, 16716, 63, 8, 15264, 58,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 833, 21680, 953, 834, 4350, 834, 2294, 549, 17444, 427, 15264, 3274, 96, 29, 9, 32, 51, 23, 212, 16716, 63, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Which league has total smaller than 284, with Sandro Mazzola league?
CREATE TABLE table_name_42 ( league INTEGER, total VARCHAR, name VARCHAR )
SELECT MIN(league) FROM table_name_42 WHERE total < 284 AND name = "sandro mazzola"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4165, 41, 5533, 3, 21342, 17966, 6, 792, 584, 4280, 28027, 6, 564, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 4073, 5533, 65, 792, 2755, 145, 2059, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 17684, 599, 29512, 61, 21680, 953, 834, 4350, 834, 4165, 549, 17444, 427, 792, 3, 2, 204, 4608, 3430, 564, 3274, 96, 7, 9, 22357, 3, 18983, 12423, 9, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Who is the second member with first member Sir Rowland Hill, BT, and a conservative second party?
CREATE TABLE table_name_3 (second_member VARCHAR, first_member VARCHAR, second_party VARCHAR)
SELECT second_member FROM table_name_3 WHERE first_member = "sir rowland hill, bt" AND second_party = "conservative"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 519, 41, 12091, 834, 12066, 584, 4280, 28027, 6, 166, 834, 12066, 584, 4280, 28027, 6, 511, 834, 8071, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 2645, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 511, 834, 12066, 21680, 953, 834, 4350, 834, 519, 549, 17444, 427, 166, 834, 12066, 3274, 96, 7, 23, 52, 7358, 40, 232, 9956, 6, 3, 115, 17, 121, 3430, 511, 834, 8071, 3274, 96, 1018, 3473, 1528, 121, 1, -100, -...
What is the lowest positioned team with 2 wins and losses greater than 13?
CREATE TABLE table_59271 ( "Position" real, "Club" text, "Games played" real, "Wins" real, "Draws" real, "Loses" real, "Goals scored" real, "Goals conceded" real, "Points" real )
SELECT MIN("Position") FROM table_59271 WHERE "Wins" = '2' AND "Loses" > '13'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3390, 2555, 536, 41, 96, 345, 32, 7, 4749, 121, 490, 6, 96, 254, 11158, 121, 1499, 6, 96, 23055, 7, 1944, 121, 490, 6, 96, 18455, 7, 121, 490, 6, 96, 308, 10936, 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, 1...
[ 3, 23143, 14196, 3, 17684, 599, 121, 345, 32, 7, 4749, 8512, 21680, 953, 834, 3390, 2555, 536, 549, 17444, 427, 96, 18455, 7, 121, 3274, 3, 31, 357, 31, 3430, 96, 434, 32, 2260, 121, 2490, 3, 31, 2368, 31, 1, -100, -100, -100, ...
Which player is a tight end with a round higher than 3?
CREATE TABLE table_5834 ( "Round" real, "Selection" text, "Name" text, "Position" text, "College" text, "Contract" text )
SELECT "Name" FROM table_5834 WHERE "Position" = 'tight end' AND "Round" > '3'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3449, 3710, 41, 96, 448, 32, 1106, 121, 490, 6, 96, 134, 15, 12252, 121, 1499, 6, 96, 23954, 121, 1499, 6, 96, 345, 32, 7, 4749, 121, 1499, 6, 96, 9939, 7883, 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, 23954, 121, 21680, 953, 834, 3449, 3710, 549, 17444, 427, 96, 345, 32, 7, 4749, 121, 3274, 3, 31, 17, 2632, 414, 31, 3430, 96, 448, 32, 1106, 121, 2490, 3, 31, 519, 31, 1, -100, -100, -100, -100, -100, -100,...
What Sprints classification has the Points classification, Mark Cavendish and Team classification, Caisse D'epargne?
CREATE TABLE table_55587 ( "Stage (Winner)" text, "General Classification" text, "Mountains Classification" text, "Points Classification" text, "Sprints classification" text, "Team Classification" text )
SELECT "Sprints classification" FROM table_55587 WHERE "Points Classification" = 'mark cavendish' AND "Team Classification" = 'caisse d''epargne'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 28803, 4225, 41, 96, 134, 6505, 41, 18455, 687, 61, 121, 1499, 6, 96, 20857, 4501, 2420, 121, 1499, 6, 96, 329, 32, 14016, 77, 7, 4501, 2420, 121, 1499, 6, 96, 22512, 7, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 134, 7260, 7, 13774, 121, 21680, 953, 834, 28803, 4225, 549, 17444, 427, 96, 22512, 7, 4501, 2420, 121, 3274, 3, 31, 3920, 9634, 727, 1273, 31, 3430, 96, 18699, 4501, 2420, 121, 3274, 3, 31, 658, 3818, 3, 26, ...
Which trainer had a time of 1:10.09 with a year less than 2009?
CREATE TABLE table_name_34 (trainer VARCHAR, year VARCHAR, time VARCHAR)
SELECT trainer FROM table_name_34 WHERE year < 2009 AND time = "1:10.09"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3710, 41, 9719, 49, 584, 4280, 28027, 6, 215, 584, 4280, 28027, 6, 97, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 8813, 141, 3, 9, 97, 13, 19520,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 8813, 21680, 953, 834, 4350, 834, 3710, 549, 17444, 427, 215, 3, 2, 2464, 3430, 97, 3274, 96, 536, 10, 10415, 4198, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Who is the head linesman at game xxxv?
CREATE TABLE table_name_66 ( head_linesman VARCHAR, game VARCHAR )
SELECT head_linesman FROM table_name_66 WHERE game = "xxxv"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3539, 41, 819, 834, 6972, 348, 584, 4280, 28027, 6, 467, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 2645, 19, 8, 819, 2356, 348, 44, 467, 3, 226, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 819, 834, 6972, 348, 21680, 953, 834, 4350, 834, 3539, 549, 17444, 427, 467, 3274, 96, 226, 19230, 208, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What was the playoff result when they finished 5th, north in the regular sesason?
CREATE TABLE table_1169 ( "Year" real, "Division" real, "League" text, "Regular Season" text, "Playoffs" text, "Open Cup" text )
SELECT "Playoffs" FROM table_1169 WHERE "Regular Season" = '5th, North'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2596, 3951, 41, 96, 476, 2741, 121, 490, 6, 96, 308, 23, 6610, 121, 490, 6, 96, 2796, 9, 5398, 121, 1499, 6, 96, 17748, 4885, 7960, 121, 1499, 6, 96, 15800, 1647, 7, 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, 15800, 1647, 7, 121, 21680, 953, 834, 2596, 3951, 549, 17444, 427, 96, 17748, 4885, 7960, 121, 3274, 3, 31, 755, 189, 6, 1117, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
what track was next after all i got ?
CREATE TABLE table_203_701 ( id number, "#" number, "title" text, "featured guest(s)" text, "producer(s)" text, "length" text )
SELECT "title" FROM table_203_701 WHERE "#" = (SELECT "#" FROM table_203_701 WHERE "title" = '"all i got"') + 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 23330, 834, 2518, 536, 41, 3, 23, 26, 381, 6, 96, 4663, 121, 381, 6, 96, 21869, 121, 1499, 6, 96, 30844, 26, 3886, 599, 7, 61, 121, 1499, 6, 96, 1409, 4817, 49, 599, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 21869, 121, 21680, 953, 834, 23330, 834, 2518, 536, 549, 17444, 427, 96, 4663, 121, 3274, 41, 23143, 14196, 96, 4663, 121, 21680, 953, 834, 23330, 834, 2518, 536, 549, 17444, 427, 96, 21869, 121, 3274, 3, 31, 12...
How many teams that played won 0 games?
CREATE TABLE table_20760802_1 (played VARCHAR, won VARCHAR)
SELECT played FROM table_20760802_1 WHERE won = "0"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1755, 28212, 2079, 357, 834, 536, 41, 4895, 15, 26, 584, 4280, 28027, 6, 751, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 2323, 24, 1944, 751, 3, 632, 10...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1944, 21680, 953, 834, 1755, 28212, 2079, 357, 834, 536, 549, 17444, 427, 751, 3274, 96, 632, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What is the average and maximum number of hours students who made the team practiced?
CREATE TABLE college ( cname text, state text, enr number ) CREATE TABLE tryout ( pid number, cname text, ppos text, decision text ) CREATE TABLE player ( pid number, pname text, ycard text, hs number )
SELECT AVG(T1.hs), MAX(T1.hs) FROM player AS T1 JOIN tryout AS T2 ON T1.pid = T2.pid WHERE T2.decision = 'yes'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1900, 41, 3, 75, 4350, 1499, 6, 538, 1499, 6, 3, 35, 52, 381, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 653, 670, 41, 3, 12417, 381, 6, 3, 75, 4350, 1499, 6, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 71, 17217, 599, 382, 5411, 107, 7, 201, 4800, 4, 599, 382, 5411, 107, 7, 61, 21680, 1959, 6157, 332, 536, 3, 15355, 3162, 653, 670, 6157, 332, 357, 9191, 332, 5411, 12417, 3274, 332, 4416, 12417, 549, 17444, 427, ...
Which tournament had an outcome of winner, a hard surface, and happened on August 26, 2006?
CREATE TABLE table_7350 ( "Outcome" text, "Date" text, "Tournament" text, "Surface" text, "Opponent in the final" text, "Score in the final" text )
SELECT "Tournament" FROM table_7350 WHERE "Outcome" = 'winner' AND "Surface" = 'hard' AND "Date" = 'august 26, 2006'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4552, 1752, 41, 96, 15767, 287, 15, 121, 1499, 6, 96, 308, 342, 121, 1499, 6, 96, 382, 1211, 20205, 17, 121, 1499, 6, 96, 134, 450, 4861, 121, 1499, 6, 96, 667, 102, 99...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1211, 20205, 17, 121, 21680, 953, 834, 4552, 1752, 549, 17444, 427, 96, 15767, 287, 15, 121, 3274, 3, 31, 3757, 687, 31, 3430, 96, 134, 450, 4861, 121, 3274, 3, 31, 5651, 31, 3430, 96, 308, 342, 121, 32...
Give me a bar chart for the number of services of each services, could you display from low to high by the y axis?
CREATE TABLE station ( id int, network_name text, services text, local_authority text ) CREATE TABLE train ( id int, train_number int, name text, origin text, destination text, time text, interval text ) CREATE TABLE route ( train_id int, station_id int ) CREATE TABLE weekly_weather ( station_id int, day_of_week text, high_temperature int, low_temperature int, precipitation real, wind_speed_mph int )
SELECT services, COUNT(services) FROM station GROUP BY services ORDER BY COUNT(services)
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 2478, 41, 3, 23, 26, 16, 17, 6, 1229, 834, 4350, 1499, 6, 364, 1499, 6, 415, 834, 17415, 485, 1499, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 2412, 41, 3, 23, 2...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 364, 6, 2847, 17161, 599, 5114, 7, 61, 21680, 2478, 350, 4630, 6880, 272, 476, 364, 4674, 11300, 272, 476, 2847, 17161, 599, 5114, 7, 61, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
For those records from the products and each product's manufacturer, visualize a bar chart about the distribution of founder and the average of price , and group by attribute founder, list in ascending by the total number.
CREATE TABLE Manufacturers ( Code INTEGER, Name VARCHAR(255), Headquarter VARCHAR(255), Founder VARCHAR(255), Revenue REAL ) CREATE TABLE Products ( Code INTEGER, Name VARCHAR(255), Price DECIMAL, Manufacturer INTEGER )
SELECT Founder, AVG(Price) FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Founder ORDER BY AVG(Price)
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 15248, 7, 41, 3636, 3, 21342, 17966, 6, 5570, 584, 4280, 28027, 599, 25502, 201, 3642, 19973, 584, 4280, 28027, 599, 25502, 201, 3, 19145, 584, 4280, 28027, 599, 25502, 201, 19764, 17833...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 19145, 6, 71, 17217, 599, 345, 4920, 61, 21680, 7554, 6157, 332, 536, 3, 15355, 3162, 15248, 7, 6157, 332, 357, 9191, 332, 5411, 7296, 76, 8717, 450, 49, 3274, 332, 4416, 22737, 350, 4630, 6880, 272, 476, 3, 19...
What is the score of New York team before game 61?
CREATE TABLE table_name_63 ( score VARCHAR, game VARCHAR, team VARCHAR )
SELECT score FROM table_name_63 WHERE game < 61 AND team = "new york"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3891, 41, 2604, 584, 4280, 28027, 6, 467, 584, 4280, 28027, 6, 372, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 2604, 13, 368, 1060, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2604, 21680, 953, 834, 4350, 834, 3891, 549, 17444, 427, 467, 3, 2, 3, 4241, 3430, 372, 3274, 96, 5534, 25453, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
In what week was the December 21, 1969 game?
CREATE TABLE table_65119 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Attendance" real )
SELECT AVG("Week") FROM table_65119 WHERE "Date" = 'december 21, 1969'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4122, 19993, 41, 96, 518, 10266, 121, 490, 6, 96, 308, 342, 121, 1499, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 20119, 121, 1499, 6, 96, 188, 17, 324, 26, 663, 121, 490...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0...
[ 3, 23143, 14196, 71, 17217, 599, 121, 518, 10266, 8512, 21680, 953, 834, 4122, 19993, 549, 17444, 427, 96, 308, 342, 121, 3274, 3, 31, 221, 75, 18247, 12026, 17185, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which Little League World Series took place in Parsippany?
CREATE TABLE table_80020 ( "Year" real, "Champion" text, "City" text, "LLWS" text, "Record" text )
SELECT "LLWS" FROM table_80020 WHERE "City" = 'parsippany'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 6192, 1755, 41, 96, 476, 2741, 121, 490, 6, 96, 254, 1483, 12364, 121, 1499, 6, 96, 254, 485, 121, 1499, 6, 96, 10376, 8439, 121, 1499, 6, 96, 1649, 7621, 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, 10376, 8439, 121, 21680, 953, 834, 6192, 1755, 549, 17444, 427, 96, 254, 485, 121, 3274, 3, 31, 1893, 7, 23, 1572, 6820, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Which Country has a Label of Toshiba-emi and a Catalog of vjcp-68403?
CREATE TABLE table_name_95 (country VARCHAR, label VARCHAR, catalog VARCHAR)
SELECT country FROM table_name_95 WHERE label = "toshiba-emi" AND catalog = "vjcp-68403"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3301, 41, 17529, 584, 4280, 28027, 6, 3783, 584, 4280, 28027, 6, 10173, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 6993, 65, 3, 9, 16229, 13, 30148...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 684, 21680, 953, 834, 4350, 834, 3301, 549, 17444, 427, 3783, 3274, 96, 235, 5605, 115, 9, 18, 15, 51, 23, 121, 3430, 10173, 3274, 96, 208, 354, 75, 102, 5783, 26311, 519, 121, 1, -100, -100, -100, -100, -100, -10...
For those records from the products and each product's manufacturer, return a bar chart about the distribution of founder and the sum of revenue , and group by attribute founder, and display Y-axis in desc order.
CREATE TABLE Products ( Code INTEGER, Name VARCHAR(255), Price DECIMAL, Manufacturer INTEGER ) CREATE TABLE Manufacturers ( Code INTEGER, Name VARCHAR(255), Headquarter VARCHAR(255), Founder VARCHAR(255), Revenue REAL )
SELECT Founder, SUM(Revenue) FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Founder ORDER BY SUM(Revenue) DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7554, 41, 3636, 3, 21342, 17966, 6, 5570, 584, 4280, 28027, 599, 25502, 201, 5312, 3396, 254, 26330, 434, 6, 15248, 3, 21342, 17966, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 19145, 6, 180, 6122, 599, 1649, 15098, 61, 21680, 7554, 6157, 332, 536, 3, 15355, 3162, 15248, 7, 6157, 332, 357, 9191, 332, 5411, 7296, 76, 8717, 450, 49, 3274, 332, 4416, 22737, 350, 4630, 6880, 272, 476, 3, ...
What was Dick Hyland's conv?
CREATE TABLE table_54680 ( "Player" text, "Tries" text, "Conv" text, "Venue" text, "Date" text )
SELECT "Conv" FROM table_54680 WHERE "Player" = 'dick hyland'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 755, 4448, 2079, 41, 96, 15800, 49, 121, 1499, 6, 96, 382, 2593, 121, 1499, 6, 96, 4302, 208, 121, 1499, 6, 96, 553, 35, 76, 15, 121, 1499, 6, 96, 308, 342, 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, 0...
[ 3, 23143, 14196, 96, 4302, 208, 121, 21680, 953, 834, 755, 4448, 2079, 549, 17444, 427, 96, 15800, 49, 121, 3274, 3, 31, 26, 3142, 3, 107, 28900, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the earliest round that Donald Mason had a pick larger than 114?
CREATE TABLE table_75084 ( "Round" real, "Pick" real, "Player" text, "Nationality" text, "School/Club Team" text )
SELECT MIN("Round") FROM table_75084 WHERE "Player" = 'donald mason' AND "Pick" > '114'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 9979, 4608, 41, 96, 448, 32, 1106, 121, 490, 6, 96, 345, 3142, 121, 490, 6, 96, 15800, 49, 121, 1499, 6, 96, 24732, 485, 121, 1499, 6, 96, 29364, 87, 254, 11158, 2271, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 17684, 599, 121, 448, 32, 1106, 8512, 21680, 953, 834, 9979, 4608, 549, 17444, 427, 96, 15800, 49, 121, 3274, 3, 31, 26, 9533, 26, 954, 739, 31, 3430, 96, 345, 3142, 121, 2490, 3, 31, 18959, 31, 1, -100, -100...
how many patients whose discharge location is home and admission year is less than 2127?
CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text ) CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text ) CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob text, gender text, language text, religion text, admission_type text, days_stay text, insurance text, ethnicity text, expire_flag text, admission_location text, discharge_location text, diagnosis text, dod text, dob_year text, dod_year text, admittime text, dischtime text, admityear text )
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.discharge_location = "HOME" AND demographic.admityear < "2127"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 4293, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 3, 447, 26, 1298, 834, 4978, 1499, 6, 710, 834, 21869, 1499, 6, 307, 834, 21869, 1499, 3, 61, 3, 32102, 32103...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 549, 17444, 427, 14798, 5, 26, 159, 7993, 834, 14836, 3274, 96, 6299, 4369, 121, 3430, 14798, 5, 20466, 17, 1201, 3, 2, 96,...
What is the hometown for a college in Wisconsin?
CREATE TABLE table_name_43 ( hometown VARCHAR, college VARCHAR )
SELECT hometown FROM table_name_43 WHERE college = "wisconsin"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4906, 41, 22295, 584, 4280, 28027, 6, 1900, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 22295, 21, 3, 9, 1900, 16, 10212, 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, 22295, 21680, 953, 834, 4350, 834, 4906, 549, 17444, 427, 1900, 3274, 96, 210, 159, 8056, 77, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What country has a score of 73-72-67=212?
CREATE TABLE table_name_14 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_14 WHERE score = 73 - 72 - 67 = 212
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2534, 41, 17529, 584, 4280, 28027, 6, 2604, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 684, 65, 3, 9, 2604, 13, 3, 4552, 18, 5865, 18, 3708, 2423,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 684, 21680, 953, 834, 4350, 834, 2534, 549, 17444, 427, 2604, 3274, 3, 4552, 3, 18, 9455, 3, 18, 3, 3708, 3274, 3, 24837, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What ordered has helena as the name?
CREATE TABLE table_name_87 (ordered VARCHAR, name VARCHAR)
SELECT ordered FROM table_name_87 WHERE name = "helena"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4225, 41, 9397, 15, 26, 584, 4280, 28027, 6, 564, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 5563, 65, 3, 88, 40, 35, 9, 38, 8, 564, 58, 1, 0,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 5563, 21680, 953, 834, 4350, 834, 4225, 549, 17444, 427, 564, 3274, 96, 88, 40, 35, 9, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Name the score for number 4
CREATE TABLE table_16967990_1 ( score VARCHAR, _number VARCHAR )
SELECT score FROM table_16967990_1 WHERE _number = "4"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 27096, 3708, 26901, 834, 536, 41, 2604, 584, 4280, 28027, 6, 3, 834, 5525, 1152, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 5570, 8, 2604, 21, 381, 314, 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, 2604, 21680, 953, 834, 27096, 3708, 26901, 834, 536, 549, 17444, 427, 3, 834, 5525, 1152, 3274, 96, 20364, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
subject has adequate cognitive
CREATE TABLE table_train_136 ( "id" int, "gender" string, "pregnancy_or_lactation" bool, "heart_disease" bool, "adequate_cognitive" bool, "renal_disease" bool, "allergy_to_solifenacin" bool, "systemic_illness" bool, "liver_disease" bool, "allergy_to_donepezil" bool, "seizure_disorder" bool, "poorly_controlled_diabetes" bool, "NOUSE" float )
SELECT * FROM table_train_136 WHERE adequate_cognitive = 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 9719, 834, 23459, 41, 96, 23, 26, 121, 16, 17, 6, 96, 122, 3868, 121, 6108, 6, 96, 2026, 11260, 11298, 834, 127, 834, 9700, 6821, 121, 3, 12840, 40, 6, 96, 88, 1408, 83...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 23459, 549, 17444, 427, 9289, 834, 75, 12905, 3268, 3274, 209, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is the value for INT YDS, when the Team is New Orleans Saints, and when the value for Sacks is greater than 0, and when the vale for Solo is 71?
CREATE TABLE table_name_68 ( int_yds VARCHAR, solo VARCHAR, team VARCHAR, sacks VARCHAR )
SELECT int_yds FROM table_name_68 WHERE team = "new orleans saints" AND sacks > 0 AND solo = 71
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3651, 41, 16, 17, 834, 63, 26, 7, 584, 4280, 28027, 6, 6729, 584, 4280, 28027, 6, 372, 584, 4280, 28027, 6, 3, 15525, 7, 584, 4280, 28027, 3, 61, 3, 32102, 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, 16, 17, 834, 63, 26, 7, 21680, 953, 834, 4350, 834, 3651, 549, 17444, 427, 372, 3274, 96, 5534, 42, 109, 3247, 15528, 7, 121, 3430, 3, 15525, 7, 2490, 3, 632, 3430, 6729, 3274, 3, 4450, 1, -100, -100, -100, -100...
What is the lowest value for Draws, when Losses is "0", and when Byes is greater than 4?
CREATE TABLE table_name_12 (draws INTEGER, losses VARCHAR, byes VARCHAR)
SELECT MIN(draws) FROM table_name_12 WHERE losses = 0 AND byes > 4
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2122, 41, 19489, 7, 3, 21342, 17966, 6, 8467, 584, 4280, 28027, 6, 57, 15, 7, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 7402, 701, 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, 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, 19489, 7, 61, 21680, 953, 834, 4350, 834, 2122, 549, 17444, 427, 8467, 3274, 3, 632, 3430, 57, 15, 7, 2490, 314, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
For each tourist attraction, return its name and the date when the tourists named Vincent or Vivian visited there.
CREATE TABLE locations ( location_id number, location_name text, address text, other_details text ) CREATE TABLE museums ( museum_id number, museum_details text ) CREATE TABLE staff ( staff_id number, tourist_attraction_id number, name text, other_details text ) CREATE TABLE features ( feature_id number, feature_details text ) CREATE TABLE shops ( shop_id number, shop_details text ) CREATE TABLE tourist_attractions ( tourist_attraction_id number, attraction_type_code text, location_id number, how_to_get_there text, name text, description text, opening_hours text, other_details text ) CREATE TABLE photos ( photo_id number, tourist_attraction_id number, name text, description text, filename text, other_details text ) CREATE TABLE ref_hotel_star_ratings ( star_rating_code text, star_rating_description text ) CREATE TABLE royal_family ( royal_family_id number, royal_family_details text ) CREATE TABLE hotels ( hotel_id number, star_rating_code text, pets_allowed_yn text, price_range number, other_hotel_details text ) CREATE TABLE tourist_attraction_features ( tourist_attraction_id number, feature_id number ) CREATE TABLE ref_attraction_types ( attraction_type_code text, attraction_type_description text ) CREATE TABLE street_markets ( market_id number, market_details text ) CREATE TABLE visitors ( tourist_id number, tourist_details text ) CREATE TABLE theme_parks ( theme_park_id number, theme_park_details text ) CREATE TABLE visits ( visit_id number, tourist_attraction_id number, tourist_id number, visit_date time, visit_details text )
SELECT T1.name, T3.visit_date FROM tourist_attractions AS T1 JOIN visitors AS T2 JOIN visits AS T3 ON T1.tourist_attraction_id = T3.tourist_attraction_id AND T2.tourist_id = T3.tourist_id WHERE T2.tourist_details = "Vincent" OR T2.tourist_details = "Vivian"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 3248, 41, 1128, 834, 23, 26, 381, 6, 1128, 834, 4350, 1499, 6, 1115, 1499, 6, 119, 834, 221, 5756, 7, 1499, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 17385, 41, 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, 5411, 4350, 6, 332, 5787, 3466, 155, 834, 5522, 21680, 8548, 834, 144, 10559, 7, 6157, 332, 536, 3, 15355, 3162, 2692, 6157, 332, 357, 3, 15355, 3162, 8305, 6157, 332, 519, 9191, 332, 5411, 17, 1211, 343, 834, ...
What is the Venue of the 2002 World Cup Qualification?
CREATE TABLE table_12282 ( "Date" text, "Venue" text, "Score" text, "Result" text, "Competition" text )
SELECT "Venue" FROM table_12282 WHERE "Competition" = '2002 world cup qualification'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 20889, 4613, 41, 96, 308, 342, 121, 1499, 6, 96, 553, 35, 76, 15, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 20119, 121, 1499, 6, 96, 5890, 4995, 4749, 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, 0...
[ 3, 23143, 14196, 96, 553, 35, 76, 15, 121, 21680, 953, 834, 20889, 4613, 549, 17444, 427, 96, 5890, 4995, 4749, 121, 3274, 3, 31, 24898, 296, 4119, 15513, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...