NATURAL_LANG
stringlengths
0
446
SCHEMA
stringlengths
27
2.21k
SQL
stringlengths
18
453
input_ids
list
attention_mask
list
labels
list
When was Daniel Webster College founded?
CREATE TABLE table_23222 ( "Institution" text, "Location" text, "Nickname" text, "Founded" real, "Type" text, "Enrollment" real, "Joined" real, "Left" real, "Current Conference" text )
SELECT "Founded" FROM table_23222 WHERE "Institution" = 'Daniel Webster College'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 23188, 2884, 41, 96, 1570, 17448, 121, 1499, 6, 96, 434, 32, 75, 257, 121, 1499, 6, 96, 567, 3142, 4350, 121, 1499, 6, 96, 20100, 121, 490, 6, 96, 25160, 121, 1499, 6, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 20100, 121, 21680, 953, 834, 23188, 2884, 549, 17444, 427, 96, 1570, 17448, 121, 3274, 3, 31, 308, 2738, 15, 40, 1620, 1370, 1888, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
For those employees who did not have any job in the past, find hire_date and the average of salary bin hire_date by time, and visualize them by a bar chart.
CREATE TABLE job_history ( EMPLOYEE_ID decimal(6,0), START_DATE date, END_DATE date, JOB_ID varchar(10), DEPARTMENT_ID decimal(4,0) ) CREATE TABLE departments ( DEPARTMENT_ID decimal(4,0), DEPARTMENT_NAME varchar(30), MANAGER_ID decimal(6,0), LOCATION_ID decimal(4,0) ) CREATE TABLE...
SELECT HIRE_DATE, AVG(SALARY) FROM employees WHERE NOT EMPLOYEE_ID IN (SELECT EMPLOYEE_ID FROM job_history)
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 613, 834, 10193, 10972, 41, 262, 5244, 5017, 476, 5080, 834, 4309, 7908, 1982, 599, 11071, 632, 201, 5097, 8241, 834, 308, 6048, 833, 6, 3, 14920, 834, 308, 6048, 833, 6, 446, 10539, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 71, 17217, 599, 134, 4090, 24721, 61, 21680, 1652, 549, 17444, 427, 4486, 262, 5244, 5017, 476, 5080, 834, 4309, 3388, 41, 23143, 14196, 262, 5244, 5017, 476, 5080, 834, 4309, 21680, 613...
How many million viewers watched episodes prior to episode 2.0?
CREATE TABLE table_30118 ( "Episode #" real, "Title" text, "Directed by" text, "Written by" text, "Originalairdate" text, "Viewers (millions)" text )
SELECT "Viewers (millions)" FROM table_30118 WHERE "Episode #" < '2.0'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1458, 20056, 41, 96, 427, 102, 159, 32, 221, 1713, 121, 490, 6, 96, 382, 155, 109, 121, 1499, 6, 96, 23620, 15, 26, 57, 121, 1499, 6, 96, 24965, 324, 57, 121, 1499, 6, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 15270, 277, 41, 17030, 7, 61, 121, 21680, 953, 834, 1458, 20056, 549, 17444, 427, 96, 427, 102, 159, 32, 221, 1713, 121, 3, 2, 3, 31, 24273, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
How many patients of black/cape verdean ethnicity are diagnosed with the primary disease st elevated myocardial infarction/cardiac cath?
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 WHERE demographic.ethnicity = "BLACK/CAPE VERDEAN" AND demographic.diagnosis = "ST ELEVATED MYOCARDIAL INFARCTION\CARDIAC CATH"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 4293, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 3, 447, 26, 1298, 834, 4978, 1499, 6, 710, 834, 21869, 1499, 6, 307, 834, 21869, 1499, 3, 61, 3, 32102, 32103...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 549, 17444, 427, 14798, 5, 15, 189, 2532, 485, 3274, 96, 8775, 15339, 87, 16986, 427, 3, 16174, 308, 20152, 121, 3430, 14798,...
What date has friendly as the type of game, france as an opponent, and paris, france as the city?
CREATE TABLE table_name_92 (date VARCHAR, city VARCHAR, type_of_game VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_92 WHERE type_of_game = "friendly" AND opponent = "france" AND city = "paris, france"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4508, 41, 5522, 584, 4280, 28027, 6, 690, 584, 4280, 28027, 6, 686, 834, 858, 834, 7261, 584, 4280, 28027, 6, 15264, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 833, 21680, 953, 834, 4350, 834, 4508, 549, 17444, 427, 686, 834, 858, 834, 7261, 3274, 96, 4905, 121, 3430, 15264, 3274, 96, 89, 5219, 121, 3430, 690, 3274, 96, 1893, 159, 6, 2515, 663, 121, 1, -100, -100, -100, ...
For those employees who did not have any job in the past, show me about the distribution of job_id and the average of department_id , and group by attribute job_id in a bar chart.
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 JOB_ID, AVG(DEPARTMENT_ID) FROM employees WHERE NOT EMPLOYEE_ID IN (SELECT EMPLOYEE_ID FROM job_history) GROUP BY JOB_ID
[ 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, 446, 10539, 834, 4309, 6, 71, 17217, 599, 5596, 19846, 11810, 834, 4309, 61, 21680, 1652, 549, 17444, 427, 4486, 262, 5244, 5017, 476, 5080, 834, 4309, 3388, 41, 23143, 14196, 262, 5244, 5017, 476, 5080, 834, 4309, 21...
What year was the team named the Raiders established?
CREATE TABLE table_16078390_2 (founded INTEGER, team_nickname VARCHAR)
SELECT MAX(founded) FROM table_16078390_2 WHERE team_nickname = "Raiders"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 19129, 3940, 519, 2394, 834, 357, 41, 23329, 3, 21342, 17966, 6, 372, 834, 11191, 4350, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 215, 47, 8, 372, 2650, 8, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 23329, 61, 21680, 953, 834, 19129, 3940, 519, 2394, 834, 357, 549, 17444, 427, 372, 834, 11191, 4350, 3274, 96, 448, 18900, 7, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the 1st round with a team 2 paris sg (d1)?
CREATE TABLE table_name_91 (team_2 VARCHAR)
SELECT 1 AS st_round FROM table_name_91 WHERE team_2 = "paris sg (d1)"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4729, 41, 11650, 834, 357, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 209, 7, 17, 1751, 28, 3, 9, 372, 204, 260, 159, 3, 7, 122, 41, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 209, 6157, 3, 7, 17, 834, 7775, 21680, 953, 834, 4350, 834, 4729, 549, 17444, 427, 372, 834, 357, 3274, 96, 1893, 159, 3, 7, 122, 41, 26, 6982, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the hight of the player who's tenure lasted from 1969-70?
CREATE TABLE table_11734041_17 (height_in_ft VARCHAR, years_for_rockets VARCHAR)
SELECT height_in_ft FROM table_11734041_17 WHERE years_for_rockets = "1969-70"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 20275, 21129, 4853, 834, 2517, 41, 88, 2632, 834, 77, 834, 89, 17, 584, 4280, 28027, 6, 203, 834, 1161, 834, 6133, 15, 17, 7, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3902, 834, 77, 834, 89, 17, 21680, 953, 834, 20275, 21129, 4853, 834, 2517, 549, 17444, 427, 203, 834, 1161, 834, 6133, 15, 17, 7, 3274, 96, 2294, 3951, 18, 2518, 121, 1, -100, -100, -100, -100, -100, -100, -100, ...
How many times did Saxby Chambliss have a lead margin of 21?
CREATE TABLE table_1524 ( "Poll Source" text, "Dates administered" text, "Democrat: Jim Martin" text, "Republican: Saxby Chambliss" text, "Lead Margin" real )
SELECT COUNT("Republican: Saxby Chambliss") FROM table_1524 WHERE "Lead Margin" = '21'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1808, 2266, 41, 96, 8931, 40, 9149, 121, 1499, 6, 96, 308, 6203, 19092, 121, 1499, 6, 96, 19679, 10, 6006, 3394, 121, 1499, 6, 96, 1649, 15727, 152, 10, 1138, 226, 969, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1649, 15727, 152, 10, 1138, 226, 969, 18529, 7437, 7, 7, 8512, 21680, 953, 834, 1808, 2266, 549, 17444, 427, 96, 2796, 9, 26, 16409, 77, 121, 3274, 3, 31, 2658, 31, 1, -100, -100, -100, -100...
what's the current club with player being felipe reyes
CREATE TABLE table_12962773_5 ( current_club VARCHAR, player VARCHAR )
SELECT current_club FROM table_12962773_5 WHERE player = "Felipe Reyes"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2122, 4314, 2555, 4552, 834, 755, 41, 750, 834, 13442, 584, 4280, 28027, 6, 1959, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 125, 31, 7, 8, 750, 1886, 28, 1959...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 750, 834, 13442, 21680, 953, 834, 2122, 4314, 2555, 4552, 834, 755, 549, 17444, 427, 1959, 3274, 96, 17160, 23, 855, 419, 10070, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What is the branding for callsign DWFM?
CREATE TABLE table_name_53 ( branding VARCHAR, callsign VARCHAR )
SELECT branding FROM table_name_53 WHERE callsign = "dwfm"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4867, 41, 14282, 584, 4280, 28027, 6, 580, 6732, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 14282, 21, 580, 6732, 3, 20293, 14908, 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, 14282, 21680, 953, 834, 4350, 834, 4867, 549, 17444, 427, 580, 6732, 3274, 96, 26, 210, 89, 51, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Who was the team played on January 23?
CREATE TABLE table_17311759_6 ( team VARCHAR, date VARCHAR )
SELECT team FROM table_17311759_6 WHERE date = "January 23"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2517, 3341, 2517, 3390, 834, 948, 41, 372, 584, 4280, 28027, 6, 833, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 2645, 47, 8, 372, 1944, 30, 1762, 1902, 58, 1, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 372, 21680, 953, 834, 2517, 3341, 2517, 3390, 834, 948, 549, 17444, 427, 833, 3274, 96, 30404, 1902, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
If the language is only native, what is the percentage of the San Antonio de Lomerio municipality?
CREATE TABLE table_19998428_3 ( san_antonio_de_lomerΓ­o_municipality___percentage_ VARCHAR, language VARCHAR )
SELECT san_antonio_de_lomerΓ­o_municipality___percentage_ FROM table_19998428_3 WHERE language = "Only native"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2294, 3264, 4608, 2577, 834, 519, 41, 3, 7, 152, 834, 9, 6992, 23, 32, 834, 221, 834, 40, 32, 935, 2, 32, 834, 11760, 3389, 10355, 834, 834, 834, 883, 3728, 545, 834, 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, 3, 7, 152, 834, 9, 6992, 23, 32, 834, 221, 834, 40, 32, 935, 2, 32, 834, 11760, 3389, 10355, 834, 834, 834, 883, 3728, 545, 834, 21680, 953, 834, 2294, 3264, 4608, 2577, 834, 519, 549, 17444, 427, 1612, 3274, 96...
which nation received the least number of gold medals ?
CREATE TABLE table_204_785 ( id number, "rank" number, "nation" text, "gold" number, "silver" number, "bronze" number, "total" number )
SELECT "nation" FROM table_204_785 ORDER BY "gold" LIMIT 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26363, 834, 3940, 755, 41, 3, 23, 26, 381, 6, 96, 6254, 121, 381, 6, 96, 29, 257, 121, 1499, 6, 96, 14910, 121, 381, 6, 96, 7, 173, 624, 121, 381, 6, 96, 13711, 776, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 29, 257, 121, 21680, 953, 834, 26363, 834, 3940, 755, 4674, 11300, 272, 476, 96, 14910, 121, 8729, 12604, 209, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
find all dependent names who have a spouse relation with some employee.
CREATE TABLE dependent (Dependent_name VARCHAR, relationship VARCHAR)
SELECT Dependent_name FROM dependent WHERE relationship = 'Spouse'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 8976, 41, 2962, 102, 4596, 17, 834, 4350, 584, 4280, 28027, 6, 1675, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 253, 66, 8976, 3056, 113, 43, 3, 9, 9911, 4689, 28, 128, 349...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 30718, 295, 834, 4350, 21680, 8976, 549, 17444, 427, 1675, 3274, 3, 31, 134, 102, 1162, 15, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Show the names of members whose country is "United States" or "Canada".
CREATE TABLE member (Name VARCHAR, Country VARCHAR)
SELECT Name FROM member WHERE Country = "United States" OR Country = "Canada"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1144, 41, 23954, 584, 4280, 28027, 6, 6993, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 3111, 8, 3056, 13, 724, 3, 2544, 684, 19, 96, 5110, 23, 1054, 1323, 121, 42, 96, 2881...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 5570, 21680, 1144, 549, 17444, 427, 6993, 3274, 96, 5110, 23, 1054, 1323, 121, 4674, 6993, 3274, 96, 28811, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Name the least founded
CREATE TABLE table_28253870_1 (founded INTEGER)
SELECT MIN(founded) FROM table_28253870_1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2577, 1828, 3747, 2518, 834, 536, 41, 23329, 3, 21342, 17966, 61, 3, 32102, 32103, 32101, 32103, 5570, 8, 709, 5710, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 17684, 599, 23329, 61, 21680, 953, 834, 2577, 1828, 3747, 2518, 834, 536, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Name the leader battle for 4-3 vote
CREATE TABLE table_28175 ( "Episode" real, "Reward" text, "Leader Battle" text, "Immunity" text, "Individual Immunity" text, "Eliminated" text, "Vote" text, "Finish" text )
SELECT "Leader Battle" FROM table_28175 WHERE "Vote" = '4-3'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2577, 536, 3072, 41, 96, 427, 102, 159, 32, 221, 121, 490, 6, 96, 1649, 2239, 121, 1499, 6, 96, 2796, 9, 588, 10141, 121, 1499, 6, 96, 196, 635, 202, 485, 121, 1499, 6,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 2796, 9, 588, 10141, 121, 21680, 953, 834, 2577, 536, 3072, 549, 17444, 427, 96, 553, 32, 17, 15, 121, 3274, 3, 31, 591, 3486, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What away team played against Footscray as the home team?
CREATE TABLE table_77844 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Away team" FROM table_77844 WHERE "Home team" = 'footscray'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4013, 4608, 591, 41, 96, 19040, 372, 121, 1499, 6, 96, 19040, 372, 2604, 121, 1499, 6, 96, 188, 1343, 372, 121, 1499, 6, 96, 188, 1343, 372, 2604, 121, 1499, 6, 96, 553, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 188, 1343, 372, 121, 21680, 953, 834, 4013, 4608, 591, 549, 17444, 427, 96, 19040, 372, 121, 3274, 3, 31, 6259, 7, 2935, 63, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What was the outcome of the match played on grass?
CREATE TABLE table_name_64 ( outcome VARCHAR, surface VARCHAR )
SELECT outcome FROM table_name_64 WHERE surface = "grass"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4389, 41, 6138, 584, 4280, 28027, 6, 1774, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 6138, 13, 8, 1588, 1944, 30, 5956, 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, 6138, 21680, 953, 834, 4350, 834, 4389, 549, 17444, 427, 1774, 3274, 96, 16446, 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 the total number of years that an entrant had more than 0 points?
CREATE TABLE table_name_87 (year VARCHAR, points INTEGER)
SELECT COUNT(year) FROM table_name_87 WHERE points > 0
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4225, 41, 1201, 584, 4280, 28027, 6, 979, 3, 21342, 17966, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 792, 381, 13, 203, 24, 46, 3, 295, 3569, 141, 72, 145...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 1201, 61, 21680, 953, 834, 4350, 834, 4225, 549, 17444, 427, 979, 2490, 3, 632, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What is the team with a Pony kit manufacturer and Julian Dicks as the captain?
CREATE TABLE table_70448 ( "Team" text, "Manager 1" text, "Captain" text, "Kit manufacturer" text, "Shirt sponsor" text )
SELECT "Team" FROM table_70448 WHERE "Kit manufacturer" = 'pony' AND "Captain" = 'julian dicks'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2518, 591, 3707, 41, 96, 18699, 121, 1499, 6, 96, 27272, 209, 121, 1499, 6, 96, 19566, 17, 9, 77, 121, 1499, 6, 96, 439, 155, 4818, 121, 1499, 6, 96, 16671, 9037, 121, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 18699, 121, 21680, 953, 834, 2518, 591, 3707, 549, 17444, 427, 96, 439, 155, 4818, 121, 3274, 3, 31, 5041, 63, 31, 3430, 96, 19566, 17, 9, 77, 121, 3274, 3, 31, 2047, 9928, 3, 26, 3142, 7, 31, 1, -100, -10...
How many times was revenue in millions recorded when the spending per capita was $6,736?
CREATE TABLE table_14700336_1 ( revenue__millions_ VARCHAR, spending_per_capita VARCHAR )
SELECT COUNT(revenue__millions_) FROM table_14700336_1 WHERE spending_per_capita = "$6,736"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2534, 9295, 519, 3420, 834, 536, 41, 3751, 834, 834, 17030, 7, 834, 584, 4280, 28027, 6, 2887, 834, 883, 834, 4010, 155, 9, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 60, 15098, 834, 834, 17030, 7, 834, 61, 21680, 953, 834, 2534, 9295, 519, 3420, 834, 536, 549, 17444, 427, 2887, 834, 883, 834, 4010, 155, 9, 3274, 96, 3229, 11071, 940, 3420, 121, 1, -100, -100, ...
What was the original air date of the episode 'nano nits'?
CREATE TABLE table_25689 ( "Episode Number" text, "Title" text, "Villains" text, "Director" text, "Writer" text, "Original airdate" text )
SELECT "Original airdate" FROM table_25689 WHERE "Title" = 'Nano Nits'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 19337, 3914, 41, 96, 427, 102, 159, 32, 221, 7720, 121, 1499, 6, 96, 382, 155, 109, 121, 1499, 6, 96, 553, 1092, 13676, 121, 1499, 6, 96, 23620, 127, 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, 667, 3380, 10270, 799, 5522, 121, 21680, 953, 834, 19337, 3914, 549, 17444, 427, 96, 382, 155, 109, 121, 3274, 3, 31, 567, 152, 32, 2504, 17, 7, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What format is at frequency 99.5 FM?
CREATE TABLE table_name_14 ( format VARCHAR, frequency VARCHAR )
SELECT format FROM table_name_14 WHERE frequency = "99.5 fm"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2534, 41, 1910, 584, 4280, 28027, 6, 7321, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 1910, 19, 44, 7321, 668, 22321, 13409, 58, 1, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1910, 21680, 953, 834, 4350, 834, 2534, 549, 17444, 427, 7321, 3274, 96, 1298, 22321, 3, 89, 51, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Return a bar chart about the distribution of meter_500 and ID , and rank in desc by the meter_500.
CREATE TABLE stadium ( ID int, name text, Capacity int, City text, Country text, Opening_year int ) CREATE TABLE record ( ID int, Result text, Swimmer_ID int, Event_ID int ) CREATE TABLE event ( ID int, Name text, Stadium_ID int, Year text ) CREATE TABLE swimme...
SELECT meter_500, ID FROM swimmer ORDER BY meter_500 DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 14939, 41, 4699, 16, 17, 6, 564, 1499, 6, 4000, 9, 6726, 16, 17, 6, 896, 1499, 6, 6993, 1499, 6, 20360, 834, 1201, 16, 17, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 4401, 834, 2560, 6, 4699, 21680, 27424, 4674, 11300, 272, 476, 3, 4401, 834, 2560, 309, 25067, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
who is the Visitor that has a Series of series tied 2–2?
CREATE TABLE table_name_33 (visitor VARCHAR, series VARCHAR)
SELECT visitor FROM table_name_33 WHERE series = "series tied 2–2"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4201, 41, 3466, 155, 127, 584, 4280, 28027, 6, 939, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 113, 19, 8, 4957, 127, 24, 65, 3, 9, 4531, 13, 939, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 7019, 21680, 953, 834, 4350, 834, 4201, 549, 17444, 427, 939, 3274, 96, 10833, 7, 10422, 204, 104, 357, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Find all the customer last names that do not have invoice totals larger than 20.
CREATE TABLE CUSTOMER ( LastName VARCHAR ) CREATE TABLE Invoice ( CustomerId VARCHAR, total INTEGER )
SELECT LastName FROM CUSTOMER EXCEPT SELECT T1.LastName FROM CUSTOMER AS T1 JOIN Invoice AS T2 ON T1.CustomerId = T2.CustomerId WHERE T2.total > 20
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 205, 16847, 667, 13098, 41, 2506, 23954, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 86, 23235, 41, 7327, 196, 26, 584, 4280, 28027, 6, 792, 3, 21342,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2506, 23954, 21680, 205, 16847, 667, 13098, 262, 4, 30416, 3, 23143, 14196, 332, 5411, 3612, 7, 17, 23954, 21680, 205, 16847, 667, 13098, 6157, 332, 536, 3, 15355, 3162, 86, 23235, 6157, 332, 357, 9191, 332, 5411, 300...
Name the standard yarn weight system for 7 wpi
CREATE TABLE table_20297668_1 (standard_yarn_weight_system VARCHAR, wraps_per_inch__wpi_ VARCHAR)
SELECT standard_yarn_weight_system FROM table_20297668_1 WHERE wraps_per_inch__wpi_ = "7 wpi"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1755, 3166, 3959, 3651, 834, 536, 41, 16020, 834, 63, 291, 29, 834, 9378, 834, 3734, 584, 4280, 28027, 6, 6215, 7, 834, 883, 834, 4976, 834, 834, 210, 102, 23, 834, 584, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 1068, 834, 63, 291, 29, 834, 9378, 834, 3734, 21680, 953, 834, 1755, 3166, 3959, 3651, 834, 536, 549, 17444, 427, 6215, 7, 834, 883, 834, 4976, 834, 834, 210, 102, 23, 834, 3274, 96, 940, 3, 210, 102, 23, 121, 1...
how much does a drug called glucagen cost.
CREATE TABLE allergy ( allergyid number, patientunitstayid number, drugname text, allergyname text, allergytime time ) CREATE TABLE vitalperiodic ( vitalperiodicid number, patientunitstayid number, temperature number, sao2 number, heartrate number, respiration number, sy...
SELECT DISTINCT cost.cost FROM cost WHERE cost.eventtype = 'medication' AND cost.eventid IN (SELECT medication.medicationid FROM medication WHERE medication.drugname = 'glucagen')
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 23886, 41, 23886, 23, 26, 381, 6, 1868, 15129, 21545, 23, 26, 381, 6, 2672, 4350, 1499, 6, 23886, 4350, 1499, 6, 23886, 715, 97, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 15438, 25424, 6227, 583, 5, 11290, 21680, 583, 549, 17444, 427, 583, 5, 15, 2169, 6137, 3274, 3, 31, 526, 17530, 31, 3430, 583, 5, 15, 2169, 23, 26, 3388, 41, 23143, 14196, 7757, 5, 526, 17530, 23, 26, 21680, ...
What was the Result of the game dated 21st?
CREATE TABLE table_name_97 ( result VARCHAR, date VARCHAR )
SELECT result FROM table_name_97 WHERE date = "21st"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4327, 41, 741, 584, 4280, 28027, 6, 833, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 3, 20119, 13, 8, 467, 3, 14134, 1401, 7, 17, 58, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 741, 21680, 953, 834, 4350, 834, 4327, 549, 17444, 427, 833, 3274, 96, 2658, 7, 17, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is team 1 if Renova is team 2?
CREATE TABLE table_name_99 (team_1 VARCHAR, team_2 VARCHAR)
SELECT team_1 FROM table_name_99 WHERE team_2 = "renova"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3264, 41, 11650, 834, 536, 584, 4280, 28027, 6, 372, 834, 357, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 372, 209, 3, 99, 419, 14979, 19, 372...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 372, 834, 536, 21680, 953, 834, 4350, 834, 3264, 549, 17444, 427, 372, 834, 357, 3274, 96, 60, 14979, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
find out the number of patients with procedure icd9 code 9961 who have been discharged to skilled nursing facility.
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 INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.discharge_location = "SNF" AND procedures.icd9_code = "9961"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 14798, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 564, 1499, 6, 2774, 1947, 834, 8547, 302, 1499, 6, 1246, 1499, 6, 103, 115, 1499, 6, 7285, 1499, 6, 1612, 14...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 4293, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 4293, 5, 8399, 51, 834, 23, 26, 549, 17444,...
Who was the opponent in the mallorca 2, spain tournament?
CREATE TABLE table_name_54 (opponent VARCHAR, tournament VARCHAR)
SELECT opponent FROM table_name_54 WHERE tournament = "mallorca 2, spain"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 5062, 41, 32, 102, 9977, 584, 4280, 28027, 6, 5892, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 2645, 47, 8, 15264, 16, 8, 1460, 322, 658, 3547, 4174, 7...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 15264, 21680, 953, 834, 4350, 834, 5062, 549, 17444, 427, 5892, 3274, 96, 1982, 322, 658, 3547, 4174, 77, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
what is gender and admission time of subject id 87275?
CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text ) CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob te...
SELECT demographic.gender, demographic.admittime FROM demographic WHERE demographic.subject_id = "87275"
[ 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, 14798, 5, 122, 3868, 6, 14798, 5, 20466, 17, 715, 21680, 14798, 549, 17444, 427, 14798, 5, 7304, 11827, 834, 23, 26, 3274, 96, 4225, 25988, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What is the score for the home team Notts County?
CREATE TABLE table_50043 ( "Tie no" real, "Home team" text, "Score" text, "Away team" text, "Date" text )
SELECT "Score" FROM table_50043 WHERE "Home team" = 'notts county'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2560, 4906, 41, 96, 382, 23, 15, 150, 121, 490, 6, 96, 19040, 372, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 188, 1343, 372, 121, 1499, 6, 96, 308, 342, 121, 1499,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 134, 9022, 121, 21680, 953, 834, 2560, 4906, 549, 17444, 427, 96, 19040, 372, 121, 3274, 3, 31, 2264, 17, 7, 5435, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is the 2007 Team with player Deshaun Foster?
CREATE TABLE table_41441 ( "Pos." text, "Player" text, "Free Agent Type" text, "2007 Team" text, "Contract" text )
SELECT "2007 Team" FROM table_41441 WHERE "Player" = 'deshaun foster'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 591, 2534, 4853, 41, 96, 345, 32, 7, 535, 1499, 6, 96, 15800, 49, 121, 1499, 6, 96, 16393, 8628, 6632, 121, 1499, 6, 96, 20615, 2271, 121, 1499, 6, 96, 4302, 6471, 17, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 20615, 2271, 121, 21680, 953, 834, 591, 2534, 4853, 549, 17444, 427, 96, 15800, 49, 121, 3274, 3, 31, 1395, 1024, 202, 11313, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Who had a rank more than 48, and a last in 2005?
CREATE TABLE table_31683 ( "Rank" real, "Name" text, "Confederation" text, "Caps" real, "Last" real )
SELECT "Name" FROM table_31683 WHERE "Rank" > '48' AND "Last" = '2005'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 25946, 4591, 41, 96, 22557, 121, 490, 6, 96, 23954, 121, 1499, 6, 96, 4302, 16812, 257, 121, 1499, 6, 96, 19566, 7, 121, 490, 6, 96, 3612, 7, 17, 121, 490, 3, 61, 3, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 23954, 121, 21680, 953, 834, 25946, 4591, 549, 17444, 427, 96, 22557, 121, 2490, 3, 31, 3707, 31, 3430, 96, 3612, 7, 17, 121, 3274, 3, 31, 22594, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
provide the number of patients whose insurance is self pay and diagnoses short title is dmi neuro nt st uncntrld?
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 INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.insurance = "Self Pay" AND diagnoses.short_title = "DMI neuro nt st uncntrld"
[ 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...
What name is in the number 2 spot when Ethan is in the number 6 spot and Mason is in the number 3 spot?
CREATE TABLE table_name_7 ( no_2 VARCHAR, no_6 VARCHAR, no_3 VARCHAR )
SELECT no_2 FROM table_name_7 WHERE no_6 = "ethan" AND no_3 = "mason"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 940, 41, 150, 834, 357, 584, 4280, 28027, 6, 150, 834, 948, 584, 4280, 28027, 6, 150, 834, 519, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 564,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 150, 834, 357, 21680, 953, 834, 4350, 834, 940, 549, 17444, 427, 150, 834, 948, 3274, 96, 15, 6736, 121, 3430, 150, 834, 519, 3274, 96, 2754, 106, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which date had Japanese sales of 0.61 million?
CREATE TABLE table_13488 ( "Date" text, "Japan" text, "Americas" text, "Other" text, "Total" text )
SELECT "Date" FROM table_13488 WHERE "Japan" = '0.61 million'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 23747, 4060, 41, 96, 308, 342, 121, 1499, 6, 96, 683, 9, 2837, 121, 1499, 6, 96, 28746, 7, 121, 1499, 6, 96, 667, 189, 49, 121, 1499, 6, 96, 3696, 1947, 121, 1499, 3, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0...
[ 3, 23143, 14196, 96, 308, 342, 121, 21680, 953, 834, 23747, 4060, 549, 17444, 427, 96, 683, 9, 2837, 121, 3274, 3, 31, 22787, 536, 770, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What's the catalog number for a record from columbia formatted in a cd/dvd that's from the United States region?
CREATE TABLE table_name_97 ( catalog VARCHAR, format VARCHAR, label VARCHAR, region VARCHAR )
SELECT catalog FROM table_name_97 WHERE label = "columbia" AND region = "united states" AND format = "cd/dvd"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4327, 41, 10173, 584, 4280, 28027, 6, 1910, 584, 4280, 28027, 6, 3783, 584, 4280, 28027, 6, 1719, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 31, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 10173, 21680, 953, 834, 4350, 834, 4327, 549, 17444, 427, 3783, 3274, 96, 3297, 5937, 23, 9, 121, 3430, 1719, 3274, 96, 15129, 15, 26, 2315, 121, 3430, 1910, 3274, 96, 75, 26, 87, 26, 208, 26, 121, 1, -100, -100, ...
how many patients whose drug name is levetiracetam?
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 prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE prescriptions.drug = "Levetiracetam"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7744, 7, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 3, 23, 1071, 21545, 834, 23, 26, 1499, 6, 2672, 834, 6137, 1499, 6, 2672, 1499, 6, 5403, 651, 834, 26, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 7744, 7, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 7744, 7, 5, 8399, 51, 834, 23, 26, 549...
How many extra points did Stanfield Wells make?
CREATE TABLE table_25730209_2 (extra_points VARCHAR, player VARCHAR)
SELECT COUNT(extra_points) FROM table_25730209_2 WHERE player = "Stanfield Wells"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1828, 4552, 4305, 4198, 834, 357, 41, 25666, 834, 2700, 7, 584, 4280, 28027, 6, 1959, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 996, 979, 410, 11469, 184...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 25666, 834, 2700, 7, 61, 21680, 953, 834, 1828, 4552, 4305, 4198, 834, 357, 549, 17444, 427, 1959, 3274, 96, 134, 17, 152, 1846, 1548, 7, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Which Blackpool is the highest one that has a Draw larger than 18?
CREATE TABLE table_name_82 ( blackpool INTEGER, draw INTEGER )
SELECT MAX(blackpool) FROM table_name_82 WHERE draw > 18
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4613, 41, 1001, 13194, 3, 21342, 17966, 6, 3314, 3, 21342, 17966, 3, 61, 3, 32102, 32103, 32101, 32103, 4073, 1589, 13194, 19, 8, 2030, 80, 24, 65, 3, 9, 19183, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 19699, 13194, 61, 21680, 953, 834, 4350, 834, 4613, 549, 17444, 427, 3314, 2490, 507, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What day was Australia the opposing team and the against 12?
CREATE TABLE table_name_92 (date VARCHAR, opposing_teams VARCHAR, against VARCHAR)
SELECT date FROM table_name_92 WHERE opposing_teams = "australia" AND against = 12
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4508, 41, 5522, 584, 4280, 28027, 6, 10720, 53, 834, 11650, 7, 584, 4280, 28027, 6, 581, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 239, 47, 2051, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 833, 21680, 953, 834, 4350, 834, 4508, 549, 17444, 427, 10720, 53, 834, 11650, 7, 3274, 96, 2064, 8792, 23, 9, 121, 3430, 581, 3274, 586, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
How many Spins sources have a CCM Chart of CHR with a peak position less than 1?
CREATE TABLE table_name_61 (spins__since_1998__source VARCHAR, ccm_chart VARCHAR, peak_pos VARCHAR)
SELECT COUNT(spins__since_1998__source) AS :_mediabase FROM table_name_61 WHERE ccm_chart = "chr" AND peak_pos < 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4241, 41, 7, 3180, 7, 834, 834, 27296, 834, 2294, 3916, 834, 834, 7928, 584, 4280, 28027, 6, 3, 75, 75, 51, 834, 4059, 17, 584, 4280, 28027, 6, 6734, 834, 2748...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 7, 3180, 7, 834, 834, 27296, 834, 2294, 3916, 834, 834, 7928, 61, 6157, 3, 10, 834, 8172, 10925, 21680, 953, 834, 4350, 834, 4241, 549, 17444, 427, 3, 75, 75, 51, 834, 4059, 17, 3274, 96, 524, ...
What 2nd Party has an Election of 1885?
CREATE TABLE table_60552 ( "Election" text, "1st Member" text, "1st Party" text, "2nd Member" text, "2nd Party" text )
SELECT "2nd Party" FROM table_60552 WHERE "Election" = '1885'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3328, 3769, 357, 41, 96, 427, 12252, 121, 1499, 6, 96, 536, 7, 17, 8541, 121, 1499, 6, 96, 536, 7, 17, 3450, 121, 1499, 6, 96, 357, 727, 8541, 121, 1499, 6, 96, 357, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 357, 727, 3450, 121, 21680, 953, 834, 3328, 3769, 357, 549, 17444, 427, 96, 427, 12252, 121, 3274, 3, 31, 2606, 4433, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
When the pick was below 42 and the player was Chris Horton, what's the highest Overall pick found?
CREATE TABLE table_44525 ( "Round" real, "Pick" real, "Overall" real, "Name" text, "Position" text, "College" text )
SELECT MAX("Overall") FROM table_44525 WHERE "Name" = 'chris horton' AND "Pick" < '42'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 591, 2128, 1828, 41, 96, 448, 32, 1106, 121, 490, 6, 96, 345, 3142, 121, 490, 6, 96, 23847, 1748, 121, 490, 6, 96, 23954, 121, 1499, 6, 96, 345, 32, 7, 4749, 121, 1499,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 4800, 4, 599, 121, 23847, 1748, 8512, 21680, 953, 834, 591, 2128, 1828, 549, 17444, 427, 96, 23954, 121, 3274, 3, 31, 524, 52, 159, 3, 14184, 106, 31, 3430, 96, 345, 3142, 121, 3, 2, 3, 31, 4165, 31, 1, -100, ...
When the share of votes equals 21.8%, what's the sum of the total amount of seats?
CREATE TABLE table_10158 ( "Election" text, "D\u00e1il" text, "Share of votes" text, "Seats" real, "Total seats" real )
SELECT SUM("Total seats") FROM table_10158 WHERE "Share of votes" = '21.8%'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1714, 26556, 41, 96, 427, 12252, 121, 1499, 6, 96, 308, 2, 76, 1206, 15, 536, 173, 121, 1499, 6, 96, 24501, 13, 11839, 121, 1499, 6, 96, 134, 1544, 7, 121, 490, 6, 96, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 180, 6122, 599, 121, 3696, 1947, 6116, 8512, 21680, 953, 834, 1714, 26556, 549, 17444, 427, 96, 24501, 13, 11839, 121, 3274, 3, 31, 2658, 5, 5953, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
have patient 033-22108 been to the er in the current hospital encounter?
CREATE TABLE vitalperiodic ( vitalperiodicid number, patientunitstayid number, temperature number, sao2 number, heartrate number, respiration number, systemicsystolic number, systemicdiastolic number, systemicmean number, observationtime time ) CREATE TABLE medication ( medi...
SELECT COUNT(*) > 0 FROM patient WHERE patient.uniquepid = '033-22108' AND patient.hospitaladmitsource = 'emergency department' AND patient.hospitaldischargetime IS NULL
[ 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, 1935, 61, 2490, 3, 632, 21680, 1868, 549, 17444, 427, 1868, 5, 202, 1495, 12417, 3274, 3, 31, 4928, 21160, 357, 16169, 31, 3430, 1868, 5, 31386, 20466, 17, 7928, 3274, 3, 31, 15, 935, 122, 4392, ...
How many people lived in the district whose headquarters is in Bhubaneswar in 2001?
CREATE TABLE table_2801442_1 ( population__2001_census_ VARCHAR, headquarters VARCHAR )
SELECT population__2001_census_ FROM table_2801442_1 WHERE headquarters = "Bhubaneswar"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 17518, 20885, 357, 834, 536, 41, 2074, 834, 834, 23658, 834, 75, 35, 7, 302, 834, 584, 4280, 28027, 6, 13767, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 571, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2074, 834, 834, 23658, 834, 75, 35, 7, 302, 834, 21680, 953, 834, 17518, 20885, 357, 834, 536, 549, 17444, 427, 13767, 3274, 96, 279, 16420, 9, 1496, 2910, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -10...
When goals scored is more than 18, draw is less than 4, and goals conceded is more than 24, what is the sum of played?
CREATE TABLE table_name_33 (played VARCHAR, goals_conceded VARCHAR, goals_scored VARCHAR, draw VARCHAR)
SELECT COUNT(played) FROM table_name_33 WHERE goals_scored > 18 AND draw < 4 AND goals_conceded > 24
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4201, 41, 4895, 15, 26, 584, 4280, 28027, 6, 1766, 834, 11620, 221, 26, 584, 4280, 28027, 6, 1766, 834, 3523, 1271, 584, 4280, 28027, 6, 3314, 584, 4280, 28027, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 4895, 15, 26, 61, 21680, 953, 834, 4350, 834, 4201, 549, 17444, 427, 1766, 834, 3523, 1271, 2490, 507, 3430, 3314, 3, 2, 314, 3430, 1766, 834, 11620, 221, 26, 2490, 997, 1, -100, -100, -100, -100, ...
What is the sum of the numbers in series written by sam meikle, which have 21 numbers in the season?
CREATE TABLE table_name_5 (no_in_series INTEGER, written_by VARCHAR, no_in_season VARCHAR)
SELECT SUM(no_in_series) FROM table_name_5 WHERE written_by = "sam meikle" AND no_in_season = 21
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 755, 41, 29, 32, 834, 77, 834, 10833, 7, 3, 21342, 17966, 6, 1545, 834, 969, 584, 4280, 28027, 6, 150, 834, 77, 834, 9476, 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, 180, 6122, 599, 29, 32, 834, 77, 834, 10833, 7, 61, 21680, 953, 834, 4350, 834, 755, 549, 17444, 427, 1545, 834, 969, 3274, 96, 7, 265, 140, 23, 9434, 121, 3430, 150, 834, 77, 834, 9476, 3274, 1401, 1, -100, -10...
If essendon is the home team, what venue did they play at?
CREATE TABLE table_56514 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Venue" FROM table_56514 WHERE "Home team" = 'essendon'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 755, 4122, 2534, 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, 553, 35, 76, 15, 121, 21680, 953, 834, 755, 4122, 2534, 549, 17444, 427, 96, 19040, 372, 121, 3274, 3, 31, 8185, 2029, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which is the most recent game with an attendance larger than 65,042?
CREATE TABLE table_11660 ( "Game" real, "Date" text, "Location" text, "Time" text, "Attendance" real )
SELECT MAX("Game") FROM table_11660 WHERE "Attendance" > '65,042'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 20159, 3328, 41, 96, 23055, 121, 490, 6, 96, 308, 342, 121, 1499, 6, 96, 434, 32, 75, 257, 121, 1499, 6, 96, 13368, 121, 1499, 6, 96, 188, 17, 324, 26, 663, 121, 490, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 4800, 4, 599, 121, 23055, 8512, 21680, 953, 834, 20159, 3328, 549, 17444, 427, 96, 188, 17, 324, 26, 663, 121, 2490, 3, 31, 4122, 6, 6348, 357, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
Show me about the distribution of All_Neutral and Team_ID in a bar chart, and show bars in descending order please.
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 All_Neutral, Team_ID FROM basketball_match ORDER BY All_Neutral DESC
[ 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, 432, 834, 26288, 8792, 6, 2271, 834, 4309, 21680, 8498, 834, 19515, 4674, 11300, 272, 476, 432, 834, 26288, 8792, 309, 25067, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
When Regions center has a rank less than 11, what is the greatest number o floors?
CREATE TABLE table_name_62 ( floors INTEGER, name VARCHAR, rank VARCHAR )
SELECT MAX(floors) FROM table_name_62 WHERE name = "regions center" AND rank < 11
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4056, 41, 8242, 3, 21342, 17966, 6, 564, 584, 4280, 28027, 6, 11003, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 366, 6163, 7, 1530, 65, 3, 9, 11003,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 20924, 7, 61, 21680, 953, 834, 4350, 834, 4056, 549, 17444, 427, 564, 3274, 96, 18145, 7, 1530, 121, 3430, 11003, 3, 2, 850, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What was the away team that faced Carlton?
CREATE TABLE table_name_6 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_6 WHERE home_team = "carlton"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 948, 41, 8006, 834, 11650, 584, 4280, 28027, 6, 234, 834, 11650, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 550, 372, 24, 7865, 3, 30339, 5...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 550, 834, 11650, 21680, 953, 834, 4350, 834, 948, 549, 17444, 427, 234, 834, 11650, 3274, 96, 1720, 7377, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
How many semifinalists has Romania had?
CREATE TABLE table_31410 ( "Rank" real, "Country/Territory" text, "Miss Earth" text, "Miss Air" real, "Miss Water" real, "Miss Fire" real, "Semifinalists" real, "Total" real )
SELECT "Semifinalists" FROM table_31410 WHERE "Country/Territory" = 'Romania'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3341, 24175, 41, 96, 22557, 121, 490, 6, 96, 10628, 651, 87, 382, 21301, 10972, 121, 1499, 6, 96, 329, 159, 7, 4030, 121, 1499, 6, 96, 329, 159, 7, 1761, 121, 490, 6, 9...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 134, 15, 51, 23, 28077, 121, 21680, 953, 834, 3341, 24175, 549, 17444, 427, 96, 10628, 651, 87, 382, 21301, 10972, 121, 3274, 3, 31, 25139, 23, 9, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Show all destinations and the number of flights to each destination by a bar chart, and I want to display in desc by the x axis.
CREATE TABLE employee ( eid number(9,0), name varchar2(30), salary number(10,2) ) CREATE TABLE aircraft ( aid number(9,0), name varchar2(30), distance number(6,0) ) CREATE TABLE certificate ( eid number(9,0), aid number(9,0) ) CREATE TABLE flight ( flno number(4,0), origin var...
SELECT destination, COUNT(*) FROM flight GROUP BY destination ORDER BY destination DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 3490, 41, 3, 15, 23, 26, 381, 599, 1298, 6, 632, 201, 564, 3, 4331, 4059, 357, 599, 1458, 201, 9090, 381, 599, 1714, 6, 7318, 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, 3954, 6, 2847, 17161, 599, 1935, 61, 21680, 3777, 350, 4630, 6880, 272, 476, 3954, 4674, 11300, 272, 476, 3954, 309, 25067, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Tell me the college for carl hagelin
CREATE TABLE table_name_70 (college_junior_club_team__league_ VARCHAR, player VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_70 WHERE player = "carl hagelin"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2518, 41, 3297, 7883, 834, 6959, 23, 127, 834, 13442, 834, 11650, 834, 834, 29512, 834, 584, 4280, 28027, 6, 1959, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1900, 834, 6959, 23, 127, 834, 13442, 834, 11650, 834, 834, 29512, 834, 21680, 953, 834, 4350, 834, 2518, 549, 17444, 427, 1959, 3274, 96, 1720, 40, 4244, 1803, 77, 121, 1, -100, -100, -100, -100, -100, -100, -100, ...
give the number of male patients who had the procedure for insertion of non-drug-eluting coronaryartery stent(s).
CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text ) CREATE TABLE demographic ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.gender = "M" AND procedures.long_title = "Insertion of non-drug-eluting coronary artery stent(s)"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 4293, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 3, 447, 26, 1298, 834, 4978, 1499, 6, 710, 834, 21869, 1499, 6, 307, 834, 21869, 1499, 3, 61, 3, 32102, 32103...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 4293, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 4293, 5, 8399, 51, 834, 23, 26, 549, 17444,...
Name the max javelin for 200m for 5
CREATE TABLE table_24226 ( "Place" real, "Athlete" text, "Long jump" real, "Javelin" real, "200 m" real, "Discus" real, "1500 m" real, "Total" real )
SELECT MAX("Javelin") FROM table_24226 WHERE "200 m" = '5'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2266, 357, 2688, 41, 96, 345, 11706, 121, 490, 6, 96, 188, 189, 1655, 15, 121, 1499, 6, 96, 434, 2444, 4418, 121, 490, 6, 96, 683, 9, 4911, 77, 121, 490, 6, 96, 3632, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 683, 9, 4911, 77, 8512, 21680, 953, 834, 2266, 357, 2688, 549, 17444, 427, 96, 3632, 3, 51, 121, 3274, 3, 31, 755, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
How many viewers (in millions) watched the episode written by deidre shaw?
CREATE TABLE table_22951088_3 (us_viewers__in_millions_ VARCHAR, written_by VARCHAR)
SELECT us_viewers__in_millions_ FROM table_22951088_3 WHERE written_by = "Deidre Shaw"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2884, 3301, 1714, 4060, 834, 519, 41, 302, 834, 4576, 277, 834, 834, 77, 834, 17030, 7, 834, 584, 4280, 28027, 6, 1545, 834, 969, 584, 4280, 28027, 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, 178, 834, 4576, 277, 834, 834, 77, 834, 17030, 7, 834, 21680, 953, 834, 2884, 3301, 1714, 4060, 834, 519, 549, 17444, 427, 1545, 834, 969, 3274, 96, 2962, 23, 26, 60, 15333, 121, 1, -100, -100, -100, -100, -100, -...
Which operating system has 1GB (mobile ddr) memory (RAM)?
CREATE TABLE table_name_27 ( operating_system_version VARCHAR, memory___ram__ VARCHAR )
SELECT operating_system_version FROM table_name_27 WHERE memory___ram__ = "1gb (mobile ddr)"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2555, 41, 2699, 834, 3734, 834, 8674, 584, 4280, 28027, 6, 2594, 834, 834, 834, 2375, 834, 834, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 4073, 2699,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2699, 834, 3734, 834, 8674, 21680, 953, 834, 4350, 834, 2555, 549, 17444, 427, 2594, 834, 834, 834, 2375, 834, 834, 3274, 96, 536, 122, 115, 41, 14814, 3, 26, 26, 52, 61, 121, 1, -100, -100, -100, -100, -100, -100...
What are the downhill points for the skier with total of 9.31 points?
CREATE TABLE table_name_50 (downhill_points INTEGER, total VARCHAR)
SELECT SUM(downhill_points) FROM table_name_50 WHERE total = "9.31"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1752, 41, 3035, 6321, 834, 2700, 7, 3, 21342, 17966, 6, 792, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 33, 8, 323, 6321, 979, 21, 8, 5210, 49, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 180, 6122, 599, 3035, 6321, 834, 2700, 7, 61, 21680, 953, 834, 4350, 834, 1752, 549, 17444, 427, 792, 3274, 96, 8797, 3341, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
what is 1976 when 1980 is 2.0?
CREATE TABLE table_name_46 ( Id VARCHAR )
SELECT 1976 FROM table_name_46 WHERE 1980 = "2.0"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4448, 41, 27, 26, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 125, 19, 16164, 116, 6694, 19, 6864, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 16164, 21680, 953, 834, 4350, 834, 4448, 549, 17444, 427, 6694, 3274, 96, 24273, 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 was the results of the 71st Academy Awards show?
CREATE TABLE table_name_66 (results VARCHAR, awards_show VARCHAR)
SELECT results FROM table_name_66 WHERE awards_show = "71st academy awards"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3539, 41, 60, 7, 83, 17, 7, 584, 4280, 28027, 6, 6120, 834, 10049, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 772, 13, 8, 3, 4450, 7, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 772, 21680, 953, 834, 4350, 834, 3539, 549, 17444, 427, 6120, 834, 10049, 3274, 96, 4450, 7, 17, 25990, 6120, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Who was the opponent on April 2?
CREATE TABLE table_49045 ( "Game" real, "Date" text, "Opponent" text, "Score" text, "Location" text, "Record" text )
SELECT "Opponent" FROM table_49045 WHERE "Date" = 'april 2'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 591, 2394, 2128, 41, 96, 23055, 121, 490, 6, 96, 308, 342, 121, 1499, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 434, 32, 75, 257, 121, 1499,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 667, 102, 9977, 121, 21680, 953, 834, 591, 2394, 2128, 549, 17444, 427, 96, 308, 342, 121, 3274, 3, 31, 9, 2246, 40, 204, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
in what years did ramon gonzalez come in first place ?
CREATE TABLE table_203_763 ( id number, "year" number, "competition" text, "venue" text, "position" text, "notes" text )
SELECT "year" FROM table_203_763 WHERE "position" = 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 23330, 834, 3959, 519, 41, 3, 23, 26, 381, 6, 96, 1201, 121, 381, 6, 96, 287, 4995, 4749, 121, 1499, 6, 96, 15098, 121, 1499, 6, 96, 4718, 121, 1499, 6, 96, 7977, 7, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 1201, 121, 21680, 953, 834, 23330, 834, 3959, 519, 549, 17444, 427, 96, 4718, 121, 3274, 209, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
count the number of patients whose diagnosis short title is mental disor nec oth dis and lab test category is blood gas.
CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text ) CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob te...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE diagnoses.short_title = "Mental disor NEC oth dis" AND lab."CATEGORY" = "Blood Gas"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7744, 7, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 3, 23, 1071, 21545, 834, 23, 26, 1499, 6, 2672, 834, 6137, 1499, 6, 2672, 1499, 6, 5403, 651, 834, 26, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 18730, 7, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 18730, 7, 5, 8399, 51, 834, 23, 26, 3...
What is the number of the player who attended Delta State?
CREATE TABLE table_20200 ( "Player" text, "No." real, "Nationality" text, "Position" text, "Years in Orlando" text, "School/Club Team" text )
SELECT MAX("No.") FROM table_20200 WHERE "School/Club Team" = 'Delta State'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1755, 3632, 41, 96, 15800, 49, 121, 1499, 6, 96, 4168, 535, 490, 6, 96, 24732, 485, 121, 1499, 6, 96, 345, 32, 7, 4749, 121, 1499, 6, 96, 476, 2741, 7, 16, 14374, 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, 4800, 4, 599, 121, 4168, 5, 8512, 21680, 953, 834, 1755, 3632, 549, 17444, 427, 96, 29364, 87, 254, 11158, 2271, 121, 3274, 3, 31, 2962, 40, 17, 9, 1015, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Who was the opponent at the game with a result of W 38-14?
CREATE TABLE table_name_92 ( opponent VARCHAR, result VARCHAR )
SELECT opponent FROM table_name_92 WHERE result = "w 38-14"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4508, 41, 15264, 584, 4280, 28027, 6, 741, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 2645, 47, 8, 15264, 44, 8, 467, 28, 3, 9, 741, 13, 549, 6654...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 15264, 21680, 953, 834, 4350, 834, 4508, 549, 17444, 427, 741, 3274, 96, 210, 6654, 11590, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
get the number of patients who are diagnosed with acute parametritis and pelvic cellulitis.
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 INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE diagnoses.long_title = "Acute parametritis and pelvic cellulitis"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 14798, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 564, 1499, 6, 2774, 1947, 834, 8547, 302, 1499, 6, 1246, 1499, 6, 103, 115, 1499, 6, 7285, 1499, 6, 1612, 14...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 18730, 7, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 18730, 7, 5, 8399, 51, 834, 23, 26, 5...
When 'baby come back' is the title what is the air date?
CREATE TABLE table_27066 ( "No. in series" real, "No. in season" real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text, "Production code" real )
SELECT "Original air date" FROM table_27066 WHERE "Title" = 'Baby Come Back'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 17485, 3539, 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, 667, 3380, 10270, 799, 833, 121, 21680, 953, 834, 17485, 3539, 549, 17444, 427, 96, 382, 155, 109, 121, 3274, 3, 31, 279, 9, 969, 4589, 3195, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Find the first names of all the authors ordered in alphabetical order.
CREATE TABLE authors ( fname VARCHAR )
SELECT fname FROM authors ORDER BY fname
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 5921, 41, 3, 89, 4350, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 2588, 8, 166, 3056, 13, 66, 8, 5921, 5563, 16, 20688, 1950, 455, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 89, 4350, 21680, 5921, 4674, 11300, 272, 476, 3, 89, 4350, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
Who's the race leader of Cuneo to Turin?
CREATE TABLE table_name_90 (race_leader VARCHAR, course VARCHAR)
SELECT race_leader FROM table_name_90 WHERE course = "cuneo to turin"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2394, 41, 12614, 834, 22900, 584, 4280, 28027, 6, 503, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 2645, 31, 7, 8, 1964, 2488, 13, 205, 444, 32, 12, 753...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1964, 834, 22900, 21680, 953, 834, 4350, 834, 2394, 549, 17444, 427, 503, 3274, 96, 75, 444, 32, 12, 3, 4317, 29, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the highest Year with of the open championship?
CREATE TABLE table_name_14 (year INTEGER, championship VARCHAR)
SELECT MAX(year) FROM table_name_14 WHERE championship = "the open championship"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2534, 41, 1201, 3, 21342, 17966, 6, 10183, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 2030, 2929, 28, 13, 8, 539, 10183, 58, 1, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 1201, 61, 21680, 953, 834, 4350, 834, 2534, 549, 17444, 427, 10183, 3274, 96, 532, 539, 10183, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Which club had more than 2 FA trophies and more than 2 FA cups?
CREATE TABLE table_name_34 ( club VARCHAR, fa_trophy VARCHAR, fa_cup VARCHAR )
SELECT club FROM table_name_34 WHERE fa_trophy > 2 AND fa_cup > 2
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3710, 41, 1886, 584, 4280, 28027, 6, 3, 89, 9, 834, 17, 29006, 584, 4280, 28027, 6, 3, 89, 9, 834, 4658, 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, 0, 0...
[ 3, 23143, 14196, 1886, 21680, 953, 834, 4350, 834, 3710, 549, 17444, 427, 3, 89, 9, 834, 17, 29006, 2490, 204, 3430, 3, 89, 9, 834, 4658, 2490, 204, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is Dupuy lowest area in km2?
CREATE TABLE table_name_22 (area__km_2__ INTEGER, name VARCHAR)
SELECT MIN(area__km_2__) FROM table_name_22 WHERE name = "dupuy"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2884, 41, 498, 834, 834, 5848, 834, 357, 834, 834, 3, 21342, 17966, 6, 564, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 970, 4987, 63, 7402, 61...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 17684, 599, 498, 834, 834, 5848, 834, 357, 834, 834, 61, 21680, 953, 834, 4350, 834, 2884, 549, 17444, 427, 564, 3274, 96, 1259, 4987, 63, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is the opponent in a week larger than 1, with a result of l 21-20?
CREATE TABLE table_name_31 (opponent VARCHAR, week VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_31 WHERE week > 1 AND result = "l 21-20"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3341, 41, 32, 102, 9977, 584, 4280, 28027, 6, 471, 584, 4280, 28027, 6, 741, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 15264, 16, 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, 1, 1, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 15264, 21680, 953, 834, 4350, 834, 3341, 549, 17444, 427, 471, 2490, 209, 3430, 741, 3274, 96, 40, 1401, 7988, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
How many polls taken on different dates show an undecided percentage of 25%?
CREATE TABLE table_20683381_2 (date_of_opinion_poll VARCHAR, undecided VARCHAR)
SELECT COUNT(date_of_opinion_poll) FROM table_20683381_2 WHERE undecided = "25%"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1755, 3651, 4201, 4959, 834, 357, 41, 5522, 834, 858, 834, 32, 22441, 834, 3233, 40, 584, 4280, 28027, 6, 3550, 10812, 15, 26, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 5522, 834, 858, 834, 32, 22441, 834, 3233, 40, 61, 21680, 953, 834, 1755, 3651, 4201, 4959, 834, 357, 549, 17444, 427, 3550, 10812, 15, 26, 3274, 96, 357, 2712, 121, 1, -100, -100, -100, -100, -100...
Which sport had the club of the Montgomery Biscuits?
CREATE TABLE table_76699 ( "Club" text, "City" text, "Sport" text, "League" text, "Venue" text )
SELECT "Sport" FROM table_76699 WHERE "Club" = 'montgomery biscuits'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 940, 3539, 3264, 41, 96, 254, 11158, 121, 1499, 6, 96, 254, 485, 121, 1499, 6, 96, 17682, 121, 1499, 6, 96, 2796, 9, 5398, 121, 1499, 6, 96, 553, 35, 76, 15, 121, 1499,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 17682, 121, 21680, 953, 834, 940, 3539, 3264, 549, 17444, 427, 96, 254, 11158, 121, 3274, 3, 31, 4662, 839, 935, 63, 18922, 7, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is Res., when Location is 'Butte, Montana , United States', and when Opponent is 'Jerome Smith'?
CREATE TABLE table_name_81 ( res VARCHAR, location VARCHAR, opponent VARCHAR )
SELECT res FROM table_name_81 WHERE location = "butte, montana , united states" AND opponent = "jerome smith"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4959, 41, 3, 60, 7, 584, 4280, 28027, 6, 1128, 584, 4280, 28027, 6, 15264, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 7127, 5, 6, 116, 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, 3, 60, 7, 21680, 953, 834, 4350, 834, 4959, 549, 17444, 427, 1128, 3274, 96, 2780, 17, 15, 6, 6278, 152, 9, 3, 6, 18279, 2315, 121, 3430, 15264, 3274, 96, 1924, 11956, 3, 16331, 121, 1, -100, -100, -100, -100, -...
Can you tell me the English translation that has the Artist of camillo felgen?
CREATE TABLE table_name_61 ( english_translation VARCHAR, artist VARCHAR )
SELECT english_translation FROM table_name_61 WHERE artist = "camillo felgen"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4241, 41, 22269, 834, 7031, 6105, 584, 4280, 28027, 6, 2377, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 1072, 25, 817, 140, 8, 1566, 7314, 24, 65, 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, 22269, 834, 7031, 6105, 21680, 953, 834, 4350, 834, 4241, 549, 17444, 427, 2377, 3274, 96, 6527, 1092, 32, 3110, 729, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
whats the name of the organism found in the last blood, venipuncture microbiology test of patient 031-4987.
CREATE TABLE lab ( labid number, patientunitstayid number, labname text, labresult number, labresulttime time ) CREATE TABLE diagnosis ( diagnosisid number, patientunitstayid number, diagnosisname text, diagnosistime time, icd9code text ) CREATE TABLE vitalperiodic ( vitalp...
SELECT microlab.organism FROM microlab WHERE microlab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '031-4987')) AND microlab.culturesite = 'blood, venipuncture' ORDER BY mic...
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7690, 41, 50, 9824, 381, 6, 1868, 15129, 21545, 23, 26, 381, 6, 7690, 4350, 1499, 6, 50, 1999, 7, 83, 17, 381, 6, 50, 1999, 7, 83, 17, 715, 97, 3, 61, 3, 32102, 32103, 32102, 2...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2179, 9339, 5, 11127, 159, 51, 21680, 2179, 9339, 549, 17444, 427, 2179, 9339, 5, 10061, 15129, 21545, 23, 26, 3388, 41, 23143, 14196, 1868, 5, 10061, 15129, 21545, 23, 26, 21680, 1868, 549, 17444, 427, 1868, 5, 10061...
What was the score of the friendly match at Amman on February 14, 2006?
CREATE TABLE table_78670 ( "Date" text, "Venue" text, "Score" text, "Result" text, "Competition" text )
SELECT "Score" FROM table_78670 WHERE "Venue" = 'amman' AND "Competition" = 'friendly' AND "Date" = 'february 14, 2006'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3940, 3708, 632, 41, 96, 308, 342, 121, 1499, 6, 96, 553, 35, 76, 15, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 20119, 121, 1499, 6, 96, 5890, 4995, 4749, 121, 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, 134, 9022, 121, 21680, 953, 834, 3940, 3708, 632, 549, 17444, 427, 96, 553, 35, 76, 15, 121, 3274, 3, 31, 265, 348, 31, 3430, 96, 5890, 4995, 4749, 121, 3274, 3, 31, 4905, 31, 3430, 96, 308, 342, 121, 3274, ...
What was the aggregate for Ricky Groves?
CREATE TABLE table_25931938_1 (aggregate INTEGER, celebrity VARCHAR)
SELECT MAX(aggregate) FROM table_25931938_1 WHERE celebrity = "Ricky Groves"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1828, 4271, 2294, 3747, 834, 536, 41, 31761, 15, 3, 21342, 17966, 6, 17086, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 12955, 21, 11066, 63, 14643, 7, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 31761, 15, 61, 21680, 953, 834, 1828, 4271, 2294, 3747, 834, 536, 549, 17444, 427, 17086, 3274, 96, 448, 3142, 63, 14643, 7, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
When was the match with a result of sa by 10 wkts?
CREATE TABLE table_name_23 (date VARCHAR, result VARCHAR)
SELECT date FROM table_name_23 WHERE result = "sa by 10 wkts"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2773, 41, 5522, 584, 4280, 28027, 6, 741, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 366, 47, 8, 1588, 28, 3, 9, 741, 13, 3, 7, 9, 57, 335, 3, 210,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 833, 21680, 953, 834, 4350, 834, 2773, 549, 17444, 427, 741, 3274, 96, 7, 9, 57, 335, 3, 210, 157, 17, 7, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What was the state with the total electricity generated is 38380 gw-h?
CREATE TABLE table_27480 ( "Rank" real, "Rank w/o Hydropower" real, "State" text, "% Renewable" text, "% Renewable w/o Hydro" text, "Renewable electricity (GW\u00b7h)" real, "Renewable electricity w/o Hydro (GW\u00b7h)" real, "Total electricity (GW\u00b7h)" real )
SELECT "State" FROM table_27480 WHERE "Total electricity (GW\u00b7h)" = '38380'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2555, 20579, 41, 96, 22557, 121, 490, 6, 96, 22557, 3, 210, 87, 32, 17239, 6740, 121, 490, 6, 96, 134, 4748, 121, 1499, 6, 96, 1454, 31519, 121, 1499, 6, 96, 1454, 31519,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 134, 4748, 121, 21680, 953, 834, 2555, 20579, 549, 17444, 427, 96, 3696, 1947, 6373, 41, 20555, 2, 76, 1206, 115, 940, 107, 61, 121, 3274, 3, 31, 3747, 22671, 31, 1, -100, -100, -100, -100, -100, -100, -100, -...
How many millions of viewers are listed where the writer is Matthew Okumura?
CREATE TABLE table_30646 ( "No." real, "#" real, "Title" text, "Directed by" text, "Written by" text, "U.S. air date" text, "Production code" real, "U.S. viewers (million)" text )
SELECT "U.S. viewers (million)" FROM table_30646 WHERE "Written by" = 'Matthew Okumura'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1458, 4389, 948, 41, 96, 4168, 535, 490, 6, 96, 4663, 121, 490, 6, 96, 382, 155, 109, 121, 1499, 6, 96, 23620, 15, 26, 57, 121, 1499, 6, 96, 24965, 324, 57, 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, 1265, 5, 134, 5, 13569, 41, 17030, 61, 121, 21680, 953, 834, 1458, 4389, 948, 549, 17444, 427, 96, 24965, 324, 57, 121, 3274, 3, 31, 329, 144, 532, 210, 8872, 440, 2414, 31, 1, -100, -100, -100, -100, -100, ...
How many teams were promoted in the postseason in a tier above 2?
CREATE TABLE table_58040 ( "Season" text, "Tier" real, "League" text, "Pos." real, "Postseason" text, "Turkish Cup" text )
SELECT COUNT("Pos.") FROM table_58040 WHERE "Postseason" = 'promoted' AND "Tier" < '2'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 755, 2079, 2445, 41, 96, 134, 15, 9, 739, 121, 1499, 6, 96, 382, 972, 121, 490, 6, 96, 2796, 9, 5398, 121, 1499, 6, 96, 345, 32, 7, 535, 490, 6, 96, 22507, 9476, 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, 2847, 17161, 599, 121, 345, 32, 7, 5, 8512, 21680, 953, 834, 755, 2079, 2445, 549, 17444, 427, 96, 22507, 9476, 121, 3274, 3, 31, 1409, 8888, 15, 26, 31, 3430, 96, 382, 972, 121, 3, 2, 3, 31, 357, 31, 1, -100,...
How many data are there under NO vote with a description of $1500 tax exemption amendment?
CREATE TABLE table_256286_8 (no_votes VARCHAR, description VARCHAR)
SELECT COUNT(no_votes) FROM table_256286_8 WHERE description = "$1500 Tax Exemption Amendment"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1828, 4056, 3840, 834, 927, 41, 29, 32, 834, 1621, 1422, 584, 4280, 28027, 6, 4210, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 331, 33, 132, 365, 5693, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 29, 32, 834, 1621, 1422, 61, 21680, 953, 834, 1828, 4056, 3840, 834, 927, 549, 17444, 427, 4210, 3274, 96, 3229, 536, 2560, 5287, 1881, 29881, 18397, 121, 1, -100, -100, -100, -100, -100, -100, -100,...
Who played in the series that resulted in matches with the following scores: 0–3 0–8 0–1 0–2 0–3 1–4 0–9 0–5?
CREATE TABLE table_14263158_3 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_14263158_3 WHERE result = "0–3 0–8 0–1 0–2 0–3 1–4 0–9 0–5"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 24978, 3891, 26556, 834, 519, 41, 32, 102, 9977, 584, 4280, 28027, 6, 741, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 2645, 1944, 16, 8, 939, 24, 741, 15, 26, 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, 15264, 21680, 953, 834, 24978, 3891, 26556, 834, 519, 549, 17444, 427, 741, 3274, 96, 632, 104, 519, 3, 632, 104, 927, 3, 632, 104, 536, 3, 632, 104, 357, 3, 632, 104, 519, 209, 104, 591, 3, 632, 104, 1298, 3, ...
Who was the away team at Windy Hill?
CREATE TABLE table_51911 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Away team" FROM table_51911 WHERE "Venue" = 'windy hill'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 755, 2294, 2596, 41, 96, 19040, 372, 121, 1499, 6, 96, 19040, 372, 2604, 121, 1499, 6, 96, 188, 1343, 372, 121, 1499, 6, 96, 188, 1343, 372, 2604, 121, 1499, 6, 96, 553, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 188, 1343, 372, 121, 21680, 953, 834, 755, 2294, 2596, 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, -10...
Who is the captain of the team in Essex county?
CREATE TABLE table_1872 ( "Team" text, "Location" text, "County" text, "Division" text, "Home ground" text, "Coach" text, "Captain" text )
SELECT "Captain" FROM table_1872 WHERE "County" = 'Essex'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 25828, 357, 41, 96, 18699, 121, 1499, 6, 96, 434, 32, 75, 257, 121, 1499, 6, 96, 10628, 63, 121, 1499, 6, 96, 308, 23, 6610, 121, 1499, 6, 96, 19040, 1591, 121, 1499, 6...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 19566, 17, 9, 77, 121, 21680, 953, 834, 25828, 357, 549, 17444, 427, 96, 10628, 63, 121, 3274, 3, 31, 427, 7, 7, 994, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What episode had a share percentage of 41.5%?
CREATE TABLE table_27319183_7 ( episode VARCHAR, share___percentage_ VARCHAR )
SELECT episode FROM table_27319183_7 WHERE share___percentage_ = "41.5"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2555, 519, 2294, 24361, 834, 940, 41, 5640, 584, 4280, 28027, 6, 698, 834, 834, 834, 883, 3728, 545, 834, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 5640, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 5640, 21680, 953, 834, 2555, 519, 2294, 24361, 834, 940, 549, 17444, 427, 698, 834, 834, 834, 883, 3728, 545, 834, 3274, 96, 4853, 5, 17395, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the length of the UK remix version?
CREATE TABLE table_name_68 ( length VARCHAR, version VARCHAR )
SELECT length FROM table_name_68 WHERE version = "uk remix"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3651, 41, 2475, 584, 4280, 28027, 6, 988, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 2475, 13, 8, 1270, 26063, 988, 58, 1, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2475, 21680, 953, 834, 4350, 834, 3651, 549, 17444, 427, 988, 3274, 96, 1598, 26063, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...