NATURAL_LANG
stringlengths
0
446
SCHEMA
stringlengths
27
2.21k
SQL
stringlengths
18
453
input_ids
list
attention_mask
list
labels
list
What are the job titles, and range of salaries for jobs with maximum salary between 12000 and 18000. Plot them as bar chart.
CREATE TABLE locations ( LOCATION_ID decimal(4,0), STREET_ADDRESS varchar(40), POSTAL_CODE varchar(12), CITY varchar(30), STATE_PROVINCE varchar(25), COUNTRY_ID varchar(2) ) CREATE TABLE departments ( DEPARTMENT_ID decimal(4,0), DEPARTMENT_NAME varchar(30), MANAGER_ID decimal(6,0), ...
SELECT JOB_TITLE, MAX_SALARY - MIN_SALARY FROM jobs WHERE MAX_SALARY BETWEEN 12000 AND 18000
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 3248, 41, 301, 5618, 8015, 834, 4309, 7908, 1982, 599, 8525, 632, 201, 3, 13733, 26418, 834, 24604, 12200, 134, 3, 4331, 4059, 599, 2445, 201, 3, 16034, 16359, 834, 5911, 5596, 3, 4331...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 446, 10539, 834, 382, 3177, 3765, 6, 4800, 4, 834, 134, 4090, 24721, 3, 18, 3, 17684, 834, 134, 4090, 24721, 21680, 2476, 549, 17444, 427, 4800, 4, 834, 134, 4090, 24721, 272, 7969, 518, 23394, 586, 2313, 3430, 507,...
What is the type of loan and the transfer fee loan?
CREATE TABLE table_43984 ( "Nat." text, "Name" text, "Moving to" text, "Type" text, "Transfer window" text, "Transfer fee" text )
SELECT "Nat." FROM table_43984 WHERE "Type" = 'loan' AND "Transfer fee" = 'loan'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 591, 3288, 4608, 41, 96, 567, 144, 535, 1499, 6, 96, 23954, 121, 1499, 6, 96, 329, 32, 3745, 12, 121, 1499, 6, 96, 25160, 121, 1499, 6, 96, 18474, 1010, 2034, 121, 1499, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 567, 144, 535, 21680, 953, 834, 591, 3288, 4608, 549, 17444, 427, 96, 25160, 121, 3274, 3, 31, 40, 32, 152, 31, 3430, 96, 18474, 1010, 2572, 121, 3274, 3, 31, 40, 32, 152, 31, 1, -100, -100, -100, -100, -100...
What is the outgoing manager for the team kas mpa a?
CREATE TABLE table_29231 ( "Team" text, "Outgoing manager" text, "Manner of departure" text, "Date of vacancy" text, "Replaced by" text, "Date of appointment" text )
SELECT "Outgoing manager" FROM table_29231 WHERE "Team" = 'Kasımpaşa'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3166, 357, 3341, 41, 96, 18699, 121, 1499, 6, 96, 15767, 9545, 2743, 121, 1499, 6, 96, 7296, 687, 13, 12028, 121, 1499, 6, 96, 308, 342, 13, 3, 29685, 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, 15767, 9545, 2743, 121, 21680, 953, 834, 3166, 357, 3341, 549, 17444, 427, 96, 18699, 121, 3274, 3, 31, 439, 9, 7, 2, 1167, 9, 1314, 9, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
when is the hire date for those employees whose first name does not containing the letter M, and count them by a bar chart, I want to display in ascending by the Y-axis.
CREATE TABLE regions ( REGION_ID decimal(5,0), REGION_NAME varchar(25) ) CREATE TABLE locations ( LOCATION_ID decimal(4,0), STREET_ADDRESS varchar(40), POSTAL_CODE varchar(12), CITY varchar(30), STATE_PROVINCE varchar(25), COUNTRY_ID varchar(2) ) CREATE TABLE job_history ( EMPLOYEE...
SELECT HIRE_DATE, COUNT(HIRE_DATE) FROM employees WHERE NOT FIRST_NAME LIKE '%M%' ORDER BY COUNT(HIRE_DATE)
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 6266, 41, 4083, 517, 9215, 834, 4309, 7908, 1982, 599, 11116, 632, 201, 4083, 517, 9215, 834, 567, 17683, 3, 4331, 4059, 599, 1828, 61, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 454, 14132, 834, 308, 6048, 6, 2847, 17161, 599, 566, 14132, 834, 308, 6048, 61, 21680, 1652, 549, 17444, 427, 4486, 30085, 834, 567, 17683, 8729, 9914, 3, 31, 1454, 329, 1454, 31, 4674, 11300, 272, 476, 2847, 17161, ...
What European competitions have a tier of 2 and a position of 3?
CREATE TABLE table_name_48 ( european_competitions VARCHAR, tier VARCHAR, pos VARCHAR )
SELECT european_competitions FROM table_name_48 WHERE tier = 2 AND pos = 3
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3707, 41, 14864, 834, 287, 19427, 2865, 584, 4280, 28027, 6, 3, 3276, 584, 4280, 28027, 6, 3, 2748, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0...
[ 3, 23143, 14196, 14864, 834, 287, 19427, 2865, 21680, 953, 834, 4350, 834, 3707, 549, 17444, 427, 3, 3276, 3274, 204, 3430, 3, 2748, 3274, 220, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What record has c. j. miles (20) in the high points?
CREATE TABLE table_27734286_1 (record VARCHAR, high_points VARCHAR)
SELECT record FROM table_27734286_1 WHERE high_points = "C. J. Miles (20)"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2555, 4552, 4165, 3840, 834, 536, 41, 60, 7621, 584, 4280, 28027, 6, 306, 834, 2700, 7, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 1368, 65, 3, 75, 5, 3, 3...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1368, 21680, 953, 834, 2555, 4552, 4165, 3840, 834, 536, 549, 17444, 427, 306, 834, 2700, 7, 3274, 96, 254, 5, 446, 5, 11705, 7, 17543, 61, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
tell me the number of patients diagnosed with gi obstruction / ileus until 2104?
CREATE TABLE vitalperiodic ( vitalperiodicid number, patientunitstayid number, temperature number, sao2 number, heartrate number, respiration number, systemicsystolic number, systemicdiastolic number, systemicmean number, observationtime time ) CREATE TABLE patient ( uniquep...
SELECT COUNT(DISTINCT patient.uniquepid) FROM patient WHERE patient.patientunitstayid IN (SELECT diagnosis.patientunitstayid FROM diagnosis WHERE diagnosis.diagnosisname = 'gi obstruction / ileus' AND STRFTIME('%y', diagnosis.diagnosistime) <= '2104')
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 3362, 4267, 32, 4370, 41, 3362, 4267, 32, 26, 1294, 26, 381, 6, 1868, 15129, 21545, 23, 26, 381, 6, 2912, 381, 6, 3, 7, 9, 32, 357, 381, 6, 842, 2206, 381, 6, 14114, 257, 381, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 1868, 5, 202, 1495, 12417, 61, 21680, 1868, 549, 17444, 427, 1868, 5, 10061, 15129, 21545, 23, 26, 3388, 41, 23143, 14196, 8209, 5, 10061, 15129, 21545, 23, 26, 21680, 8209, 549, ...
Give me the trend of how many receipt date by receipt date, and could you show in asc by the receipt_date?
CREATE TABLE Circulation_History ( document_id INTEGER, draft_number INTEGER, copy_number INTEGER, employee_id INTEGER ) CREATE TABLE Roles ( role_code CHAR(15), role_description VARCHAR(255) ) CREATE TABLE Documents_Mailed ( document_id INTEGER, mailed_to_address_id INTEGER, maili...
SELECT receipt_date, COUNT(receipt_date) FROM Documents ORDER BY receipt_date
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 13054, 1497, 257, 834, 12146, 13029, 41, 1708, 834, 23, 26, 3, 21342, 17966, 6, 6488, 834, 5525, 1152, 3, 21342, 17966, 6, 2405, 834, 5525, 1152, 3, 21342, 17966, 6, 3490, 834, 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, 8958, 834, 5522, 6, 2847, 17161, 599, 60, 565, 23, 102, 17, 834, 5522, 61, 21680, 11167, 7, 4674, 11300, 272, 476, 8958, 834, 5522, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What was the date of the game that had a loss of Johnson (9-8)?
CREATE TABLE table_36313 ( "Date" text, "Opponent" text, "Score" text, "Loss" text, "Attendance" real, "Record" text )
SELECT "Date" FROM table_36313 WHERE "Loss" = 'johnson (9-8)'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3420, 519, 2368, 41, 96, 308, 342, 121, 1499, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 434, 32, 7, 7, 121, 1499, 6, 96, 188, 17, 324, 26,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 308, 342, 121, 21680, 953, 834, 3420, 519, 2368, 549, 17444, 427, 96, 434, 32, 7, 7, 121, 3274, 3, 31, 27341, 739, 14156, 18, 13520, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
return me the references of ' Making database systems usable ' .
CREATE TABLE conference ( cid int, homepage varchar, name varchar ) CREATE TABLE writes ( aid int, pid int ) CREATE TABLE cite ( cited int, citing int ) CREATE TABLE domain_publication ( did int, pid int ) CREATE TABLE publication_keyword ( kid int, pid int ) CREATE TABL...
SELECT reference_num FROM publication WHERE title = 'Making database systems usable'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 2542, 41, 3, 10812, 16, 17, 6, 22844, 3, 4331, 4059, 6, 564, 3, 4331, 4059, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 11858, 41, 3052, 16, 17, 6, 3, 12417, 16, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2848, 834, 5525, 21680, 5707, 549, 17444, 427, 2233, 3274, 3, 31, 329, 9, 1765, 3501, 1002, 178, 179, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
count the number of patients whose diagnosis short title is retain plastic fragments.
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, ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE diagnoses.short_title = "Retain plastic fragments"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7690, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 2118, 23, 26, 1499, 6, 5059, 715, 1499, 6, 5692, 1499, 6, 701, 834, 15129, 1499, 6, 3783, 1499, 6, 5798, 1499...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 18730, 7, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 18730, 7, 5, 8399, 51, 834, 23, 26, 5...
how many players have a total above 10 ?
CREATE TABLE table_204_525 ( id number, "rank" number, "player" text, "county" text, "tally" text, "total" number, "opposition" text )
SELECT COUNT(DISTINCT "player") FROM table_204_525 WHERE "total" > 10
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26363, 834, 755, 1828, 41, 3, 23, 26, 381, 6, 96, 6254, 121, 381, 6, 96, 20846, 121, 1499, 6, 96, 13362, 63, 121, 1499, 6, 96, 17, 1427, 121, 1499, 6, 96, 235, 1947, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 96, 20846, 8512, 21680, 953, 834, 26363, 834, 755, 1828, 549, 17444, 427, 96, 235, 1947, 121, 2490, 335, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What capacity opened lessed than 1937 and is located in the region of champagne-ardenne?
CREATE TABLE table_name_95 ( capacity VARCHAR, opened VARCHAR, region VARCHAR )
SELECT capacity FROM table_name_95 WHERE opened < 1937 AND region = "champagne-ardenne"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3301, 41, 2614, 584, 4280, 28027, 6, 2946, 584, 4280, 28027, 6, 1719, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 2614, 2946, 110, 3843, 145, 2745...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2614, 21680, 953, 834, 4350, 834, 3301, 549, 17444, 427, 2946, 3, 2, 27456, 3430, 1719, 3274, 96, 17788, 102, 11624, 18, 986, 5990, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Which Date has a Set 1 of 21 25?
CREATE TABLE table_name_31 ( date VARCHAR, set_1 VARCHAR )
SELECT date FROM table_name_31 WHERE set_1 = "21–25"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3341, 41, 833, 584, 4280, 28027, 6, 356, 834, 536, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 4073, 7678, 65, 3, 9, 2821, 209, 13, 1401, 944, 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, 4350, 834, 3341, 549, 17444, 427, 356, 834, 536, 3274, 96, 2658, 104, 1828, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
When itogon, benguet is the city/municipality and 1st class is the income classification how many measurements of population in 2010?
CREATE TABLE table_29289372_1 ( population__2010_ VARCHAR, income_classification VARCHAR, city_municipality VARCHAR )
SELECT COUNT(population__2010_) FROM table_29289372_1 WHERE income_classification = "1st Class" AND city_municipality = "Itogon, Benguet"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3166, 2577, 4271, 5865, 834, 536, 41, 2074, 834, 834, 14926, 834, 584, 4280, 28027, 6, 2055, 834, 4057, 2420, 584, 4280, 28027, 6, 690, 834, 11760, 3389, 10355, 584, 4280, 28...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 9791, 7830, 834, 834, 14926, 834, 61, 21680, 953, 834, 3166, 2577, 4271, 5865, 834, 536, 549, 17444, 427, 2055, 834, 4057, 2420, 3274, 96, 536, 7, 17, 4501, 121, 3430, 690, 834, 11760, 3389, 10355, ...
Name the Outcome which has a Score in the final of 4 6, 4 6 on october 21, 1990?
CREATE TABLE table_45729 ( "Outcome" text, "Date" text, "Tournament" text, "Surface" text, "Partner" text, "Opponents in the final" text, "Score in the final" text )
SELECT "Outcome" FROM table_45729 WHERE "Score in the final" = '4–6, 4–6' AND "Date" = 'october 21, 1990'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 591, 3436, 3166, 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, 13725, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 15767, 287, 15, 121, 21680, 953, 834, 591, 3436, 3166, 549, 17444, 427, 96, 134, 9022, 16, 8, 804, 121, 3274, 3, 31, 591, 104, 11071, 314, 104, 948, 31, 3430, 96, 308, 342, 121, 3274, 3, 31, 32, 75, 235, 1...
how many patients whose primary disease is overdose and admission year is less than 2184?
CREATE TABLE lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text ) CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE diagnoses ( ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "OVERDOSE" AND demographic.admityear < "2184"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7690, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 2118, 23, 26, 1499, 6, 5059, 715, 1499, 6, 5692, 1499, 6, 701, 834, 15129, 1499, 6, 3783, 1499, 6, 5798, 1499...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 549, 17444, 427, 14798, 5, 25930, 4844, 159, 3274, 96, 23288, 308, 22177, 121, 3430, 14798, 5, 20466, 17, 1201, 3, 2, 96, 2...
How many weeks ended in a result of L 20-10?
CREATE TABLE table_33180 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Attendance" text )
SELECT COUNT("Week") FROM table_33180 WHERE "Result" = 'l 20-10'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4201, 20829, 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, 149...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 518, 10266, 8512, 21680, 953, 834, 4201, 20829, 549, 17444, 427, 96, 20119, 121, 3274, 3, 31, 40, 460, 4536, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
who directed and produced 176452?
CREATE TABLE table_26561498_1 ( directed_by VARCHAR, production_code VARCHAR )
SELECT directed_by FROM table_26561498_1 WHERE production_code = 176452
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2688, 4834, 2534, 3916, 834, 536, 41, 6640, 834, 969, 584, 4280, 28027, 6, 999, 834, 4978, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 113, 6640, 11, 2546, 1003, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 6640, 834, 969, 21680, 953, 834, 2688, 4834, 2534, 3916, 834, 536, 549, 17444, 427, 999, 834, 4978, 3274, 1003, 4389, 5373, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is every number for the hometown of Canton, Illinois?
CREATE TABLE table_22824297_1 ( no VARCHAR, hometown VARCHAR )
SELECT no FROM table_22824297_1 WHERE hometown = "Canton, Illinois"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2884, 4613, 4165, 4327, 834, 536, 41, 150, 584, 4280, 28027, 6, 22295, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 334, 381, 21, 8, 22295, 13, 1336, 69...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 150, 21680, 953, 834, 2884, 4613, 4165, 4327, 834, 536, 549, 17444, 427, 22295, 3274, 96, 254, 9, 6992, 6, 7659, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What was the away team score when Richmond was the home team?
CREATE TABLE table_4682 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Away team score" FROM table_4682 WHERE "Home team" = 'richmond'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4448, 4613, 41, 96, 19040, 372, 121, 1499, 6, 96, 19040, 372, 2604, 121, 1499, 6, 96, 188, 1343, 372, 121, 1499, 6, 96, 188, 1343, 372, 2604, 121, 1499, 6, 96, 553, 35, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 188, 1343, 372, 2604, 121, 21680, 953, 834, 4448, 4613, 549, 17444, 427, 96, 19040, 372, 121, 3274, 3, 31, 3723, 6764, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Name the number of high rebounds for april 21
CREATE TABLE table_17621978_11 (high_rebounds VARCHAR, date VARCHAR)
SELECT COUNT(high_rebounds) FROM table_17621978_11 WHERE date = "April 21"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26782, 2658, 21441, 834, 2596, 41, 6739, 834, 23768, 584, 4280, 28027, 6, 833, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 5570, 8, 381, 13, 306, 3, 23768, 21, 3, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 6739, 834, 23768, 61, 21680, 953, 834, 26782, 2658, 21441, 834, 2596, 549, 17444, 427, 833, 3274, 96, 23323, 1401, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the Style of the First Performance of Billy Elliot on 15 November 2007?
CREATE TABLE table_name_50 (style VARCHAR, first_performance VARCHAR)
SELECT style FROM table_name_50 WHERE first_performance = "15 november 2007"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1752, 41, 4084, 584, 4280, 28027, 6, 166, 834, 18558, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 7936, 13, 8, 1485, 8233, 13, 17724, 15334, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 869, 21680, 953, 834, 4350, 834, 1752, 549, 17444, 427, 166, 834, 18558, 3274, 96, 1808, 3, 5326, 18247, 4101, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What's the margin of victory during the Pocono Northeast Classic?
CREATE TABLE table_name_55 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_55 WHERE tournament = "pocono northeast classic"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3769, 41, 1635, 122, 77, 834, 858, 834, 7287, 10972, 584, 4280, 28027, 6, 5892, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 31, 7, 8, 6346, 13, 622...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 6346, 834, 858, 834, 7287, 10972, 21680, 953, 834, 4350, 834, 3769, 549, 17444, 427, 5892, 3274, 96, 10496, 106, 32, 25806, 2431, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What internet explorer has 1.67% as the opera, with 2012 q1 as the period?
CREATE TABLE table_79298 ( "Period" text, "Internet Explorer" text, "Firefox" text, "Chrome" text, "Safari" text, "Opera" text, "Other" text )
SELECT "Internet Explorer" FROM table_79298 WHERE "Opera" = '1.67%' AND "Period" = '2012 q1'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4440, 357, 3916, 41, 96, 12988, 23, 32, 26, 121, 1499, 6, 96, 22912, 15762, 121, 1499, 6, 96, 3183, 60, 20400, 121, 1499, 6, 96, 3541, 11956, 121, 1499, 6, 96, 134, 9, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 22912, 15762, 121, 21680, 953, 834, 4440, 357, 3916, 549, 17444, 427, 96, 667, 883, 9, 121, 3274, 3, 31, 15062, 6170, 31, 3430, 96, 12988, 23, 32, 26, 121, 3274, 3, 31, 12172, 3, 1824, 536, 31, 1, -100, -100...
Which ground's round was 33?
CREATE TABLE table_name_17 ( ground VARCHAR, round VARCHAR )
SELECT ground FROM table_name_17 WHERE round = "33"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2517, 41, 1591, 584, 4280, 28027, 6, 1751, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 4073, 1591, 31, 7, 1751, 47, 5400, 58, 1, 0, 0, 0, 0, 0, 0...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1591, 21680, 953, 834, 4350, 834, 2517, 549, 17444, 427, 1751, 3274, 96, 4201, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is on tv at 8:00 on the same channel that had Loft Story on at 7:00?
CREATE TABLE table_67880 ( "7:00" text, "7:30" text, "8:00" text, "8:30" text, "9:00" text, "9:30" text, "10:00" text )
SELECT "8:00" FROM table_67880 WHERE "7:00" = 'loft story'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3708, 927, 2079, 41, 96, 18735, 121, 1499, 6, 96, 18078, 121, 1499, 6, 96, 15692, 121, 1499, 6, 96, 927, 10, 1458, 121, 1499, 6, 96, 1298, 10, 1206, 121, 1499, 6, 96, 2...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 15692, 121, 21680, 953, 834, 3708, 927, 2079, 549, 17444, 427, 96, 18735, 121, 3274, 3, 31, 40, 858, 17, 733, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Who drove the car with a grid of 7?
CREATE TABLE table_52842 ( "Driver" text, "Constructor" text, "Laps" real, "Time/Retired" text, "Grid" real )
SELECT "Driver" FROM table_52842 WHERE "Grid" = '7'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 755, 2577, 4165, 41, 96, 20982, 52, 121, 1499, 6, 96, 4302, 7593, 127, 121, 1499, 6, 96, 3612, 102, 7, 121, 490, 6, 96, 13368, 87, 1649, 11809, 26, 121, 1499, 6, 96, 13...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 20982, 52, 121, 21680, 953, 834, 755, 2577, 4165, 549, 17444, 427, 96, 13313, 26, 121, 3274, 3, 31, 940, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What position was the player who was drafted by Edmonton?
CREATE TABLE table_30265 ( "Pick #" real, "CFL Team" text, "Player" text, "Position" text, "College" text )
SELECT "Position" FROM table_30265 WHERE "CFL Team" = 'Edmonton'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1458, 357, 4122, 41, 96, 345, 3142, 1713, 121, 490, 6, 96, 254, 10765, 2271, 121, 1499, 6, 96, 15800, 49, 121, 1499, 6, 96, 345, 32, 7, 4749, 121, 1499, 6, 96, 9939, 78...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 345, 32, 7, 4749, 121, 21680, 953, 834, 1458, 357, 4122, 549, 17444, 427, 96, 254, 10765, 2271, 121, 3274, 3, 31, 427, 26, 4662, 106, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What is the emissions CO2 with a max speed of km/h (mph) of the car model Panamera 4s?
CREATE TABLE table_46530 ( "car model" text, "displacement & configuration" text, "max. motive power @ rpm" text, "max. torque @ rpm" text, "max. speed" text, "emissions CO2" text )
SELECT "emissions CO2" FROM table_46530 WHERE "max. speed" = 'km/h (mph)' AND "car model" = 'panamera 4s'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4448, 26918, 41, 96, 1720, 825, 121, 1499, 6, 96, 10475, 11706, 297, 3, 184, 5298, 121, 1499, 6, 96, 9128, 5, 10280, 579, 3320, 3, 52, 2028, 121, 1499, 6, 96, 9128, 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, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 15, 5451, 7, 2847, 357, 121, 21680, 953, 834, 4448, 26918, 549, 17444, 427, 96, 9128, 5, 1634, 121, 3274, 3, 31, 5848, 87, 107, 41, 7656, 61, 31, 3430, 96, 1720, 825, 121, 3274, 3, 31, 2837, 9, 935, 9, 314...
count the number of patients whose primary disease is s/p fall and year of death is less than or equal to 2164?
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 (...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "S/P FALL" AND demographic.dod_year <= "2164.0"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7690, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 2118, 23, 26, 1499, 6, 5059, 715, 1499, 6, 5692, 1499, 6, 701, 834, 15129, 1499, 6, 3783, 1499, 6, 5798, 1499...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 549, 17444, 427, 14798, 5, 25930, 4844, 159, 3274, 96, 134, 87, 345, 377, 12126, 121, 3430, 14798, 5, 26, 32, 26, 834, 1201...
What sport in the 1960 Rome Games did Pakistan play in the Men's Freestyle Welterweight?
CREATE TABLE table_name_56 (sport VARCHAR, games VARCHAR, event VARCHAR)
SELECT sport FROM table_name_56 WHERE games = "1960 rome" AND event = "men's freestyle welterweight"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4834, 41, 6661, 584, 4280, 28027, 6, 1031, 584, 4280, 28027, 6, 605, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 2600, 16, 8, 8754, 7332, 5880, 410, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2600, 21680, 953, 834, 4350, 834, 4834, 549, 17444, 427, 1031, 3274, 96, 2294, 3328, 3, 11956, 121, 3430, 605, 3274, 96, 904, 31, 7, 339, 4084, 3, 9304, 49, 9378, 121, 1, -100, -100, -100, -100, -100, -100, -100, ...
Which Home Team has a Game of game 1?
CREATE TABLE table_name_24 ( home_team VARCHAR, game VARCHAR )
SELECT home_team FROM table_name_24 WHERE game = "game 1"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2266, 41, 234, 834, 11650, 584, 4280, 28027, 6, 467, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 4073, 1210, 2271, 65, 3, 9, 4435, 13, 467, 209, 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, 234, 834, 11650, 21680, 953, 834, 4350, 834, 2266, 549, 17444, 427, 467, 3274, 96, 7261, 209, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Which Date has an Opponent of newcastle united, and a Result of 2 1?
CREATE TABLE table_name_66 ( date VARCHAR, opponent VARCHAR, result VARCHAR )
SELECT date FROM table_name_66 WHERE opponent = "newcastle united" AND result = "2–1"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3539, 41, 833, 584, 4280, 28027, 6, 15264, 584, 4280, 28027, 6, 741, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 4073, 7678, 65, 46, 4495, 9977, 13, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 833, 21680, 953, 834, 4350, 834, 3539, 549, 17444, 427, 15264, 3274, 96, 5534, 5254, 109, 18279, 121, 3430, 741, 3274, 96, 357, 104, 536, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
WHich port is on march 17, 2006 and has a Winning team of iowa state?
CREATE TABLE table_name_70 (sport VARCHAR, date VARCHAR, winning_team VARCHAR)
SELECT sport FROM table_name_70 WHERE date = "march 17, 2006" AND winning_team = "iowa state"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2518, 41, 6661, 584, 4280, 28027, 6, 833, 584, 4280, 28027, 6, 3447, 834, 11650, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 3, 15313, 362, 2147, 19, 30, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0...
[ 3, 23143, 14196, 2600, 21680, 953, 834, 4350, 834, 2518, 549, 17444, 427, 833, 3274, 96, 51, 7064, 12864, 3581, 121, 3430, 3447, 834, 11650, 3274, 96, 23, 2381, 9, 538, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Which Neon has Atomic property of average valence electron energy (avee)?
CREATE TABLE table_59866 ( "Atomic property" text, "Helium" text, "Neon" text, "Argon" text, "Krypton" text, "Xenon" text, "Radon" text )
SELECT "Neon" FROM table_59866 WHERE "Atomic property" = 'average valence electron energy (avee)'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3390, 26750, 41, 96, 188, 235, 3113, 785, 121, 1499, 6, 96, 3845, 40, 2552, 121, 1499, 6, 96, 567, 15, 106, 121, 1499, 6, 96, 16627, 106, 121, 1499, 6, 96, 439, 651, 11...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 567, 15, 106, 121, 21680, 953, 834, 3390, 26750, 549, 17444, 427, 96, 188, 235, 3113, 785, 121, 3274, 3, 31, 28951, 3, 2165, 1433, 21126, 827, 41, 9, 162, 15, 61, 31, 1, -100, -100, -100, -100, -100, -100, -...
What was the Opponent during the game with a Result of W 37-21?
CREATE TABLE table_name_73 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_73 WHERE result = "w 37-21"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4552, 41, 32, 102, 9977, 584, 4280, 28027, 6, 741, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 4495, 9977, 383, 8, 467, 28, 3, 9, 3, 20119...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 15264, 21680, 953, 834, 4350, 834, 4552, 549, 17444, 427, 741, 3274, 96, 210, 6862, 16539, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which biggest interview score had an evening gown stat of 9.286?
CREATE TABLE table_11149 ( "State" text, "Interview" real, "Swimsuit" real, "Evening Gown" real, "Average" real )
SELECT MAX("Interview") FROM table_11149 WHERE "Evening Gown" = '9.286'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 15866, 3647, 41, 96, 134, 4748, 121, 1499, 6, 96, 17555, 4576, 121, 490, 6, 96, 134, 210, 603, 7628, 121, 490, 6, 96, 427, 1926, 53, 350, 9197, 121, 490, 6, 96, 188, 62...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 17555, 4576, 8512, 21680, 953, 834, 15866, 3647, 549, 17444, 427, 96, 427, 1926, 53, 350, 9197, 121, 3274, 3, 31, 8797, 357, 3840, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Class of 500cc, and a Wins smaller than 0 had what average year?
CREATE TABLE table_name_75 ( year INTEGER, class VARCHAR, wins VARCHAR )
SELECT AVG(year) FROM table_name_75 WHERE class = "500cc" AND wins < 0
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3072, 41, 215, 3, 21342, 17966, 6, 853, 584, 4280, 28027, 6, 9204, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 4501, 13, 2899, 75, 75, 6, 11, 3, 9,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 71, 17217, 599, 1201, 61, 21680, 953, 834, 4350, 834, 3072, 549, 17444, 427, 853, 3274, 96, 2560, 75, 75, 121, 3430, 9204, 3, 2, 3, 632, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What is the Words with a Strong's # of 5418?
CREATE TABLE table_70243 ( "Strong's #" text, "Hebrew word" text, "Strong's Transliteration" text, "Strong's Words Compounded" text, "English Spelling" text )
SELECT "Strong's Words Compounded" FROM table_70243 WHERE "Strong's #" = '5418'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2518, 27730, 41, 96, 11500, 2444, 31, 7, 1713, 121, 1499, 6, 96, 3845, 1999, 210, 1448, 121, 1499, 6, 96, 11500, 2444, 31, 7, 4946, 9842, 257, 121, 1499, 6, 96, 11500, 24...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 11500, 2444, 31, 7, 4467, 7, 4961, 14471, 121, 21680, 953, 834, 2518, 27730, 549, 17444, 427, 96, 11500, 2444, 31, 7, 1713, 121, 3274, 3, 31, 5062, 2606, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which home team's venue is Windy Hill?
CREATE TABLE table_32731 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Home team" FROM table_32731 WHERE "Venue" = 'windy hill'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 519, 2555, 3341, 41, 96, 19040, 372, 121, 1499, 6, 96, 19040, 372, 2604, 121, 1499, 6, 96, 188, 1343, 372, 121, 1499, 6, 96, 188, 1343, 372, 2604, 121, 1499, 6, 96, 553, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 19040, 372, 121, 21680, 953, 834, 519, 2555, 3341, 549, 17444, 427, 96, 553, 35, 76, 15, 121, 3274, 3, 31, 5165, 63, 9956, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
when area (km²) is 1605.35, how many provinces are there?
CREATE TABLE table_1888051_1 (province VARCHAR, area__km²_ VARCHAR)
SELECT COUNT(province) FROM table_1888051_1 WHERE area__km²_ = "1605.35"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 25794, 2079, 5553, 834, 536, 41, 1409, 2494, 565, 584, 4280, 28027, 6, 616, 834, 834, 5848, 357, 834, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 116, 616, 41, 5848,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2847, 17161, 599, 1409, 2494, 565, 61, 21680, 953, 834, 25794, 2079, 5553, 834, 536, 549, 17444, 427, 616, 834, 834, 5848, 357, 834, 3274, 96, 19129, 26627, 17395, 1, -100, -100, -100, -100, -100, -100, -100, -100, -1...
Who were the writers of episode 20?
CREATE TABLE table_2263 ( "No. in series" real, "No. in season" real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text )
SELECT "Written by" FROM table_2263 WHERE "No. in season" = '20'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2884, 3891, 41, 96, 4168, 5, 16, 939, 121, 490, 6, 96, 4168, 5, 16, 774, 121, 490, 6, 96, 382, 155, 109, 121, 1499, 6, 96, 23620, 15, 26, 57, 121, 1499, 6, 96, 24965,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 24965, 324, 57, 121, 21680, 953, 834, 2884, 3891, 549, 17444, 427, 96, 4168, 5, 16, 774, 121, 3274, 3, 31, 1755, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Who were the Visitor of the Toronto Maple Leafs Home game on December 22?
CREATE TABLE table_name_11 ( visitor VARCHAR, home VARCHAR, date VARCHAR )
SELECT visitor FROM table_name_11 WHERE home = "toronto maple leafs" AND date = "december 22"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2596, 41, 7019, 584, 4280, 28027, 6, 234, 584, 4280, 28027, 6, 833, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 2645, 130, 8, 4957, 127, 13, 8, 7030,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 7019, 21680, 953, 834, 4350, 834, 2596, 549, 17444, 427, 234, 3274, 96, 235, 4438, 32, 22007, 8384, 7, 121, 3430, 833, 3274, 96, 221, 75, 18247, 1630, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
Nigeria competed on July2, 1999.
CREATE TABLE table_1231316_5 (date VARCHAR, nation VARCHAR)
SELECT date FROM table_1231316_5 WHERE nation = "Nigeria"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 14574, 2368, 2938, 834, 755, 41, 5522, 584, 4280, 28027, 6, 2982, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 7904, 5978, 26, 30, 1718, 4482, 5247, 5, 1, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 833, 21680, 953, 834, 14574, 2368, 2938, 834, 755, 549, 17444, 427, 2982, 3274, 96, 567, 4424, 23, 9, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Which American Labor candidate ran against Republican Thomas E. Dewey?
CREATE TABLE table_42094 ( "Office" text, "Democratic ticket" text, "Republican ticket" text, "American Labor ticket" text, "Socialist ticket" text )
SELECT "American Labor ticket" FROM table_42094 WHERE "Republican ticket" = 'thomas e. dewey'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 21899, 4240, 41, 96, 22098, 121, 1499, 6, 96, 19679, 447, 4142, 121, 1499, 6, 96, 1649, 15727, 152, 4142, 121, 1499, 6, 96, 8778, 9836, 4142, 121, 1499, 6, 96, 5231, 4703, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 8778, 9836, 4142, 121, 21680, 953, 834, 21899, 4240, 549, 17444, 427, 96, 1649, 15727, 152, 4142, 121, 3274, 3, 31, 189, 32, 2754, 3, 15, 5, 20, 1123, 63, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100,...
Shawn Respert play for what school/club team?
CREATE TABLE table_31532 ( "Player" text, "Nationality" text, "Position" text, "Years in Toronto" text, "School/Club Team" text )
SELECT "School/Club Team" FROM table_31532 WHERE "Player" = 'shawn respert'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 519, 1808, 2668, 41, 96, 15800, 49, 121, 1499, 6, 96, 24732, 485, 121, 1499, 6, 96, 345, 32, 7, 4749, 121, 1499, 6, 96, 476, 2741, 7, 16, 7030, 121, 1499, 6, 96, 29364,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 29364, 87, 254, 11158, 2271, 121, 21680, 953, 834, 519, 1808, 2668, 549, 17444, 427, 96, 15800, 49, 121, 3274, 3, 31, 15622, 29, 23259, 49, 17, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the sitalsasthi carnival with hirakud as sambalpuri saree?
CREATE TABLE table_name_92 (sitalsasthi_carnival VARCHAR, sambalpuri_saree VARCHAR)
SELECT sitalsasthi_carnival FROM table_name_92 WHERE sambalpuri_saree = "hirakud"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4508, 41, 7, 9538, 7, 9, 7, 7436, 834, 75, 23403, 2165, 584, 4280, 28027, 6, 3, 7, 14303, 40, 102, 459, 834, 7, 355, 15, 584, 4280, 28027, 61, 3, 32102, 3210...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 108, 1947, 7, 9, 7, 7436, 834, 75, 23403, 2165, 21680, 953, 834, 4350, 834, 4508, 549, 17444, 427, 3, 7, 14303, 40, 102, 459, 834, 7, 355, 15, 3274, 96, 9288, 16296, 26, 121, 1, -100, -100, -100, -100, -100, -10...
Visualize a bar chart for the date and mean humidity for the days with the 3 largest maximum gust speeds.
CREATE TABLE status ( station_id INTEGER, bikes_available INTEGER, docks_available INTEGER, time TEXT ) CREATE TABLE weather ( date TEXT, max_temperature_f INTEGER, mean_temperature_f INTEGER, min_temperature_f INTEGER, max_dew_point_f INTEGER, mean_dew_point_f INTEGER, min_...
SELECT date, mean_humidity FROM weather ORDER BY max_gust_speed_mph DESC LIMIT 3
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 2637, 41, 2478, 834, 23, 26, 3, 21342, 17966, 6, 13490, 834, 28843, 3, 21342, 17966, 6, 12908, 7, 834, 28843, 3, 21342, 17966, 6, 97, 3, 3463, 4, 382, 3, 61, 3, 32102, 32103, 32102...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 833, 6, 1243, 834, 4884, 23, 26, 485, 21680, 1969, 4674, 11300, 272, 476, 9858, 834, 17198, 834, 9993, 834, 7656, 309, 25067, 8729, 12604, 220, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What was Ralph Shoaf's pick number?
CREATE TABLE table_name_39 ( pick VARCHAR, name VARCHAR )
SELECT pick FROM table_name_39 WHERE name = "ralph shoaf"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3288, 41, 1432, 584, 4280, 28027, 6, 564, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 21171, 13550, 9, 89, 31, 7, 1432, 381, 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, 1432, 21680, 953, 834, 4350, 834, 3288, 549, 17444, 427, 564, 3274, 96, 4900, 102, 107, 3, 5630, 9, 89, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
How many points are there with more losses than 16, more goals than 44, and a smaller position than 13?
CREATE TABLE table_name_99 ( points VARCHAR, position VARCHAR, loses VARCHAR, goals_scored VARCHAR )
SELECT COUNT(points) FROM table_name_99 WHERE loses > 16 AND goals_scored > 44 AND position < 13
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3264, 41, 979, 584, 4280, 28027, 6, 1102, 584, 4280, 28027, 6, 2615, 7, 584, 4280, 28027, 6, 1766, 834, 3523, 1271, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 321...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 2700, 7, 61, 21680, 953, 834, 4350, 834, 3264, 549, 17444, 427, 2615, 7, 2490, 898, 3430, 1766, 834, 3523, 1271, 2490, 8537, 3430, 1102, 3, 2, 1179, 1, -100, -100, -100, -100, -100, -100, -100, -10...
What is To par, when Margin of Victory is "2 Strokes", and when Tournament is "Women's British Open"?
CREATE TABLE table_name_36 (to_par VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
SELECT to_par FROM table_name_36 WHERE margin_of_victory = "2 strokes" AND tournament = "women's british open"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3420, 41, 235, 834, 1893, 584, 4280, 28027, 6, 6346, 834, 858, 834, 7287, 10972, 584, 4280, 28027, 6, 5892, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 36...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 12, 834, 1893, 21680, 953, 834, 4350, 834, 3420, 549, 17444, 427, 6346, 834, 858, 834, 7287, 10972, 3274, 96, 357, 9529, 7, 121, 3430, 5892, 3274, 96, 210, 32, 904, 31, 7, 3, 2160, 17, 1273, 539, 121, 1, -100, -...
Find the name of customers who have both saving and checking account types.
CREATE TABLE customer (cust_name VARCHAR, acc_type VARCHAR)
SELECT cust_name FROM customer WHERE acc_type = 'saving' INTERSECT SELECT cust_name FROM customer WHERE acc_type = 'checking'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 884, 41, 1071, 7, 17, 834, 4350, 584, 4280, 28027, 6, 3, 6004, 834, 6137, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 2588, 8, 564, 13, 722, 113, 43, 321, 4380, 11, 6450, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 123, 7, 17, 834, 4350, 21680, 884, 549, 17444, 427, 3, 6004, 834, 6137, 3274, 3, 31, 18265, 31, 3, 21342, 5249, 14196, 3, 23143, 14196, 123, 7, 17, 834, 4350, 21680, 884, 549, 17444, 427, 3, 6004, 834, 6137, 3274,...
What is the highest pick number for a pick drafted by the denver broncos?
CREATE TABLE table_name_52 ( pick INTEGER, team VARCHAR )
SELECT MAX(pick) FROM table_name_52 WHERE team = "denver broncos"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 5373, 41, 1432, 3, 21342, 17966, 6, 372, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 2030, 1432, 381, 21, 3, 9, 1432, 3, 23505, 57, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 17967, 61, 21680, 953, 834, 4350, 834, 5373, 549, 17444, 427, 372, 3274, 96, 537, 624, 3, 13711, 509, 7, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Name the Rider which has Laps smaller than 11 and a Bike of kawasaki zx-10r, and a Grid of 8?
CREATE TABLE table_name_98 ( rider VARCHAR, grid VARCHAR, laps VARCHAR, bike VARCHAR )
SELECT rider FROM table_name_98 WHERE laps < 11 AND bike = "kawasaki zx-10r" AND grid = 8
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3916, 41, 2564, 52, 584, 4280, 28027, 6, 8634, 584, 4280, 28027, 6, 14941, 7, 584, 4280, 28027, 6, 3724, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2564, 52, 21680, 953, 834, 4350, 834, 3916, 549, 17444, 427, 14941, 7, 3, 2, 850, 3430, 3724, 3274, 96, 1258, 9491, 11259, 3, 172, 226, 4536, 52, 121, 3430, 8634, 3274, 505, 1, -100, -100, -100, -100, -100, -100, ...
A scatter chart shows the correlation between School_ID and All_Games_Percent , and group by attribute ACC_Regular_Season.
CREATE TABLE university ( School_ID int, School text, Location text, Founded real, Affiliation text, Enrollment real, Nickname text, Primary_conference text ) CREATE TABLE basketball_match ( Team_ID int, School_ID int, Team_Name text, ACC_Regular_Season text, ACC_Per...
SELECT School_ID, All_Games_Percent FROM basketball_match GROUP BY ACC_Regular_Season
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 3819, 41, 1121, 834, 4309, 16, 17, 6, 1121, 1499, 6, 10450, 1499, 6, 3, 20100, 490, 6, 71, 89, 8027, 23, 257, 1499, 6, 695, 4046, 297, 490, 6, 7486, 4350, 1499, 6, 14542, 834, 28...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 1121, 834, 4309, 6, 432, 834, 23055, 7, 834, 12988, 3728, 21680, 8498, 834, 19515, 350, 4630, 6880, 272, 476, 3, 14775, 834, 17748, 4885, 834, 134, 15, 9, 739, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What is the type of station for ESPN International Sports?
CREATE TABLE table_65932 ( "Name" text, "Language" text, "Owner" text, "Group" text, "Type" text )
SELECT "Type" FROM table_65932 WHERE "Name" = 'espn international sports'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4122, 4271, 357, 41, 96, 23954, 121, 1499, 6, 96, 434, 1468, 76, 545, 121, 1499, 6, 96, 667, 210, 687, 121, 1499, 6, 96, 27247, 121, 1499, 6, 96, 25160, 121, 1499, 3, 6...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0...
[ 3, 23143, 14196, 96, 25160, 121, 21680, 953, 834, 4122, 4271, 357, 549, 17444, 427, 96, 23954, 121, 3274, 3, 31, 15, 7, 102, 29, 1038, 2100, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the natural change per year for the 7.2 CDR group?
CREATE TABLE table_29508 ( "Period" text, "Live births per year" text, "Deaths per year" text, "Natural change per year" text, "CBR*" text, "CDR*" text, "NC*" text, "TFR*" text, "IMR*" real, "Life expectancy total" text, "Life expectancy males" text, "Life expectancy fema...
SELECT "Natural change per year" FROM table_29508 WHERE "CDR*" = '7.2'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 357, 3301, 4018, 41, 96, 12988, 23, 32, 26, 121, 1499, 6, 96, 24179, 3879, 7, 399, 215, 121, 1499, 6, 96, 2962, 9, 189, 7, 399, 215, 121, 1499, 6, 96, 567, 13149, 40, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 567, 13149, 40, 483, 399, 215, 121, 21680, 953, 834, 357, 3301, 4018, 549, 17444, 427, 96, 254, 3913, 1935, 121, 3274, 3, 31, 25791, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Who has a larger than 70.99 km2?
CREATE TABLE table_name_52 ( comune VARCHAR, total__km²_ INTEGER )
SELECT comune FROM table_name_52 WHERE total__km²_ > 70.99
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 5373, 41, 20883, 584, 4280, 28027, 6, 792, 834, 834, 5848, 357, 834, 3, 21342, 17966, 3, 61, 3, 32102, 32103, 32101, 32103, 2645, 65, 3, 9, 2186, 145, 2861, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 20883, 21680, 953, 834, 4350, 834, 5373, 549, 17444, 427, 792, 834, 834, 5848, 357, 834, 2490, 2861, 14990, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the latest year when Phil Anderson won?
CREATE TABLE table_74595 ( "Year" real, "Race name" text, "Rider status" text, "Winner" text, "Team/Country" text )
SELECT MAX("Year") FROM table_74595 WHERE "Winner" = 'phil anderson'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 940, 2128, 3301, 41, 96, 476, 2741, 121, 490, 6, 96, 448, 3302, 564, 121, 1499, 6, 96, 448, 23, 588, 2637, 121, 1499, 6, 96, 18455, 687, 121, 1499, 6, 96, 18699, 87, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 4800, 4, 599, 121, 476, 2741, 8512, 21680, 953, 834, 940, 2128, 3301, 549, 17444, 427, 96, 18455, 687, 121, 3274, 3, 31, 18118, 11, 13515, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Which Zone is the lowest when Managed By Southern and has Platforms under 2?
CREATE TABLE table_55508 ( "Stations" text, "Place" text, "Managed By" text, "Platforms" real, "Zone" real )
SELECT MIN("Zone") FROM table_55508 WHERE "Managed By" = 'southern' AND "Platforms" < '2'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 28803, 4018, 41, 96, 134, 17, 1628, 121, 1499, 6, 96, 345, 11706, 121, 1499, 6, 96, 7296, 11438, 938, 121, 1499, 6, 96, 10146, 2032, 7, 121, 490, 6, 96, 956, 782, 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, 3, 17684, 599, 121, 956, 782, 8512, 21680, 953, 834, 28803, 4018, 549, 17444, 427, 96, 7296, 11438, 938, 121, 3274, 3, 31, 7, 670, 760, 29, 31, 3430, 96, 10146, 2032, 7, 121, 3, 2, 3, 31, 357, 31, 1, -100, -10...
Name the film that Lu directed.
CREATE TABLE table_name_68 (film_title VARCHAR, director VARCHAR)
SELECT film_title FROM table_name_68 WHERE director = "lu"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3651, 41, 9988, 834, 21869, 584, 4280, 28027, 6, 2090, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 5570, 8, 814, 24, 2318, 6640, 5, 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, 814, 834, 21869, 21680, 953, 834, 4350, 834, 3651, 549, 17444, 427, 2090, 3274, 96, 40, 76, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
how many patients died and were diagnosed with sec neuroend tumor-liver?
CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text ) CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.expire_flag = "1" AND diagnoses.short_title = "Sec neuroend tumor-liver"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7744, 7, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 3, 23, 1071, 21545, 834, 23, 26, 1499, 6, 2672, 834, 6137, 1499, 6, 2672, 1499, 6, 5403, 651, 834, 26, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 18730, 7, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 18730, 7, 5, 8399, 51, 834, 23, 26, 5...
For those employees who do not work in departments with managers that have ids between 100 and 200, return a bar chart about the distribution of last_name and manager_id , and display MANAGER_ID in descending order.
CREATE TABLE jobs ( JOB_ID varchar(10), JOB_TITLE varchar(35), MIN_SALARY decimal(6,0), MAX_SALARY decimal(6,0) ) CREATE TABLE employees ( EMPLOYEE_ID decimal(6,0), FIRST_NAME varchar(20), LAST_NAME varchar(25), EMAIL varchar(25), PHONE_NUMBER varchar(20), HIRE_DATE date, JO...
SELECT LAST_NAME, MANAGER_ID FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) ORDER BY MANAGER_ID DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 2476, 41, 446, 10539, 834, 4309, 3, 4331, 4059, 599, 16968, 6, 446, 10539, 834, 382, 3177, 3765, 3, 4331, 4059, 599, 2469, 201, 3, 17684, 834, 134, 4090, 24721, 7908, 1982, 599, 11071,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 301, 12510, 834, 567, 17683, 6, 283, 15610, 17966, 834, 4309, 21680, 1652, 549, 17444, 427, 4486, 3396, 19846, 11810, 834, 4309, 3388, 41, 23143, 14196, 3396, 19846, 11810, 834, 4309, 21680, 10521, 549, 17444, 427, 283, ...
Who is the Director of Fish Tales?
CREATE TABLE table_63754 ( "Title" text, "Series" text, "Director" text, "Production Num." text, "Release date" text )
SELECT "Director" FROM table_63754 WHERE "Title" = 'fish tales'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3891, 3072, 591, 41, 96, 382, 155, 109, 121, 1499, 6, 96, 12106, 7, 121, 1499, 6, 96, 23620, 127, 121, 1499, 6, 96, 3174, 8291, 1174, 51, 535, 1499, 6, 96, 1649, 40, 14...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 23620, 127, 121, 21680, 953, 834, 3891, 3072, 591, 549, 17444, 427, 96, 382, 155, 109, 121, 3274, 3, 31, 6779, 5221, 7, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
With an increase in net assets of $211,418, what are the net assets at end of year?
CREATE TABLE table_63911 ( "Year" text, "Total Support and Revenue" text, "Total Expenses" text, "Increase in Net Assets" text, "Net Assets at End of Year" text )
SELECT "Net Assets at End of Year" FROM table_63911 WHERE "Increase in Net Assets" = '$211,418'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 948, 3288, 2596, 41, 96, 476, 2741, 121, 1499, 6, 96, 3696, 1947, 4224, 11, 19764, 121, 1499, 6, 96, 3696, 1947, 3, 12882, 5167, 7, 121, 1499, 6, 96, 1570, 24706, 16, 654...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 9688, 18202, 7, 44, 3720, 13, 2929, 121, 21680, 953, 834, 948, 3288, 2596, 549, 17444, 427, 96, 1570, 24706, 16, 6540, 18202, 7, 121, 3274, 3, 31, 3229, 27278, 6, 591, 2606, 31, 1, -100, -100, -100, -100, -100...
provide the number of patients whose discharge location is dead/expired and admission year is less than 2139?
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 t...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.discharge_location = "DEAD/EXPIRED" AND demographic.admityear < "2139"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 14798, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 564, 1499, 6, 2774, 1947, 834, 8547, 302, 1499, 6, 1246, 1499, 6, 103, 115, 1499, 6, 7285, 1499, 6, 1612, 14...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 549, 17444, 427, 14798, 5, 26, 159, 7993, 834, 14836, 3274, 96, 308, 19552, 87, 427, 4, 4111, 13729, 121, 3430, 14798, 5, 2...
What is Stable, when Current Rank is F1 Jūryō 14 West?
CREATE TABLE table_name_59 (stable VARCHAR, current_rank VARCHAR)
SELECT stable FROM table_name_59 WHERE current_rank = "f1 jūryō 14 west"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3390, 41, 7, 3869, 584, 4280, 28027, 6, 750, 834, 6254, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 472, 179, 6, 116, 12892, 3, 22557, 19, 377,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 5711, 21680, 953, 834, 4350, 834, 3390, 549, 17444, 427, 750, 834, 6254, 3274, 96, 89, 536, 3, 354, 2, 651, 2, 968, 4653, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
give me the number of patients whose admission type is urgent and lab test name is other cell?
CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text ) ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.admission_type = "URGENT" AND lab.label = "Other Cell"
[ 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, 7690, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 7690, 5, 8399, 51, 834, 23, 26, 549, 17444,...
When was the team, whose captain is Matt Smith, founded?
CREATE TABLE table_1301373_1 ( founded VARCHAR, captain VARCHAR )
SELECT founded FROM table_1301373_1 WHERE captain = "Matt Smith"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 21448, 2368, 4552, 834, 536, 41, 5710, 584, 4280, 28027, 6, 14268, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 366, 47, 8, 372, 6, 3, 2544, 14268, 19, 5199, 393...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 5710, 21680, 953, 834, 21448, 2368, 4552, 834, 536, 549, 17444, 427, 14268, 3274, 96, 329, 144, 17, 3931, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Where did they have the divisional playoffs?
CREATE TABLE table_14458 ( "Week" text, "Opponent" text, "Result" text, "Game site" text, "Attendance" text )
SELECT "Game site" FROM table_14458 WHERE "Week" = 'divisional playoffs'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 20885, 3449, 41, 96, 518, 10266, 121, 1499, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 20119, 121, 1499, 6, 96, 23055, 353, 121, 1499, 6, 96, 188, 17, 324, 26, 663, 121, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0...
[ 3, 23143, 14196, 96, 23055, 353, 121, 21680, 953, 834, 20885, 3449, 549, 17444, 427, 96, 518, 10266, 121, 3274, 3, 31, 26, 23, 6610, 138, 15289, 7, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
List the id of students who never attends courses?
CREATE TABLE student_course_attendance (student_id VARCHAR); CREATE TABLE students (student_id VARCHAR)
SELECT student_id FROM students WHERE NOT student_id IN (SELECT student_id FROM student_course_attendance)
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1236, 834, 19221, 834, 15116, 663, 41, 8637, 295, 834, 23, 26, 584, 4280, 28027, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 481, 41, 8637, 295, 834, 23, 26, 584, 4280, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0...
[ 3, 23143, 14196, 1236, 834, 23, 26, 21680, 481, 549, 17444, 427, 4486, 1236, 834, 23, 26, 3388, 41, 23143, 14196, 1236, 834, 23, 26, 21680, 1236, 834, 19221, 834, 15116, 663, 61, 1, -100, -100, -100, -100, -100, -100, -100, -100, -1...
Return the address of customer 10.
CREATE TABLE customer_addresses (address_id VARCHAR, customer_id VARCHAR); CREATE TABLE addresses (address_details VARCHAR, address_id VARCHAR)
SELECT T1.address_details FROM addresses AS T1 JOIN customer_addresses AS T2 ON T1.address_id = T2.address_id WHERE T2.customer_id = 10
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 884, 834, 9, 26, 12039, 15, 7, 41, 9, 26, 12039, 834, 23, 26, 584, 4280, 28027, 6, 884, 834, 23, 26, 584, 4280, 28027, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 7181...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 9, 26, 12039, 834, 221, 5756, 7, 21680, 7181, 6157, 332, 536, 3, 15355, 3162, 884, 834, 9, 26, 12039, 15, 7, 6157, 332, 357, 9191, 332, 5411, 9, 26, 12039, 834, 23, 26, 3274, 332, 4416, 9, 26, 12039, ...
Which college is aligned to the Saskatchewan Roughriders?
CREATE TABLE table_10812938_4 ( college VARCHAR, cfl_team VARCHAR )
SELECT college FROM table_10812938_4 WHERE cfl_team = "Saskatchewan Roughriders"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 16169, 22174, 3747, 834, 591, 41, 1900, 584, 4280, 28027, 6, 3, 75, 89, 40, 834, 11650, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 4073, 1900, 19, 7901, 15, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1900, 21680, 953, 834, 16169, 22174, 3747, 834, 591, 549, 17444, 427, 3, 75, 89, 40, 834, 11650, 3274, 96, 134, 9, 7, 8682, 1033, 3877, 391, 4607, 4055, 277, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, ...
Name the year started where car number is 55
CREATE TABLE table_21146 ( "Team name (Affiliation)" text, "Year started" real, "Number of cars" real, "Current car" text, "Car #" text, "Website" text )
SELECT MAX("Year started") FROM table_21146 WHERE "Car #" = '55'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2658, 24300, 41, 96, 18699, 564, 41, 188, 89, 8027, 23, 257, 61, 121, 1499, 6, 96, 476, 2741, 708, 121, 490, 6, 96, 567, 5937, 49, 13, 2948, 121, 490, 6, 96, 254, 450, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 4800, 4, 599, 121, 476, 2741, 708, 8512, 21680, 953, 834, 2658, 24300, 549, 17444, 427, 96, 6936, 1713, 121, 3274, 3, 31, 3769, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
How many positions was the United States in?
CREATE TABLE table_18662026_1 ( position VARCHAR, country VARCHAR )
SELECT COUNT(position) FROM table_18662026_1 WHERE country = "United States"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 25398, 26898, 2688, 834, 536, 41, 1102, 584, 4280, 28027, 6, 684, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 4655, 47, 8, 907, 1323, 16, 58, 1, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 4718, 61, 21680, 953, 834, 25398, 26898, 2688, 834, 536, 549, 17444, 427, 684, 3274, 96, 5110, 23, 1054, 1323, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What are the register ids of electoral registries that have the cross reference source system code 'Electoral' or 'Tax'?
CREATE TABLE Electoral_Register (electoral_register_id VARCHAR, cmi_cross_ref_id VARCHAR); CREATE TABLE CMI_Cross_References (cmi_cross_ref_id VARCHAR, source_system_code VARCHAR)
SELECT T1.electoral_register_id FROM Electoral_Register AS T1 JOIN CMI_Cross_References AS T2 ON T1.cmi_cross_ref_id = T2.cmi_cross_ref_id WHERE T2.source_system_code = 'Electoral' OR T2.source_system_code = 'Tax'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 3, 21543, 8563, 834, 17748, 5805, 41, 15, 3437, 8563, 834, 22149, 834, 23, 26, 584, 4280, 28027, 6, 2446, 23, 834, 11465, 834, 60, 89, 834, 23, 26, 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, 1, 1...
[ 3, 23143, 14196, 332, 5411, 15, 3437, 8563, 834, 22149, 834, 23, 26, 21680, 3, 21543, 8563, 834, 17748, 5805, 6157, 332, 536, 3, 15355, 3162, 205, 7075, 834, 254, 1859, 7, 834, 1649, 11788, 7, 6157, 332, 357, 9191, 332, 5411, 75, ...
What event was held in Chihuahua, Mexico?
CREATE TABLE table_71140 ( "Year" real, "Tournament" text, "Venue" text, "Result" text, "Event" text )
SELECT "Event" FROM table_71140 WHERE "Venue" = 'chihuahua, mexico'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4450, 22012, 41, 96, 476, 2741, 121, 490, 6, 96, 382, 1211, 20205, 17, 121, 1499, 6, 96, 553, 35, 76, 15, 121, 1499, 6, 96, 20119, 121, 1499, 6, 96, 427, 2169, 121, 149...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 427, 2169, 121, 21680, 953, 834, 4450, 22012, 549, 17444, 427, 96, 553, 35, 76, 15, 121, 3274, 3, 31, 1436, 107, 76, 9, 107, 76, 9, 6, 140, 226, 5807, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the L2 Cache for Model Number nano u3400 with an Idle Power of 100mw?
CREATE TABLE table_name_10 ( l2_cache VARCHAR, idle_power VARCHAR, model_number VARCHAR )
SELECT l2_cache FROM table_name_10 WHERE idle_power = "100mw" AND model_number = "nano u3400"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1714, 41, 3, 40, 357, 834, 75, 4933, 584, 4280, 28027, 6, 26592, 834, 6740, 584, 4280, 28027, 6, 825, 834, 5525, 1152, 584, 4280, 28027, 3, 61, 3, 32102, 32103, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 40, 357, 834, 75, 4933, 21680, 953, 834, 4350, 834, 1714, 549, 17444, 427, 26592, 834, 6740, 3274, 96, 2915, 51, 210, 121, 3430, 825, 834, 5525, 1152, 3274, 96, 29, 152, 32, 3, 76, 519, 5548, 121, 1, -100, -1...
Which Crowd has a Venue of princes park?
CREATE TABLE table_51887 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT MIN("Crowd") FROM table_51887 WHERE "Venue" = 'princes park'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 755, 2606, 4225, 41, 96, 19040, 372, 121, 1499, 6, 96, 19040, 372, 2604, 121, 1499, 6, 96, 188, 1343, 372, 121, 1499, 6, 96, 188, 1343, 372, 2604, 121, 1499, 6, 96, 553, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 17684, 599, 121, 254, 3623, 26, 8512, 21680, 953, 834, 755, 2606, 4225, 549, 17444, 427, 96, 553, 35, 76, 15, 121, 3274, 3, 31, 12298, 2319, 2447, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What were the remarks for Dutch Antilles Express?
CREATE TABLE table_name_74 (remarks VARCHAR, airline VARCHAR)
SELECT remarks FROM table_name_74 WHERE airline = "dutch antilles express"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4581, 41, 60, 3920, 7, 584, 4280, 28027, 6, 11545, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 130, 8, 21029, 21, 10098, 9141, 11348, 7319, 58, 1, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 21029, 21680, 953, 834, 4350, 834, 4581, 549, 17444, 427, 11545, 3274, 96, 1259, 17, 524, 3, 288, 11348, 3980, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
what is the total number of playoffs where regular season is 6th, southwest
CREATE TABLE table_1046454_1 (playoffs VARCHAR, regular_season VARCHAR)
SELECT COUNT(playoffs) FROM table_1046454_1 WHERE regular_season = "6th, Southwest"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 15442, 4389, 5062, 834, 536, 41, 4895, 1647, 7, 584, 4280, 28027, 6, 1646, 834, 9476, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 125, 19, 8, 792, 381, 13, 15289, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2847, 17161, 599, 4895, 1647, 7, 61, 21680, 953, 834, 15442, 4389, 5062, 834, 536, 549, 17444, 427, 1646, 834, 9476, 3274, 96, 948, 189, 6, 21423, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
what is the mascot for the enrollment 08-09 of 320?
CREATE TABLE table_67258 ( "School" text, "Location" text, "Mascot" text, "# / County" text, "Enrollment 08-09" real, "IHSAA Class" text, "Year Joined" real, "Previous Conference" text )
SELECT "Mascot" FROM table_67258 WHERE "Enrollment 08-09" = '320'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3708, 357, 3449, 41, 96, 29364, 121, 1499, 6, 96, 434, 32, 75, 257, 121, 1499, 6, 96, 329, 9, 7, 4310, 121, 1499, 6, 96, 4663, 3, 87, 1334, 121, 1499, 6, 96, 8532, 40...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 329, 9, 7, 4310, 121, 21680, 953, 834, 3708, 357, 3449, 549, 17444, 427, 96, 8532, 4046, 297, 12046, 18, 4198, 121, 3274, 3, 31, 15003, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the name in the UK, with a release date of December 1966?
CREATE TABLE table_name_24 ( name VARCHAR, location VARCHAR, release_date VARCHAR )
SELECT name FROM table_name_24 WHERE location = "uk" AND release_date = "december 1966"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2266, 41, 564, 584, 4280, 28027, 6, 1128, 584, 4280, 28027, 6, 1576, 834, 5522, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 564, 16, 8, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 564, 21680, 953, 834, 4350, 834, 2266, 549, 17444, 427, 1128, 3274, 96, 1598, 121, 3430, 1576, 834, 5522, 3274, 96, 221, 75, 18247, 20658, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
what is minimum age of patients whose ethnicity is white - russian and days of hospital stay is 69?
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, ...
SELECT MIN(demographic.age) FROM demographic WHERE demographic.ethnicity = "WHITE - RUSSIAN" AND demographic.days_stay = "69"
[ 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, 3, 17684, 599, 1778, 16587, 5, 545, 61, 21680, 14798, 549, 17444, 427, 14798, 5, 15, 189, 2532, 485, 3274, 96, 15313, 14871, 3, 18, 3, 8503, 4256, 21758, 121, 3430, 14798, 5, 1135, 7, 834, 21545, 3274, 96, 3951, 1...
Scatter plot to show major on x axis and the total number on y axis.
CREATE TABLE Allergy_Type ( Allergy VARCHAR(20), AllergyType VARCHAR(20) ) CREATE TABLE Student ( StuID INTEGER, LName VARCHAR(12), Fname VARCHAR(12), Age INTEGER, Sex VARCHAR(1), Major INTEGER, Advisor INTEGER, city_code VARCHAR(3) ) CREATE TABLE Has_Allergy ( StuID INTEGE...
SELECT Major, COUNT(*) FROM Student GROUP BY Major
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 432, 49, 122, 63, 834, 25160, 41, 432, 49, 122, 63, 584, 4280, 28027, 599, 1755, 201, 432, 49, 122, 63, 25160, 584, 4280, 28027, 599, 1755, 61, 3, 61, 3, 32102, 32103, 32102, 205, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 9236, 6, 2847, 17161, 599, 1935, 61, 21680, 6341, 350, 4630, 6880, 272, 476, 9236, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Show the location codes and the number of documents in each location.
CREATE TABLE Document_locations (location_code VARCHAR)
SELECT location_code, COUNT(*) FROM Document_locations GROUP BY location_code
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 11167, 834, 14836, 7, 41, 14836, 834, 4978, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 3111, 8, 1128, 5633, 11, 8, 381, 13, 2691, 16, 284, 1128, 5, 1, 0, 0, 0, 0, 0, 0,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1128, 834, 4978, 6, 2847, 17161, 599, 1935, 61, 21680, 11167, 834, 14836, 7, 350, 4630, 6880, 272, 476, 1128, 834, 4978, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Can you tell me the Record that has the Opponent of vs. hamilton tiger cats?
CREATE TABLE table_name_55 ( record VARCHAR, opponent VARCHAR )
SELECT record FROM table_name_55 WHERE opponent = "vs. hamilton tiger cats"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3769, 41, 1368, 584, 4280, 28027, 6, 15264, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 1072, 25, 817, 140, 8, 11392, 24, 65, 8, 4495, 9977, 13, 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, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1368, 21680, 953, 834, 4350, 834, 3769, 549, 17444, 427, 15264, 3274, 96, 208, 7, 5, 3, 1483, 23, 7377, 3, 17, 4424, 10003, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Name the number of countries that have the us dollar
CREATE TABLE table_2764267_2 (country VARCHAR, currency VARCHAR)
SELECT COUNT(country) FROM table_2764267_2 WHERE currency = "US dollar"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2555, 4389, 357, 3708, 834, 357, 41, 17529, 584, 4280, 28027, 6, 7481, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 5570, 8, 381, 13, 1440, 24, 43, 8, 178, 6816, 1,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 17529, 61, 21680, 953, 834, 2555, 4389, 357, 3708, 834, 357, 549, 17444, 427, 7481, 3274, 96, 3063, 6816, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
For those records from the products and each product's manufacturer, return a scatter chart about the correlation between code and price , and group by attribute headquarter.
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 T1.Code, T1.Price FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Headquarter
[ 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, 332, 5411, 22737, 6, 332, 5411, 345, 4920, 21680, 7554, 6157, 332, 536, 3, 15355, 3162, 15248, 7, 6157, 332, 357, 9191, 332, 5411, 7296, 76, 8717, 450, 49, 3274, 332, 4416, 22737, 350, 4630, 6880, 272, 476, 3642, 19...
Show the region name with at least two storms.
CREATE TABLE region (region_name VARCHAR, region_id VARCHAR); CREATE TABLE affected_region (region_id VARCHAR)
SELECT T1.region_name FROM region AS T1 JOIN affected_region AS T2 ON T1.region_id = T2.region_id GROUP BY T1.region_id HAVING COUNT(*) >= 2
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1719, 41, 18145, 834, 4350, 584, 4280, 28027, 6, 1719, 834, 23, 26, 584, 4280, 28027, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 4161, 834, 18145, 41, 18145, 834, 23, 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, 0...
[ 3, 23143, 14196, 332, 5411, 18145, 834, 4350, 21680, 1719, 6157, 332, 536, 3, 15355, 3162, 4161, 834, 18145, 6157, 332, 357, 9191, 332, 5411, 18145, 834, 23, 26, 3274, 332, 4416, 18145, 834, 23, 26, 350, 4630, 6880, 272, 476, 332, 5...
How many gold medals were awarded to teams ranked higher than 19?
CREATE TABLE table_name_8 (gold VARCHAR, rank INTEGER)
SELECT COUNT(gold) FROM table_name_8 WHERE rank > 19
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 927, 41, 14910, 584, 4280, 28027, 6, 11003, 3, 21342, 17966, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 2045, 9365, 7, 130, 5539, 12, 2323, 3, 8232, 1146, 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, 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, 14910, 61, 21680, 953, 834, 4350, 834, 927, 549, 17444, 427, 11003, 2490, 957, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is the lowest laps with a 142.744 qual?
CREATE TABLE table_71114 ( "Year" text, "Start" text, "Qual" text, "Rank" text, "Finish" text, "Laps" real )
SELECT MIN("Laps") FROM table_71114 WHERE "Qual" = '142.744'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4450, 18959, 41, 96, 476, 2741, 121, 1499, 6, 96, 7681, 17, 121, 1499, 6, 96, 5991, 138, 121, 1499, 6, 96, 22557, 121, 1499, 6, 96, 371, 77, 1273, 121, 1499, 6, 96, 361...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 3612, 102, 7, 8512, 21680, 953, 834, 4450, 18959, 549, 17444, 427, 96, 5991, 138, 121, 3274, 3, 31, 2534, 21280, 3628, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the maximum total amount paid by a customer? List the customer id and amount.
CREATE TABLE Payments (customer_id VARCHAR, amount_paid INTEGER)
SELECT customer_id, SUM(amount_paid) FROM Payments GROUP BY customer_id ORDER BY SUM(amount_paid) DESC LIMIT 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 12248, 7, 41, 25697, 49, 834, 23, 26, 584, 4280, 28027, 6, 866, 834, 12760, 3, 21342, 17966, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 2411, 792, 866, 1866, 57, 3, 9, 884, 58,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 884, 834, 23, 26, 6, 180, 6122, 599, 9, 11231, 834, 12760, 61, 21680, 12248, 7, 350, 4630, 6880, 272, 476, 884, 834, 23, 26, 4674, 11300, 272, 476, 180, 6122, 599, 9, 11231, 834, 12760, 61, 309, 25067, 8729, 12604...
How many years of nasl years did the accolades read 'captained england to victory at the 1966 world cup'?
CREATE TABLE table_2931 ( "Player" text, "Position" text, "NASL years" text, "NASL club(s)" text, "Accolades (Pre-NASL)" text )
SELECT COUNT("NASL years") FROM table_2931 WHERE "Accolades (Pre-NASL)" = 'Captained England to victory at the 1966 World Cup'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3166, 3341, 41, 96, 15800, 49, 121, 1499, 6, 96, 345, 32, 7, 4749, 121, 1499, 6, 96, 21277, 434, 203, 121, 1499, 6, 96, 21277, 434, 1886, 599, 7, 61, 121, 1499, 6, 96, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 121, 21277, 434, 203, 8512, 21680, 953, 834, 3166, 3341, 549, 17444, 427, 96, 19543, 32, 14712, 7, 41, 10572, 18, 21277, 434, 61, 121, 3274, 3, 31, 19566, 10733, 2789, 12, 6224, 44, 8, 20658, 1150,...
How many times the number of adults and kids staying in a room reached the maximum capacity of the room?
CREATE TABLE reservations ( code number, room text, checkin text, checkout text, rate number, lastname text, firstname text, adults number, kids number ) CREATE TABLE rooms ( roomid text, roomname text, beds number, bedtype text, maxoccupancy number, basepric...
SELECT COUNT(*) FROM reservations AS T1 JOIN rooms AS T2 ON T1.room = T2.roomid WHERE T2.maxoccupancy = T1.adults + T1.kids
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 17653, 41, 1081, 381, 6, 562, 1499, 6, 691, 77, 1499, 6, 15912, 1499, 6, 1080, 381, 6, 336, 4350, 1499, 6, 166, 4350, 1499, 6, 3513, 381, 6, 1082, 381, 3, 61, 3, 32102, 32103, 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, 1935, 61, 21680, 17653, 6157, 332, 536, 3, 15355, 3162, 2801, 6157, 332, 357, 9191, 332, 5411, 3082, 3274, 332, 4416, 3082, 23, 26, 549, 17444, 427, 332, 4416, 9128, 13377, 413, 6833, 3274, 332, 5411...
Who was the away team on 9 February 1988?
CREATE TABLE table_name_3 ( away_team VARCHAR, date VARCHAR )
SELECT away_team FROM table_name_3 WHERE date = "9 february 1988"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 519, 41, 550, 834, 11650, 584, 4280, 28027, 6, 833, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 2645, 47, 8, 550, 372, 30, 668, 2083, 10414, 58, 1, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 550, 834, 11650, 21680, 953, 834, 4350, 834, 519, 549, 17444, 427, 833, 3274, 96, 1298, 29976, 76, 1208, 10414, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What is the enrollment of the university established in or after 2011?
CREATE TABLE table_name_68 (enrollment VARCHAR, established INTEGER)
SELECT enrollment FROM table_name_68 WHERE established > 2011
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3651, 41, 35, 4046, 297, 584, 4280, 28027, 6, 2127, 3, 21342, 17966, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 17938, 13, 8, 3819, 2127, 16, 42, 227, 2722, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 17938, 21680, 953, 834, 4350, 834, 3651, 549, 17444, 427, 2127, 2490, 2722, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
WHAT COUNTRY HAS A SCORE OF 68-70=138?
CREATE TABLE table_name_58 (country VARCHAR, score VARCHAR)
SELECT country FROM table_name_58 WHERE score = 68 - 70 = 138
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3449, 41, 17529, 584, 4280, 28027, 6, 2604, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 21665, 2847, 17161, 11824, 454, 3291, 71, 6508, 20888, 3347, 3, 3651...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 684, 21680, 953, 834, 4350, 834, 3449, 549, 17444, 427, 2604, 3274, 3, 3651, 3, 18, 2861, 3274, 3, 22744, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
what is the venue when the home team is melbourne?
CREATE TABLE table_name_67 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_67 WHERE home_team = "melbourne"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3708, 41, 15098, 584, 4280, 28027, 6, 234, 834, 11650, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 125, 19, 8, 5669, 116, 8, 234, 372, 19, 3, 2341, 2625...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 5669, 21680, 953, 834, 4350, 834, 3708, 549, 17444, 427, 234, 834, 11650, 3274, 96, 2341, 26255, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...