instruction
stringlengths
0
1.06k
response
stringlengths
2
3.61k
input_ids
list
attention_mask
list
labels
list
provide the number of patients whose admission type is elective and ethnicity is white?
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.admission_type = "ELECTIVE" AND demographic.ethnicity = "WHITE"
[ 15234, 485, 262, 1271, 286, 3871, 3025, 13938, 2099, 318, 1742, 425, 290, 26289, 318, 2330, 30, 46506, 327, 28270, 7, 35, 8808, 1268, 4177, 16728, 13, 32796, 62, 312, 8, 16034, 16728, 33411, 16728, 13, 324, 3411, 62, 4906, 796, 366, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 15234, 485, 262, 1271, 286, 3871, 3025, 13938, 2099, 318, 1742, 425, 290, 26289, 318, 2330, 30, 46506, 327, 28270, 7, 35, 8808, 1268, 4177, 16728, 13, 32796, 62, 312, 8, 16034, 16728, 33411, 16728, 13, 324, 3411, 62, 4906, 796, 366, ...
what were the top four medicines that were frequently prescribed until 4 years ago?
SELECT t1.drugname FROM (SELECT medication.drugname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM medication WHERE DATETIME(medication.drugstarttime) <= DATETIME(CURRENT_TIME(), '-4 year') GROUP BY medication.drugname) AS t1 WHERE t1.c1 <= 4
[ 10919, 547, 262, 1353, 1440, 23533, 326, 547, 6777, 14798, 1566, 604, 812, 2084, 30, 46506, 256, 16, 13, 30349, 3672, 16034, 357, 46506, 14103, 13, 30349, 3672, 11, 360, 24290, 62, 49, 15154, 3419, 28729, 357, 12532, 1137, 11050, 327, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 10919, 547, 262, 1353, 1440, 23533, 326, 547, 6777, 14798, 1566, 604, 812, 2084, 30, 46506, 256, 16, 13, 30349, 3672, 16034, 357, 46506, 14103, 13, 30349, 3672, 11, 360, 24290, 62, 49, 15154, 3419, 28729, 357, 12532, 1137, 11050, 327, ...
What is the High rebounds of washington Team?
SELECT "High rebounds" FROM table_5066 WHERE "Team" = 'washington'
[ 2061, 318, 262, 3334, 18841, 286, 20518, 1122, 4816, 30, 46506, 366, 11922, 18841, 1, 16034, 3084, 62, 1120, 2791, 33411, 366, 15592, 1, 796, 705, 86, 2542, 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 ]
[ 2061, 318, 262, 3334, 18841, 286, 20518, 1122, 4816, 30, 46506, 366, 11922, 18841, 1, 16034, 3084, 62, 1120, 2791, 33411, 366, 15592, 1, 796, 705, 86, 2542, 6 ]
What is the greatest number of losses when there are more than 0 draws and 1390 against matches?
SELECT MAX("Losses") FROM table_59648 WHERE "Draws" > '0' AND "Against" = '1390'
[ 2061, 318, 262, 6000, 1271, 286, 9089, 618, 612, 389, 517, 621, 657, 14293, 290, 1511, 3829, 1028, 7466, 30, 46506, 25882, 7203, 43, 793, 274, 4943, 16034, 3084, 62, 3270, 34287, 33411, 366, 25302, 82, 1, 1875, 705, 15, 6, 5357, 366...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 318, 262, 6000, 1271, 286, 9089, 618, 612, 389, 517, 621, 657, 14293, 290, 1511, 3829, 1028, 7466, 30, 46506, 25882, 7203, 43, 793, 274, 4943, 16034, 3084, 62, 3270, 34287, 33411, 366, 25302, 82, 1, 1875, 705, 15, 6, 5357, 366...
When the Long is 42, what is the average TD's?
SELECT AVG("TD's") FROM table_11248 WHERE "Long" = '42'
[ 2215, 262, 5882, 318, 5433, 11, 644, 318, 262, 2811, 13320, 338, 30, 46506, 35224, 7203, 21016, 338, 4943, 16034, 3084, 62, 14686, 2780, 33411, 366, 14617, 1, 796, 705, 3682, 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 ]
[ 2215, 262, 5882, 318, 5433, 11, 644, 318, 262, 2811, 13320, 338, 30, 46506, 35224, 7203, 21016, 338, 4943, 16034, 3084, 62, 14686, 2780, 33411, 366, 14617, 1, 796, 705, 3682, 6 ]
What away team has a Tie no of 5?
SELECT away_team FROM table_name_97 WHERE tie_no = "5"
[ 2061, 1497, 1074, 468, 257, 36286, 645, 286, 642, 30, 46506, 1497, 62, 15097, 16034, 3084, 62, 3672, 62, 5607, 33411, 9839, 62, 3919, 796, 366, 20, 1 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 1497, 1074, 468, 257, 36286, 645, 286, 642, 30, 46506, 1497, 62, 15097, 16034, 3084, 62, 3672, 62, 5607, 33411, 9839, 62, 3919, 796, 366, 20, 1 ]
in which year did she have the least amount of awards or nominations ?
SELECT "year" FROM table_203_757 GROUP BY "year" ORDER BY COUNT(*) LIMIT 1
[ 259, 543, 614, 750, 673, 423, 262, 1551, 2033, 286, 13304, 393, 30994, 5633, 46506, 366, 1941, 1, 16034, 3084, 62, 22416, 62, 39251, 44441, 11050, 366, 1941, 1, 38678, 11050, 327, 28270, 7, 28104, 27564, 2043, 352 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 259, 543, 614, 750, 673, 423, 262, 1551, 2033, 286, 13304, 393, 30994, 5633, 46506, 366, 1941, 1, 16034, 3084, 62, 22416, 62, 39251, 44441, 11050, 366, 1941, 1, 38678, 11050, 327, 28270, 7, 28104, 27564, 2043, 352 ]
What Pick number is Rich Burtness?
SELECT AVG("Pick") FROM table_11327 WHERE "Name" = 'rich burtness'
[ 2061, 12346, 1271, 318, 3998, 347, 3325, 1108, 30, 46506, 35224, 7203, 31686, 4943, 16034, 3084, 62, 16616, 1983, 33411, 366, 5376, 1, 796, 705, 7527, 275, 3325, 1108, 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 ]
[ 2061, 12346, 1271, 318, 3998, 347, 3325, 1108, 30, 46506, 35224, 7203, 31686, 4943, 16034, 3084, 62, 16616, 1983, 33411, 366, 5376, 1, 796, 705, 7527, 275, 3325, 1108, 6 ]
What did Denmark time at?
SELECT time FROM table_name_87 WHERE country = "denmark"
[ 2061, 750, 16490, 640, 379, 30, 46506, 640, 16034, 3084, 62, 3672, 62, 5774, 33411, 1499, 796, 366, 6559, 4102, 1 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 750, 16490, 640, 379, 30, 46506, 640, 16034, 3084, 62, 3672, 62, 5774, 33411, 1499, 796, 366, 6559, 4102, 1 ]
Can you tell me the average December rhat has the Opponent of @ toronto maple leafs?
SELECT AVG("December") FROM table_49874 WHERE "Opponent" = '@ toronto maple leafs'
[ 6090, 345, 1560, 502, 262, 2811, 3426, 374, 5183, 468, 262, 9385, 3471, 286, 2488, 7332, 5957, 31377, 12835, 82, 30, 46506, 35224, 7203, 20588, 4943, 16034, 3084, 62, 36260, 4524, 33411, 366, 27524, 3471, 1, 796, 705, 31, 7332, 5957, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 6090, 345, 1560, 502, 262, 2811, 3426, 374, 5183, 468, 262, 9385, 3471, 286, 2488, 7332, 5957, 31377, 12835, 82, 30, 46506, 35224, 7203, 20588, 4943, 16034, 3084, 62, 36260, 4524, 33411, 366, 27524, 3471, 1, 796, 705, 31, 7332, 5957, ...
what is the height (m) when the birth date is 1968-07-01?
SELECT height__m_ FROM table_name_89 WHERE birth_date = "1968-07-01"
[ 10919, 318, 262, 6001, 357, 76, 8, 618, 262, 4082, 3128, 318, 15963, 12, 2998, 12, 486, 30, 46506, 6001, 834, 76, 62, 16034, 3084, 62, 3672, 62, 4531, 33411, 4082, 62, 4475, 796, 366, 42246, 12, 2998, 12, 486, 1 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 10919, 318, 262, 6001, 357, 76, 8, 618, 262, 4082, 3128, 318, 15963, 12, 2998, 12, 486, 30, 46506, 6001, 834, 76, 62, 16034, 3084, 62, 3672, 62, 4531, 33411, 4082, 62, 4475, 796, 366, 42246, 12, 2998, 12, 486, 1 ]
What's the total number of picks of a team that had june longalong?
SELECT SUM(pick) FROM table_name_28 WHERE player = "june longalong"
[ 2061, 338, 262, 2472, 1271, 286, 11103, 286, 257, 1074, 326, 550, 474, 1726, 890, 24176, 30, 46506, 35683, 7, 27729, 8, 16034, 3084, 62, 3672, 62, 2078, 33411, 2137, 796, 366, 73, 1726, 890, 24176, 1 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 338, 262, 2472, 1271, 286, 11103, 286, 257, 1074, 326, 550, 474, 1726, 890, 24176, 30, 46506, 35683, 7, 27729, 8, 16034, 3084, 62, 3672, 62, 2078, 33411, 2137, 796, 366, 73, 1726, 890, 24176, 1 ]
how many days has it been since last time patient 025-50213 was prescribed dextrose 50% 25 gram/50 ml syr during this hospital encounter?
SELECT 1 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', medication.drugstarttime)) FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '025-502...
[ 4919, 867, 1528, 468, 340, 587, 1201, 938, 640, 5827, 657, 1495, 12, 1120, 26427, 373, 14798, 390, 742, 13698, 2026, 4, 1679, 14599, 14, 1120, 25962, 827, 81, 1141, 428, 4436, 8791, 30, 46506, 352, 1635, 357, 18601, 9792, 12789, 10786...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 4919, 867, 1528, 468, 340, 587, 1201, 938, 640, 5827, 657, 1495, 12, 1120, 26427, 373, 14798, 390, 742, 13698, 2026, 4, 1679, 14599, 14, 1120, 25962, 827, 81, 1141, 428, 4436, 8791, 30, 46506, 352, 1635, 357, 18601, 9792, 12789, 10786...
what is the least floors when the building type is residential and the sr no is 8?
SELECT MIN("Floors") FROM table_13717 WHERE "Building Type" = 'residential' AND "Sr No" = '8'
[ 10919, 318, 262, 1551, 18570, 618, 262, 2615, 2099, 318, 12420, 290, 262, 19677, 645, 318, 807, 30, 46506, 20625, 7203, 33574, 669, 4943, 16034, 3084, 62, 19708, 1558, 33411, 366, 25954, 5994, 1, 796, 705, 8154, 498, 6, 5357, 366, 50,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 10919, 318, 262, 1551, 18570, 618, 262, 2615, 2099, 318, 12420, 290, 262, 19677, 645, 318, 807, 30, 46506, 20625, 7203, 33574, 669, 4943, 16034, 3084, 62, 19708, 1558, 33411, 366, 25954, 5994, 1, 796, 705, 8154, 498, 6, 5357, 366, 50,...
what is the nation when the world rank is 2 and the birth date is 1976-12-20?
SELECT nation FROM table_name_35 WHERE world_rank = "2" AND birth_date = "1976-12-20"
[ 10919, 318, 262, 3277, 618, 262, 995, 4279, 318, 362, 290, 262, 4082, 3128, 318, 15408, 12, 1065, 12, 1238, 30, 46506, 3277, 16034, 3084, 62, 3672, 62, 2327, 33411, 995, 62, 43027, 796, 366, 17, 1, 5357, 4082, 62, 4475, 796, 366, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 10919, 318, 262, 3277, 618, 262, 995, 4279, 318, 362, 290, 262, 4082, 3128, 318, 15408, 12, 1065, 12, 1238, 30, 46506, 3277, 16034, 3084, 62, 3672, 62, 2327, 33411, 995, 62, 43027, 796, 366, 17, 1, 5357, 4082, 62, 4475, 796, 366, ...
what was the first specimen test that was given to patient 031-15417 until 11/2105?
SELECT microlab.culturesite FROM microlab WHERE microlab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '031-15417')) AND STRFTIME('%y-%m', microlab.culturetakentime) <= '2105...
[ 10919, 373, 262, 717, 31674, 1332, 326, 373, 1813, 284, 5827, 657, 3132, 12, 21526, 1558, 1566, 1367, 14, 17, 13348, 30, 46506, 4580, 23912, 13, 40820, 942, 578, 16034, 4580, 23912, 33411, 4580, 23912, 13, 26029, 20850, 31712, 312, 3268...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 10919, 373, 262, 717, 31674, 1332, 326, 373, 1813, 284, 5827, 657, 3132, 12, 21526, 1558, 1566, 1367, 14, 17, 13348, 30, 46506, 4580, 23912, 13, 40820, 942, 578, 16034, 4580, 23912, 33411, 4580, 23912, 13, 26029, 20850, 31712, 312, 3268...
What is the score on February 23, 2005?
SELECT "Score" FROM table_52315 WHERE "Date" = 'february 23, 2005'
[ 2061, 318, 262, 4776, 319, 3945, 2242, 11, 5075, 30, 46506, 366, 26595, 1, 16034, 3084, 62, 49803, 1314, 33411, 366, 10430, 1, 796, 705, 69, 1765, 3728, 2242, 11, 5075, 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 ]
[ 2061, 318, 262, 4776, 319, 3945, 2242, 11, 5075, 30, 46506, 366, 26595, 1, 16034, 3084, 62, 49803, 1314, 33411, 366, 10430, 1, 796, 705, 69, 1765, 3728, 2242, 11, 5075, 6 ]
What date was the week 6 game played on?
SELECT date FROM table_name_80 WHERE week = 6
[ 2061, 3128, 373, 262, 1285, 718, 983, 2826, 319, 30, 46506, 3128, 16034, 3084, 62, 3672, 62, 1795, 33411, 1285, 796, 718 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 3128, 373, 262, 1285, 718, 983, 2826, 319, 30, 46506, 3128, 16034, 3084, 62, 3672, 62, 1795, 33411, 1285, 796, 718 ]
Which Streak has a Game of 3?
SELECT "Streak" FROM table_45801 WHERE "Game" = '3'
[ 13828, 9737, 461, 468, 257, 3776, 286, 513, 30, 46506, 366, 30611, 461, 1, 16034, 3084, 62, 29334, 486, 33411, 366, 8777, 1, 796, 705, 18, 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 ]
[ 13828, 9737, 461, 468, 257, 3776, 286, 513, 30, 46506, 366, 30611, 461, 1, 16034, 3084, 62, 29334, 486, 33411, 366, 8777, 1, 796, 705, 18, 6 ]
what was the game made in the year previous to 1994 ?
SELECT "title" FROM table_203_489 WHERE "year" < 1994 ORDER BY "year" DESC LIMIT 1
[ 10919, 373, 262, 983, 925, 287, 262, 614, 2180, 284, 9162, 5633, 46506, 366, 7839, 1, 16034, 3084, 62, 22416, 62, 35890, 33411, 366, 1941, 1, 1279, 9162, 38678, 11050, 366, 1941, 1, 22196, 34, 27564, 2043, 352 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 10919, 373, 262, 983, 925, 287, 262, 614, 2180, 284, 9162, 5633, 46506, 366, 7839, 1, 16034, 3084, 62, 22416, 62, 35890, 33411, 366, 1941, 1, 1279, 9162, 38678, 11050, 366, 1941, 1, 22196, 34, 27564, 2043, 352 ]
WHAT IS THE OVERALL AVERAGE WITH A 22 PICK, FROM RICE COLLEGE, AND ROUND BIGGER THAN 10?
SELECT AVG(overall) FROM table_name_23 WHERE pick = 22 AND college = "rice" AND round > 10
[ 32971, 3180, 3336, 28729, 7036, 317, 5959, 11879, 13315, 317, 2534, 350, 11860, 11, 16034, 371, 8476, 20444, 2538, 8264, 11, 5357, 371, 15919, 26746, 30373, 2320, 1565, 838, 30, 46506, 35224, 7, 2502, 439, 8, 16034, 3084, 62, 3672, 62, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 32971, 3180, 3336, 28729, 7036, 317, 5959, 11879, 13315, 317, 2534, 350, 11860, 11, 16034, 371, 8476, 20444, 2538, 8264, 11, 5357, 371, 15919, 26746, 30373, 2320, 1565, 838, 30, 46506, 35224, 7, 2502, 439, 8, 16034, 3084, 62, 3672, 62, ...
what are some good places for arabic on buchanan in san francisco ?
SELECT location.house_number, restaurant.name FROM location, restaurant WHERE location.city_name = 'san francisco' AND location.street_name = 'buchanan' AND restaurant.food_type = 'arabic' AND restaurant.id = location.restaurant_id AND restaurant.rating > 2.5
[ 10919, 389, 617, 922, 4113, 329, 610, 397, 291, 319, 275, 794, 27870, 287, 5336, 46754, 4861, 5633, 46506, 4067, 13, 4803, 62, 17618, 11, 7072, 13, 3672, 16034, 4067, 11, 7072, 33411, 4067, 13, 19205, 62, 3672, 796, 705, 12807, 46754,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 10919, 389, 617, 922, 4113, 329, 610, 397, 291, 319, 275, 794, 27870, 287, 5336, 46754, 4861, 5633, 46506, 4067, 13, 4803, 62, 17618, 11, 7072, 13, 3672, 16034, 4067, 11, 7072, 33411, 4067, 13, 19205, 62, 3672, 796, 705, 12807, 46754,...
List all dates where South Florida was a visiting team.
SELECT "Date" FROM table_29076 WHERE "Visiting team" = 'South Florida'
[ 8053, 477, 9667, 810, 2520, 4744, 373, 257, 10013, 1074, 13, 46506, 366, 10430, 1, 16034, 3084, 62, 1959, 2998, 21, 33411, 366, 15854, 1780, 1074, 1, 796, 705, 14942, 4744, 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 ]
[ 8053, 477, 9667, 810, 2520, 4744, 373, 257, 10013, 1074, 13, 46506, 366, 10430, 1, 16034, 3084, 62, 1959, 2998, 21, 33411, 366, 15854, 1780, 1074, 1, 796, 705, 14942, 4744, 6 ]
Which Week has an Opponent of san francisco 49ers?
SELECT MAX(week) FROM table_name_46 WHERE opponent = "san francisco 49ers"
[ 13828, 6119, 468, 281, 9385, 3471, 286, 5336, 46754, 4861, 5125, 364, 30, 46506, 25882, 7, 10464, 8, 16034, 3084, 62, 3672, 62, 3510, 33411, 6125, 796, 366, 12807, 46754, 4861, 5125, 364, 1 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 13828, 6119, 468, 281, 9385, 3471, 286, 5336, 46754, 4861, 5125, 364, 30, 46506, 25882, 7, 10464, 8, 16034, 3084, 62, 3672, 62, 3510, 33411, 6125, 796, 366, 12807, 46754, 4861, 5125, 364, 1 ]
What was the name of the quarterback drafted?
SELECT "Player name" FROM table_16070 WHERE "Position" = 'Quarterback'
[ 2061, 373, 262, 1438, 286, 262, 7880, 15937, 30, 46506, 366, 14140, 1438, 1, 16034, 3084, 62, 14198, 2154, 33411, 366, 26545, 1, 796, 705, 4507, 2571, 1891, 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 ]
[ 2061, 373, 262, 1438, 286, 262, 7880, 15937, 30, 46506, 366, 14140, 1438, 1, 16034, 3084, 62, 14198, 2154, 33411, 366, 26545, 1, 796, 705, 4507, 2571, 1891, 6 ]
Who was the replacement for the Brussels team with a date of vacancy of 22 December 2007?
SELECT replaced_by FROM table_name_46 WHERE team = "brussels" AND date_of_vacancy = "22 december 2007"
[ 8241, 373, 262, 9014, 329, 262, 16445, 1074, 351, 257, 3128, 286, 39836, 286, 2534, 3426, 4343, 30, 46506, 6928, 62, 1525, 16034, 3084, 62, 3672, 62, 3510, 33411, 1074, 796, 366, 1671, 385, 14002, 1, 5357, 3128, 62, 1659, 62, 85, 33...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 8241, 373, 262, 9014, 329, 262, 16445, 1074, 351, 257, 3128, 286, 39836, 286, 2534, 3426, 4343, 30, 46506, 6928, 62, 1525, 16034, 3084, 62, 3672, 62, 3510, 33411, 1074, 796, 366, 1671, 385, 14002, 1, 5357, 3128, 62, 1659, 62, 85, 33...
A bar chart shows the distribution of Date_of_Birth and Height , show X in descending order.
SELECT Date_of_Birth, Height FROM people ORDER BY Date_of_Birth DESC
[ 32, 2318, 8262, 2523, 262, 6082, 286, 7536, 62, 1659, 62, 38480, 290, 27280, 837, 905, 1395, 287, 31491, 1502, 13, 46506, 7536, 62, 1659, 62, 38480, 11, 27280, 16034, 661, 38678, 11050, 7536, 62, 1659, 62, 38480, 22196, 34 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 32, 2318, 8262, 2523, 262, 6082, 286, 7536, 62, 1659, 62, 38480, 290, 27280, 837, 905, 1395, 287, 31491, 1502, 13, 46506, 7536, 62, 1659, 62, 38480, 11, 27280, 16034, 661, 38678, 11050, 7536, 62, 1659, 62, 38480, 22196, 34 ]
This Spring-Summer , ENGR 996 with be taught by whom ?
SELECT DISTINCT instructor.name FROM course INNER JOIN course_offering ON course.course_id = course_offering.course_id INNER JOIN offering_instructor ON offering_instructor.offering_id = course_offering.offering_id INNER JOIN instructor ON offering_instructor.instructor_id = instructor.instructor_id INNER JOIN semester...
[ 1212, 8225, 12, 33560, 837, 36924, 49, 860, 4846, 351, 307, 7817, 416, 4150, 5633, 46506, 360, 8808, 1268, 4177, 21187, 13, 3672, 16034, 1781, 3268, 21479, 32357, 1268, 1781, 62, 2364, 1586, 6177, 1781, 13, 17319, 62, 312, 796, 1781, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 1212, 8225, 12, 33560, 837, 36924, 49, 860, 4846, 351, 307, 7817, 416, 4150, 5633, 46506, 360, 8808, 1268, 4177, 21187, 13, 3672, 16034, 1781, 3268, 21479, 32357, 1268, 1781, 62, 2364, 1586, 6177, 1781, 13, 17319, 62, 312, 796, 1781, ...
Return a pie chart to show how many documents for different budget type description.
SELECT Budget_Type_Description, COUNT(Budget_Type_Description) FROM Documents_with_Expenses AS T1 JOIN Ref_Budget_Codes AS T2 ON T1.Budget_Type_Code = T2.Budget_Type_Code GROUP BY Budget_Type_Description
[ 13615, 257, 2508, 8262, 284, 905, 703, 867, 4963, 329, 1180, 4466, 2099, 6764, 13, 46506, 15401, 62, 6030, 62, 11828, 11, 327, 28270, 7, 33, 29427, 62, 6030, 62, 11828, 8, 16034, 33267, 62, 4480, 62, 16870, 4541, 7054, 309, 16, 3235...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 13615, 257, 2508, 8262, 284, 905, 703, 867, 4963, 329, 1180, 4466, 2099, 6764, 13, 46506, 15401, 62, 6030, 62, 11828, 11, 327, 28270, 7, 33, 29427, 62, 6030, 62, 11828, 8, 16034, 33267, 62, 4480, 62, 16870, 4541, 7054, 309, 16, 3235...
What were the names of the mixed doubles pair for the year that Ralph Nichols played in the men's singles match?
SELECT "Mixed doubles" FROM table_67374 WHERE "Men's singles" = 'ralph nichols'
[ 2061, 547, 262, 3891, 286, 262, 7668, 21938, 5166, 329, 262, 614, 326, 20993, 38403, 2826, 287, 262, 1450, 338, 25287, 2872, 30, 46506, 366, 44, 2966, 21938, 1, 16034, 3084, 62, 3134, 31020, 33411, 366, 10418, 338, 25287, 1, 796, 705,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 547, 262, 3891, 286, 262, 7668, 21938, 5166, 329, 262, 614, 326, 20993, 38403, 2826, 287, 262, 1450, 338, 25287, 2872, 30, 46506, 366, 44, 2966, 21938, 1, 16034, 3084, 62, 3134, 31020, 33411, 366, 10418, 338, 25287, 1, 796, 705,...
Looking for off topic close reason details.
SELECT p.Id AS "post_link", pht.Name, ph.*, pf.* FROM Posts AS p INNER JOIN PostHistory AS ph ON ph.PostId = p.Id INNER JOIN PostHistoryTypes AS pht ON ph.PostHistoryTypeId = pht.Id INNER JOIN PendingFlags AS pf ON pf.PostId = p.Id AND ph.Comment = 102
[ 15784, 329, 572, 7243, 1969, 1738, 3307, 13, 46506, 279, 13, 7390, 7054, 366, 7353, 62, 8726, 1600, 872, 83, 13, 5376, 11, 872, 15885, 11, 279, 69, 15885, 16034, 12043, 7054, 279, 3268, 21479, 32357, 1268, 2947, 18122, 7054, 872, 6177...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 15784, 329, 572, 7243, 1969, 1738, 3307, 13, 46506, 279, 13, 7390, 7054, 366, 7353, 62, 8726, 1600, 872, 83, 13, 5376, 11, 872, 15885, 11, 279, 69, 15885, 16034, 12043, 7054, 279, 3268, 21479, 32357, 1268, 2947, 18122, 7054, 872, 6177...
What is the maximum goals conceded for a team with 2 draws, more than 29 goals and a diff larger than 15?
SELECT MAX(goals_conceded__gc_) FROM table_name_84 WHERE draw__pe_ = 2 AND goals_scored__gf_ > 29 AND ____dif_ > 15
[ 2061, 318, 262, 5415, 4661, 24684, 329, 257, 1074, 351, 362, 14293, 11, 517, 621, 2808, 4661, 290, 257, 814, 4025, 621, 1315, 30, 46506, 25882, 7, 2188, 874, 62, 1102, 771, 276, 834, 36484, 62, 8, 16034, 3084, 62, 3672, 62, 5705, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 2061, 318, 262, 5415, 4661, 24684, 329, 257, 1074, 351, 362, 14293, 11, 517, 621, 2808, 4661, 290, 257, 814, 4025, 621, 1315, 30, 46506, 25882, 7, 2188, 874, 62, 1102, 771, 276, 834, 36484, 62, 8, 16034, 3084, 62, 3672, 62, 5705, ...
Income poverty f smaller than 13.6, and a Mining b of 1, and a Structural poverty g smaller than 7.8, so what is the total number of agriculture?
SELECT COUNT(agri_culture_b) FROM table_name_10 WHERE income_poverty_f < 13.6 AND mining_b = 1 AND structural_poverty_g < 7.8
[ 818, 2958, 8098, 277, 4833, 621, 1511, 13, 21, 11, 290, 257, 29269, 275, 286, 352, 11, 290, 257, 32112, 1523, 8098, 308, 4833, 621, 767, 13, 23, 11, 523, 644, 318, 262, 2472, 1271, 286, 14510, 30, 46506, 327, 28270, 7, 363, 380, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 818, 2958, 8098, 277, 4833, 621, 1511, 13, 21, 11, 290, 257, 29269, 275, 286, 352, 11, 290, 257, 32112, 1523, 8098, 308, 4833, 621, 767, 13, 23, 11, 523, 644, 318, 262, 2472, 1271, 286, 14510, 30, 46506, 327, 28270, 7, 363, 380, ...
How many attended the game with a record of 43-34?
SELECT COUNT("Attendance") FROM table_56620 WHERE "Record" = '43-34'
[ 2437, 867, 9141, 262, 983, 351, 257, 1700, 286, 5946, 12, 2682, 30, 46506, 327, 28270, 7203, 8086, 437, 590, 4943, 16034, 3084, 62, 20, 2791, 1238, 33411, 366, 23739, 1, 796, 705, 3559, 12, 2682, 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 ]
[ 2437, 867, 9141, 262, 983, 351, 257, 1700, 286, 5946, 12, 2682, 30, 46506, 327, 28270, 7203, 8086, 437, 590, 4943, 16034, 3084, 62, 20, 2791, 1238, 33411, 366, 23739, 1, 796, 705, 3559, 12, 2682, 6 ]
How many games were on December 5?
SELECT SUM(game) FROM table_name_80 WHERE date = "december 5"
[ 2437, 867, 1830, 547, 319, 3426, 642, 30, 46506, 35683, 7, 6057, 8, 16034, 3084, 62, 3672, 62, 1795, 33411, 3128, 796, 366, 2934, 3273, 642, 1 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2437, 867, 1830, 547, 319, 3426, 642, 30, 46506, 35683, 7, 6057, 8, 16034, 3084, 62, 3672, 62, 1795, 33411, 3128, 796, 366, 2934, 3273, 642, 1 ]
what is admission type and drug type of subject id 52012?
SELECT demographic.admission_type, prescriptions.drug_type FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.subject_id = "52012"
[ 10919, 318, 13938, 2099, 290, 2563, 2099, 286, 2426, 4686, 642, 6999, 30, 46506, 16728, 13, 324, 3411, 62, 4906, 11, 34092, 13, 30349, 62, 4906, 16034, 16728, 3268, 21479, 32357, 1268, 34092, 6177, 16728, 13, 18108, 76, 62, 312, 796, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 10919, 318, 13938, 2099, 290, 2563, 2099, 286, 2426, 4686, 642, 6999, 30, 46506, 16728, 13, 324, 3411, 62, 4906, 11, 34092, 13, 30349, 62, 4906, 16034, 16728, 3268, 21479, 32357, 1268, 34092, 6177, 16728, 13, 18108, 76, 62, 312, 796, ...
What is the tally in Kilkenny county with 10 as the total and opposition of Waterford?
SELECT "Tally" FROM table_54035 WHERE "County" = 'kilkenny' AND "Total" = '10' AND "Opposition" = 'waterford'
[ 2061, 318, 262, 26767, 287, 19902, 74, 11870, 7968, 351, 838, 355, 262, 2472, 290, 5471, 286, 5638, 3841, 30, 46506, 366, 51, 453, 1, 16034, 3084, 62, 35005, 2327, 33411, 366, 12332, 88, 1, 796, 705, 34553, 74, 11870, 6, 5357, 366, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 318, 262, 26767, 287, 19902, 74, 11870, 7968, 351, 838, 355, 262, 2472, 290, 5471, 286, 5638, 3841, 30, 46506, 366, 51, 453, 1, 16034, 3084, 62, 35005, 2327, 33411, 366, 12332, 88, 1, 796, 705, 34553, 74, 11870, 6, 5357, 366, ...
What is every entry for epoch if periselene is 5,454.925?
SELECT "Epoch (UTC)" FROM table_23779 WHERE "Periselene (km)" = '5,454.925'
[ 2061, 318, 790, 5726, 329, 36835, 611, 583, 36811, 1734, 318, 642, 11, 34229, 13, 46351, 30, 46506, 366, 13807, 5374, 357, 17429, 16725, 16034, 3084, 62, 1954, 40393, 33411, 366, 5990, 36811, 1734, 357, 13276, 16725, 796, 705, 20, 11, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 318, 790, 5726, 329, 36835, 611, 583, 36811, 1734, 318, 642, 11, 34229, 13, 46351, 30, 46506, 366, 13807, 5374, 357, 17429, 16725, 16034, 3084, 62, 1954, 40393, 33411, 366, 5990, 36811, 1734, 357, 13276, 16725, 796, 705, 20, 11, ...
What was the earliest year that Scuderia Ferrari was an entrant with 0 points?
SELECT MIN("Year") FROM table_69547 WHERE "Points" = '0' AND "Entrant" = 'scuderia ferrari'
[ 2061, 373, 262, 14555, 614, 326, 1446, 463, 5142, 23502, 373, 281, 920, 5250, 351, 657, 2173, 30, 46506, 20625, 7203, 17688, 4943, 16034, 3084, 62, 37381, 2857, 33411, 366, 40710, 1, 796, 705, 15, 6, 5357, 366, 14539, 5250, 1, 796, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 373, 262, 14555, 614, 326, 1446, 463, 5142, 23502, 373, 281, 920, 5250, 351, 657, 2173, 30, 46506, 20625, 7203, 17688, 4943, 16034, 3084, 62, 37381, 2857, 33411, 366, 40710, 1, 796, 705, 15, 6, 5357, 366, 14539, 5250, 1, 796, ...
What team has a porsche 956 b chassis-engine with less than 79 laps?
SELECT team FROM table_name_17 WHERE chassis___engine = "porsche 956 b" AND laps < 79
[ 2061, 1074, 468, 257, 279, 26164, 860, 3980, 275, 24587, 12, 18392, 351, 1342, 621, 9225, 24590, 30, 46506, 1074, 16034, 3084, 62, 3672, 62, 1558, 33411, 24587, 17569, 18392, 796, 366, 79, 26164, 860, 3980, 275, 1, 5357, 24590, 1279, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 1074, 468, 257, 279, 26164, 860, 3980, 275, 24587, 12, 18392, 351, 1342, 621, 9225, 24590, 30, 46506, 1074, 16034, 3084, 62, 3672, 62, 1558, 33411, 24587, 17569, 18392, 796, 366, 79, 26164, 860, 3980, 275, 1, 5357, 24590, 1279, ...
How many courses that do not have prerequisite?
SELECT COUNT(*) FROM course WHERE NOT course_id IN (SELECT course_id FROM prereq)
[ 2437, 867, 10902, 326, 466, 407, 423, 43119, 30, 46506, 327, 28270, 7, 28104, 16034, 1781, 33411, 5626, 1781, 62, 312, 3268, 357, 46506, 1781, 62, 312, 16034, 662, 42180, 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 ]
[ 2437, 867, 10902, 326, 466, 407, 423, 43119, 30, 46506, 327, 28270, 7, 28104, 16034, 1781, 33411, 5626, 1781, 62, 312, 3268, 357, 46506, 1781, 62, 312, 16034, 662, 42180, 8 ]
Count the number of unmarried patients who have copd exacerbation as their primary disease.
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.marital_status = "SINGLE" AND demographic.diagnosis = "COPD EXACERBATION"
[ 12332, 262, 1271, 286, 39183, 3871, 508, 423, 2243, 67, 22907, 341, 355, 511, 4165, 4369, 13, 46506, 327, 28270, 7, 35, 8808, 1268, 4177, 16728, 13, 32796, 62, 312, 8, 16034, 16728, 33411, 16728, 13, 3876, 1287, 62, 13376, 796, 366, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 12332, 262, 1271, 286, 39183, 3871, 508, 423, 2243, 67, 22907, 341, 355, 511, 4165, 4369, 13, 46506, 327, 28270, 7, 35, 8808, 1268, 4177, 16728, 13, 32796, 62, 312, 8, 16034, 16728, 33411, 16728, 13, 3876, 1287, 62, 13376, 796, 366, ...
How many starts for an average finish greater than 43?
SELECT SUM("Starts") FROM table_76600 WHERE "Avg. Finish" > '43'
[ 2437, 867, 4940, 329, 281, 2811, 5461, 3744, 621, 5946, 30, 46506, 35683, 7203, 1273, 5889, 4943, 16034, 3084, 62, 22, 2791, 405, 33411, 366, 48997, 13, 32585, 1, 1875, 705, 3559, 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 ]
[ 2437, 867, 4940, 329, 281, 2811, 5461, 3744, 621, 5946, 30, 46506, 35683, 7203, 1273, 5889, 4943, 16034, 3084, 62, 22, 2791, 405, 33411, 366, 48997, 13, 32585, 1, 1875, 705, 3559, 6 ]
What is the stepping for the processor released June 5, 2007?
SELECT stepping FROM table_name_25 WHERE release_date = "june 5, 2007"
[ 2061, 318, 262, 17413, 329, 262, 12649, 2716, 2795, 642, 11, 4343, 30, 46506, 17413, 16034, 3084, 62, 3672, 62, 1495, 33411, 2650, 62, 4475, 796, 366, 73, 1726, 642, 11, 4343, 1 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 318, 262, 17413, 329, 262, 12649, 2716, 2795, 642, 11, 4343, 30, 46506, 17413, 16034, 3084, 62, 3672, 62, 1495, 33411, 2650, 62, 4475, 796, 366, 73, 1726, 642, 11, 4343, 1 ]
Show all ministers who do not belong to Progress Party, and count them by a bar chart, sort by the x-axis from high to low.
SELECT Minister, COUNT(Minister) FROM party WHERE Party_name <> 'Progress Party' GROUP BY Minister ORDER BY Minister DESC
[ 15307, 477, 14138, 508, 466, 407, 5594, 284, 18387, 3615, 11, 290, 954, 606, 416, 257, 2318, 8262, 11, 3297, 416, 262, 2124, 12, 22704, 422, 1029, 284, 1877, 13, 46506, 4139, 11, 327, 28270, 7, 9452, 1694, 8, 16034, 2151, 33411, 361...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 15307, 477, 14138, 508, 466, 407, 5594, 284, 18387, 3615, 11, 290, 954, 606, 416, 257, 2318, 8262, 11, 3297, 416, 262, 2124, 12, 22704, 422, 1029, 284, 1877, 13, 46506, 4139, 11, 327, 28270, 7, 9452, 1694, 8, 16034, 2151, 33411, 361...
What is the most divisional titles won by a school with an enrollment of 30049?
SELECT MAX(divisional_titles) FROM table_20190834_1 WHERE enrollment = 30049
[ 2061, 318, 262, 749, 7297, 282, 8714, 1839, 416, 257, 1524, 351, 281, 20753, 286, 5867, 2920, 30, 46506, 25882, 7, 21426, 282, 62, 83, 30540, 8, 16034, 3084, 62, 23344, 2919, 2682, 62, 16, 33411, 20753, 796, 5867, 2920 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 318, 262, 749, 7297, 282, 8714, 1839, 416, 257, 1524, 351, 281, 20753, 286, 5867, 2920, 30, 46506, 25882, 7, 21426, 282, 62, 83, 30540, 8, 16034, 3084, 62, 23344, 2919, 2682, 62, 16, 33411, 20753, 796, 5867, 2920 ]
How many engineers did each staff contact? List both the contact staff name and number of engineers contacted Plot them as bar chart, show the total number in ascending order.
SELECT staff_name, COUNT(*) FROM Staff AS T1 JOIN Engineer_Visits AS T2 ON T1.staff_id = T2.contact_staff_id GROUP BY T1.staff_name ORDER BY COUNT(*)
[ 2437, 867, 12037, 750, 1123, 3085, 2800, 30, 7343, 1111, 262, 2800, 3085, 1438, 290, 1271, 286, 12037, 11237, 28114, 606, 355, 2318, 8262, 11, 905, 262, 2472, 1271, 287, 41988, 1502, 13, 46506, 3085, 62, 3672, 11, 327, 28270, 7, 28104...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 2437, 867, 12037, 750, 1123, 3085, 2800, 30, 7343, 1111, 262, 2800, 3085, 1438, 290, 1271, 286, 12037, 11237, 28114, 606, 355, 2318, 8262, 11, 905, 262, 2472, 1271, 287, 41988, 1502, 13, 46506, 3085, 62, 3672, 11, 327, 28270, 7, 28104...
since 4 years ago, what were the five most frequent drugs prescribed to the patients in their 40s during the same hospital encounter after they had been diagnosed with hypertension?
SELECT t3.drugname FROM (SELECT t2.drugname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, diagnosis.diagnosistime, patient.patienthealthsystemstayid FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE diagnosis.diagnosisname = 'hypertension' A...
[ 20777, 604, 812, 2084, 11, 644, 547, 262, 1936, 749, 10792, 5010, 14798, 284, 262, 3871, 287, 511, 2319, 82, 1141, 262, 976, 4436, 8791, 706, 484, 550, 587, 14641, 351, 37454, 30, 46506, 256, 18, 13, 30349, 3672, 16034, 357, 46506, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 20777, 604, 812, 2084, 11, 644, 547, 262, 1936, 749, 10792, 5010, 14798, 284, 262, 3871, 287, 511, 2319, 82, 1141, 262, 976, 4436, 8791, 706, 484, 550, 587, 14641, 351, 37454, 30, 46506, 256, 18, 13, 30349, 3672, 16034, 357, 46506, ...
WHAT IS THE PLACE WITH A SCORE OF 73-65-73-71=282?
SELECT place FROM table_name_84 WHERE score = 73 - 65 - 73 - 71 = 282
[ 32971, 3180, 3336, 9297, 11598, 13315, 317, 6374, 6965, 3963, 8854, 12, 2996, 12, 4790, 12, 4869, 28, 32568, 30, 46506, 1295, 16034, 3084, 62, 3672, 62, 5705, 33411, 4776, 796, 8854, 532, 6135, 532, 8854, 532, 9166, 796, 41810 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 32971, 3180, 3336, 9297, 11598, 13315, 317, 6374, 6965, 3963, 8854, 12, 2996, 12, 4790, 12, 4869, 28, 32568, 30, 46506, 1295, 16034, 3084, 62, 3672, 62, 5705, 33411, 4776, 796, 8854, 532, 6135, 532, 8854, 532, 9166, 796, 41810 ]
when was patient 2002 prescribed for the last time since 173 months ago for a drug?
SELECT prescriptions.startdate FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 2002) AND DATETIME(prescriptions.startdate) >= DATETIME(CURRENT_TIME(), '-173 month') ORDER BY prescriptions.startdate DESC LIMIT 1
[ 12518, 373, 5827, 6244, 14798, 329, 262, 938, 640, 1201, 28174, 1933, 2084, 329, 257, 2563, 30, 46506, 34092, 13, 9688, 4475, 16034, 34092, 33411, 34092, 13, 18108, 76, 62, 312, 3268, 357, 46506, 25349, 13, 18108, 76, 62, 312, 16034, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 12518, 373, 5827, 6244, 14798, 329, 262, 938, 640, 1201, 28174, 1933, 2084, 329, 257, 2563, 30, 46506, 34092, 13, 9688, 4475, 16034, 34092, 33411, 34092, 13, 18108, 76, 62, 312, 3268, 357, 46506, 25349, 13, 18108, 76, 62, 312, 16034, ...
What is the smallest total produced with a model of M-420?
SELECT MIN("Total produced") FROM table_70735 WHERE "Model" = 'm-420'
[ 2061, 318, 262, 18197, 2472, 4635, 351, 257, 2746, 286, 337, 12, 27211, 30, 46506, 20625, 7203, 14957, 4635, 4943, 16034, 3084, 62, 24038, 2327, 33411, 366, 17633, 1, 796, 705, 76, 12, 27211, 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 ]
[ 2061, 318, 262, 18197, 2472, 4635, 351, 257, 2746, 286, 337, 12, 27211, 30, 46506, 20625, 7203, 14957, 4635, 4943, 16034, 3084, 62, 24038, 2327, 33411, 366, 17633, 1, 796, 705, 76, 12, 27211, 6 ]
On which date was the opponent ireland and the status Five Nations?
SELECT "Date" FROM table_13168 WHERE "Status" = 'five nations' AND "Opposing Teams" = 'ireland'
[ 2202, 543, 3128, 373, 262, 6125, 35918, 1044, 290, 262, 3722, 10579, 7973, 30, 46506, 366, 10430, 1, 16034, 3084, 62, 1485, 14656, 33411, 366, 19580, 1, 796, 705, 13261, 7027, 6, 5357, 366, 27524, 2752, 24690, 1, 796, 705, 557, 1044, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2202, 543, 3128, 373, 262, 6125, 35918, 1044, 290, 262, 3722, 10579, 7973, 30, 46506, 366, 10430, 1, 16034, 3084, 62, 1485, 14656, 33411, 366, 19580, 1, 796, 705, 13261, 7027, 6, 5357, 366, 27524, 2752, 24690, 1, 796, 705, 557, 1044, ...
Name the most number for viewers being 6.95
SELECT MAX(_number) FROM table_19834691_4 WHERE viewers__millions_ = "6.95"
[ 5376, 262, 749, 1271, 329, 10209, 852, 718, 13, 3865, 46506, 25882, 28264, 17618, 8, 16034, 3084, 62, 22337, 2682, 49541, 62, 19, 33411, 10209, 834, 17805, 507, 62, 796, 366, 21, 13, 3865, 1 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 5376, 262, 749, 1271, 329, 10209, 852, 718, 13, 3865, 46506, 25882, 28264, 17618, 8, 16034, 3084, 62, 22337, 2682, 49541, 62, 19, 33411, 10209, 834, 17805, 507, 62, 796, 366, 21, 13, 3865, 1 ]
What's the 102kg when the snatch was snatch and the olympic record was the world record?
SELECT 102 AS kg FROM table_name_56 WHERE world_record = "olympic record" AND "snatch" = "snatch"
[ 2061, 338, 262, 15143, 10025, 618, 262, 43388, 373, 43388, 290, 262, 267, 6760, 291, 1700, 373, 262, 995, 1700, 30, 46506, 15143, 7054, 14211, 16034, 3084, 62, 3672, 62, 3980, 33411, 995, 62, 22105, 796, 366, 3366, 3149, 291, 1700, 1,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 338, 262, 15143, 10025, 618, 262, 43388, 373, 43388, 290, 262, 267, 6760, 291, 1700, 373, 262, 995, 1700, 30, 46506, 15143, 7054, 14211, 16034, 3084, 62, 3672, 62, 3980, 33411, 995, 62, 22105, 796, 366, 3366, 3149, 291, 1700, 1,...
calculate how many drugs patient 015-94586 is prescribed in 06/2101.
SELECT COUNT(*) FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '015-94586')) AND STRFTIME('%y-%m', medication.drugstarttime) = '2101-06'
[ 9948, 3129, 378, 703, 867, 5010, 5827, 5534, 20, 12, 24, 2231, 4521, 318, 14798, 287, 9130, 14, 2481, 486, 13, 46506, 327, 28270, 7, 28104, 16034, 14103, 33411, 14103, 13, 26029, 20850, 31712, 312, 3268, 357, 46506, 5827, 13, 26029, 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...
[ 9948, 3129, 378, 703, 867, 5010, 5827, 5534, 20, 12, 24, 2231, 4521, 318, 14798, 287, 9130, 14, 2481, 486, 13, 46506, 327, 28270, 7, 28104, 16034, 14103, 33411, 14103, 13, 26029, 20850, 31712, 312, 3268, 357, 46506, 5827, 13, 26029, 2...
Are WRITING 220 and WRITING 303 available at the same time ?
SELECT COUNT(*) > 0 FROM course AS COURSE_0, course AS COURSE_1, course_offering AS COURSE_OFFERING_0, course_offering AS COURSE_OFFERING_1, course_prerequisite WHERE COURSE_OFFERING_1.semester = COURSE_OFFERING_0.semester AND COURSE_0.course_id = COURSE_OFFERING_0.course_id AND COURSE_0.department = 'WRITING' AND COUR...
[ 8491, 11342, 2043, 2751, 15629, 290, 11342, 2043, 2751, 30727, 1695, 379, 262, 976, 640, 5633, 46506, 327, 28270, 7, 28104, 1875, 657, 16034, 1781, 7054, 37384, 5188, 62, 15, 11, 1781, 7054, 37384, 5188, 62, 16, 11, 1781, 62, 2364, 15...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 8491, 11342, 2043, 2751, 15629, 290, 11342, 2043, 2751, 30727, 1695, 379, 262, 976, 640, 5633, 46506, 327, 28270, 7, 28104, 1875, 657, 16034, 1781, 7054, 37384, 5188, 62, 15, 11, 1781, 7054, 37384, 5188, 62, 16, 11, 1781, 62, 2364, 15...
Walter Giles is Crew Chief of what team?
SELECT "Team" FROM table_71522 WHERE "Crew Chief" = 'walter giles'
[ 21902, 353, 37538, 318, 17652, 5953, 286, 644, 1074, 30, 46506, 366, 15592, 1, 16034, 3084, 62, 22, 1314, 1828, 33411, 366, 46724, 5953, 1, 796, 705, 16783, 353, 308, 2915, 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 ]
[ 21902, 353, 37538, 318, 17652, 5953, 286, 644, 1074, 30, 46506, 366, 15592, 1, 16034, 3084, 62, 22, 1314, 1828, 33411, 366, 46724, 5953, 1, 796, 705, 16783, 353, 308, 2915, 6 ]
How many games had they won or lost in a row on May 9?
SELECT streak FROM table_30047613_13 WHERE date = "May 9"
[ 2437, 867, 1830, 550, 484, 1839, 393, 2626, 287, 257, 5752, 319, 1737, 860, 30, 46506, 15113, 16034, 3084, 62, 6200, 35435, 1485, 62, 1485, 33411, 3128, 796, 366, 6747, 860, 1 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2437, 867, 1830, 550, 484, 1839, 393, 2626, 287, 257, 5752, 319, 1737, 860, 30, 46506, 15113, 16034, 3084, 62, 6200, 35435, 1485, 62, 1485, 33411, 3128, 796, 366, 6747, 860, 1 ]
Who was the 3rd place team at Pardubice?
SELECT "3rd place" FROM table_70190 WHERE "Venue" = 'pardubice'
[ 8241, 373, 262, 513, 4372, 1295, 1074, 379, 350, 446, 549, 501, 30, 46506, 366, 18, 4372, 1295, 1, 16034, 3084, 62, 41583, 3829, 33411, 366, 37522, 518, 1, 796, 705, 26037, 549, 501, 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 ]
[ 8241, 373, 262, 513, 4372, 1295, 1074, 379, 350, 446, 549, 501, 30, 46506, 366, 18, 4372, 1295, 1, 16034, 3084, 62, 41583, 3829, 33411, 366, 37522, 518, 1, 796, 705, 26037, 549, 501, 6 ]
How many points does the year after 1986 with a AGS JH23B chassis have?
SELECT points FROM table_name_52 WHERE year > 1986 AND chassis = "ags jh23b"
[ 2437, 867, 2173, 857, 262, 614, 706, 12113, 351, 257, 13077, 50, 449, 39, 1954, 33, 24587, 423, 30, 46506, 2173, 16034, 3084, 62, 3672, 62, 4309, 33411, 614, 1875, 12113, 5357, 24587, 796, 366, 3775, 474, 71, 1954, 65, 1 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2437, 867, 2173, 857, 262, 614, 706, 12113, 351, 257, 13077, 50, 449, 39, 1954, 33, 24587, 423, 30, 46506, 2173, 16034, 3084, 62, 3672, 62, 4309, 33411, 614, 1875, 12113, 5357, 24587, 796, 366, 3775, 474, 71, 1954, 65, 1 ]
How many extra points did Paul Jones score?
SELECT COUNT(extra_points) FROM table_14342367_11 WHERE player = "Paul Jones"
[ 2437, 867, 3131, 2173, 750, 3362, 5437, 4776, 30, 46506, 327, 28270, 7, 26086, 62, 13033, 8, 16034, 3084, 62, 1415, 2682, 1954, 3134, 62, 1157, 33411, 2137, 796, 366, 12041, 5437, 1 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2437, 867, 3131, 2173, 750, 3362, 5437, 4776, 30, 46506, 327, 28270, 7, 26086, 62, 13033, 8, 16034, 3084, 62, 1415, 2682, 1954, 3134, 62, 1157, 33411, 2137, 796, 366, 12041, 5437, 1 ]
Top 200 Users in Detroit, Mi.
SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation, Location FROM Users WHERE LOWER(Location) LIKE '%detroit%mi%' ORDER BY Reputation DESC LIMIT 200
[ 9126, 939, 18987, 287, 8488, 11, 13756, 13, 46506, 371, 3913, 62, 41359, 13246, 3419, 28729, 357, 12532, 1137, 11050, 1432, 7094, 22196, 34, 8, 7054, 25113, 1600, 5121, 7054, 366, 7220, 62, 8726, 1600, 1432, 7094, 11, 13397, 16034, 1898...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 9126, 939, 18987, 287, 8488, 11, 13756, 13, 46506, 371, 3913, 62, 41359, 13246, 3419, 28729, 357, 12532, 1137, 11050, 1432, 7094, 22196, 34, 8, 7054, 25113, 1600, 5121, 7054, 366, 7220, 62, 8726, 1600, 1432, 7094, 11, 13397, 16034, 1898...
what is the four most frequently given diagnoses since 2105 for patients who have previously been diagnosed with ac diastolic hrt failure within 2 months?
SELECT d_icd_diagnoses.short_title FROM d_icd_diagnoses WHERE d_icd_diagnoses.icd9_code IN (SELECT t3.icd9_code FROM (SELECT t2.icd9_code, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, diagnoses_icd.charttime FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id = admissions...
[ 10919, 318, 262, 1440, 749, 6777, 1813, 40567, 1201, 362, 13348, 329, 3871, 508, 423, 4271, 587, 14641, 351, 936, 2566, 459, 4160, 289, 17034, 5287, 1626, 362, 1933, 30, 46506, 288, 62, 291, 67, 62, 47356, 4629, 13, 19509, 62, 7839, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 10919, 318, 262, 1440, 749, 6777, 1813, 40567, 1201, 362, 13348, 329, 3871, 508, 423, 4271, 587, 14641, 351, 936, 2566, 459, 4160, 289, 17034, 5287, 1626, 362, 1933, 30, 46506, 288, 62, 291, 67, 62, 47356, 4629, 13, 19509, 62, 7839, ...
How many goals against total did the team with more than 52 goals and fewer than 10 losses have?
SELECT SUM("Goals against") FROM table_59311 WHERE "Goals for" > '52' AND "Losses" < '10'
[ 2437, 867, 4661, 1028, 2472, 750, 262, 1074, 351, 517, 621, 6740, 4661, 290, 7380, 621, 838, 9089, 423, 30, 46506, 35683, 7203, 5247, 874, 1028, 4943, 16034, 3084, 62, 3270, 36244, 33411, 366, 5247, 874, 329, 1, 1875, 705, 4309, 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 ]
[ 2437, 867, 4661, 1028, 2472, 750, 262, 1074, 351, 517, 621, 6740, 4661, 290, 7380, 621, 838, 9089, 423, 30, 46506, 35683, 7203, 5247, 874, 1028, 4943, 16034, 3084, 62, 3270, 36244, 33411, 366, 5247, 874, 329, 1, 1875, 705, 4309, 6, ...
What is the highest attendance for games with stevenage borough at home?
SELECT MAX(attendance) FROM table_name_9 WHERE home_team = "stevenage borough"
[ 2061, 318, 262, 4511, 14858, 329, 1830, 351, 2876, 574, 496, 33534, 379, 1363, 30, 46506, 25882, 7, 1078, 437, 590, 8, 16034, 3084, 62, 3672, 62, 24, 33411, 1363, 62, 15097, 796, 366, 4169, 574, 496, 33534, 1 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 318, 262, 4511, 14858, 329, 1830, 351, 2876, 574, 496, 33534, 379, 1363, 30, 46506, 25882, 7, 1078, 437, 590, 8, 16034, 3084, 62, 3672, 62, 24, 33411, 1363, 62, 15097, 796, 366, 4169, 574, 496, 33534, 1 ]
What is the average and maximum number of hours students who made the team practiced?
SELECT AVG(T1.hs), MAX(T1.hs) FROM player AS T1 JOIN tryout AS T2 ON T1.pid = T2.pid WHERE T2.decision = 'yes'
[ 2061, 318, 262, 2811, 290, 5415, 1271, 286, 2250, 2444, 508, 925, 262, 1074, 19893, 30, 46506, 35224, 7, 51, 16, 13, 11994, 828, 25882, 7, 51, 16, 13, 11994, 8, 16034, 2137, 7054, 309, 16, 32357, 1268, 1949, 448, 7054, 309, 17, 61...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 318, 262, 2811, 290, 5415, 1271, 286, 2250, 2444, 508, 925, 262, 1074, 19893, 30, 46506, 35224, 7, 51, 16, 13, 11994, 828, 25882, 7, 51, 16, 13, 11994, 8, 16034, 2137, 7054, 309, 16, 32357, 1268, 1949, 448, 7054, 309, 17, 61...
Draw a bar chart for what are the ids and names of the architects who built at least 3 bridges ?, list in ascending by the y-axis.
SELECT T1.name, T1.id FROM architect AS T1 JOIN bridge AS T2 ON T1.id = T2.architect_id ORDER BY T1.id
[ 25302, 257, 2318, 8262, 329, 644, 389, 262, 220, 2340, 290, 3891, 286, 262, 29518, 508, 3170, 379, 1551, 513, 19432, 5633, 11, 1351, 287, 41988, 416, 262, 331, 12, 22704, 13, 46506, 309, 16, 13, 3672, 11, 309, 16, 13, 312, 16034, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 25302, 257, 2318, 8262, 329, 644, 389, 262, 220, 2340, 290, 3891, 286, 262, 29518, 508, 3170, 379, 1551, 513, 19432, 5633, 11, 1351, 287, 41988, 416, 262, 331, 12, 22704, 13, 46506, 309, 16, 13, 3672, 11, 309, 16, 13, 312, 16034, ...
Find the names and average salaries of all departments whose average salary is greater than 42000, and show in ascending by the Y please.
SELECT dept_name, AVG(salary) FROM instructor GROUP BY dept_name ORDER BY AVG(salary)
[ 16742, 262, 3891, 290, 2811, 17058, 286, 477, 13346, 3025, 2811, 9588, 318, 3744, 621, 5433, 830, 11, 290, 905, 287, 41988, 416, 262, 575, 3387, 13, 46506, 390, 457, 62, 3672, 11, 35224, 7, 21680, 560, 8, 16034, 21187, 44441, 11050, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 16742, 262, 3891, 290, 2811, 17058, 286, 477, 13346, 3025, 2811, 9588, 318, 3744, 621, 5433, 830, 11, 290, 905, 287, 41988, 416, 262, 575, 3387, 13, 46506, 390, 457, 62, 3672, 11, 35224, 7, 21680, 560, 8, 16034, 21187, 44441, 11050, ...
What is the injured that has skierlik as the location?
SELECT injured FROM table_name_9 WHERE location = "skierlik"
[ 2061, 318, 262, 6686, 326, 468, 1341, 959, 46965, 355, 262, 4067, 30, 46506, 6686, 16034, 3084, 62, 3672, 62, 24, 33411, 4067, 796, 366, 8135, 959, 46965, 1 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 318, 262, 6686, 326, 468, 1341, 959, 46965, 355, 262, 4067, 30, 46506, 6686, 16034, 3084, 62, 3672, 62, 24, 33411, 4067, 796, 366, 8135, 959, 46965, 1 ]
Tell me the sum of year for 244 pages
SELECT SUM(year) FROM table_name_84 WHERE pages = 244
[ 24446, 502, 262, 2160, 286, 614, 329, 35264, 5468, 46506, 35683, 7, 1941, 8, 16034, 3084, 62, 3672, 62, 5705, 33411, 5468, 796, 35264 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 24446, 502, 262, 2160, 286, 614, 329, 35264, 5468, 46506, 35683, 7, 1941, 8, 16034, 3084, 62, 3672, 62, 5705, 33411, 5468, 796, 35264 ]
what is gender and religion of subject id 71798?
SELECT demographic.gender, demographic.religion FROM demographic WHERE demographic.subject_id = "71798"
[ 10919, 318, 5279, 290, 5737, 286, 2426, 4686, 767, 1558, 4089, 30, 46506, 16728, 13, 8388, 11, 16728, 13, 2411, 17035, 16034, 16728, 33411, 16728, 13, 32796, 62, 312, 796, 366, 22, 1558, 4089, 1 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 10919, 318, 5279, 290, 5737, 286, 2426, 4686, 767, 1558, 4089, 30, 46506, 16728, 13, 8388, 11, 16728, 13, 2411, 17035, 16034, 16728, 33411, 16728, 13, 32796, 62, 312, 796, 366, 22, 1558, 4089, 1 ]
What is the official name of the municipality whose name in Spanish is Crip n?
SELECT official_name FROM table_300283_1 WHERE name_in_spanish = "Cripán"
[ 2061, 318, 262, 1743, 1438, 286, 262, 27264, 3025, 1438, 287, 7897, 318, 327, 5528, 299, 30, 46506, 1743, 62, 3672, 16034, 3084, 62, 6200, 30290, 62, 16, 33411, 1438, 62, 259, 62, 2777, 7115, 796, 366, 34, 5528, 21162, 1 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 318, 262, 1743, 1438, 286, 262, 27264, 3025, 1438, 287, 7897, 318, 327, 5528, 299, 30, 46506, 1743, 62, 3672, 16034, 3084, 62, 6200, 30290, 62, 16, 33411, 1438, 62, 259, 62, 2777, 7115, 796, 366, 34, 5528, 21162, 1 ]
What is the total number of losses with less than 6 wins and less than 0 draws?
SELECT COUNT(losses) FROM table_name_94 WHERE wins < 6 AND draws < 0
[ 2061, 318, 262, 2472, 1271, 286, 9089, 351, 1342, 621, 718, 7864, 290, 1342, 621, 657, 14293, 30, 46506, 327, 28270, 7, 22462, 274, 8, 16034, 3084, 62, 3672, 62, 5824, 33411, 7864, 1279, 718, 5357, 14293, 1279, 657 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 318, 262, 2472, 1271, 286, 9089, 351, 1342, 621, 718, 7864, 290, 1342, 621, 657, 14293, 30, 46506, 327, 28270, 7, 22462, 274, 8, 16034, 3084, 62, 3672, 62, 5824, 33411, 7864, 1279, 718, 5357, 14293, 1279, 657 ]
provide the number of patients whose lab test chart time is 2144-12-08 03:27:00?
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE lab.charttime = "2144-12-08 03:27:00"
[ 15234, 485, 262, 1271, 286, 3871, 3025, 2248, 1332, 8262, 640, 318, 362, 18444, 12, 1065, 12, 2919, 7643, 25, 1983, 25, 405, 30, 46506, 327, 28270, 7, 35, 8808, 1268, 4177, 16728, 13, 32796, 62, 312, 8, 16034, 16728, 3268, 21479, 32...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 15234, 485, 262, 1271, 286, 3871, 3025, 2248, 1332, 8262, 640, 318, 362, 18444, 12, 1065, 12, 2919, 7643, 25, 1983, 25, 405, 30, 46506, 327, 28270, 7, 35, 8808, 1268, 4177, 16728, 13, 32796, 62, 312, 8, 16034, 16728, 3268, 21479, 32...
how many are current patients of the age 60 or above?
SELECT COUNT(DISTINCT admissions.subject_id) FROM admissions WHERE admissions.dischtime IS NULL AND admissions.age >= 60
[ 4919, 867, 389, 1459, 3871, 286, 262, 2479, 3126, 393, 2029, 30, 46506, 327, 28270, 7, 35, 8808, 1268, 4177, 25349, 13, 32796, 62, 312, 8, 16034, 25349, 33411, 25349, 13, 6381, 354, 2435, 3180, 15697, 5357, 25349, 13, 496, 18189, 3126...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 4919, 867, 389, 1459, 3871, 286, 262, 2479, 3126, 393, 2029, 30, 46506, 327, 28270, 7, 35, 8808, 1268, 4177, 25349, 13, 32796, 62, 312, 8, 16034, 25349, 33411, 25349, 13, 6381, 354, 2435, 3180, 15697, 5357, 25349, 13, 496, 18189, 3126...
When 24:31 is the run time how many measurements of viewers (in millions) are there?
SELECT COUNT("Viewers (in millions)") FROM table_2409 WHERE "Run time" = '24:31'
[ 2215, 1987, 25, 3132, 318, 262, 1057, 640, 703, 867, 13871, 286, 10209, 357, 259, 5242, 8, 389, 612, 30, 46506, 327, 28270, 7203, 7680, 364, 357, 259, 5242, 8, 4943, 16034, 3084, 62, 1731, 2931, 33411, 366, 10987, 640, 1, 796, 705, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2215, 1987, 25, 3132, 318, 262, 1057, 640, 703, 867, 13871, 286, 10209, 357, 259, 5242, 8, 389, 612, 30, 46506, 327, 28270, 7203, 7680, 364, 357, 259, 5242, 8, 4943, 16034, 3084, 62, 1731, 2931, 33411, 366, 10987, 640, 1, 796, 705, ...
For those employees who was hired before 2002-06-21, find job_id and the sum of department_id , and group by attribute job_id, and visualize them by a bar chart, rank by the bars in desc please.
SELECT JOB_ID, SUM(DEPARTMENT_ID) FROM employees WHERE HIRE_DATE < '2002-06-21' GROUP BY JOB_ID ORDER BY JOB_ID DESC
[ 1890, 883, 4409, 508, 373, 9657, 878, 6244, 12, 3312, 12, 2481, 11, 1064, 1693, 62, 312, 290, 262, 2160, 286, 5011, 62, 312, 837, 290, 1448, 416, 11688, 1693, 62, 312, 11, 290, 38350, 606, 416, 257, 2318, 8262, 11, 4279, 416, 262,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 1890, 883, 4409, 508, 373, 9657, 878, 6244, 12, 3312, 12, 2481, 11, 1064, 1693, 62, 312, 290, 262, 2160, 286, 5011, 62, 312, 837, 290, 1448, 416, 11688, 1693, 62, 312, 11, 290, 38350, 606, 416, 257, 2318, 8262, 11, 4279, 416, 262,...
tell me the number of elective hospital admission patients categorized under chemistry lab test.
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.admission_type = "ELECTIVE" AND lab."CATEGORY" = "Chemistry"
[ 33331, 502, 262, 1271, 286, 1742, 425, 4436, 13938, 3871, 37661, 739, 16585, 2248, 1332, 13, 46506, 327, 28270, 7, 35, 8808, 1268, 4177, 16728, 13, 32796, 62, 312, 8, 16034, 16728, 3268, 21479, 32357, 1268, 2248, 6177, 16728, 13, 18108,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 33331, 502, 262, 1271, 286, 1742, 425, 4436, 13938, 3871, 37661, 739, 16585, 2248, 1332, 13, 46506, 327, 28270, 7, 35, 8808, 1268, 4177, 16728, 13, 32796, 62, 312, 8, 16034, 16728, 3268, 21479, 32357, 1268, 2248, 6177, 16728, 13, 18108,...
When the Away team scored 14.14 (98), which Venue did the game take place?
SELECT "Venue" FROM table_78437 WHERE "Away team score" = '14.14 (98)'
[ 2215, 262, 21986, 1074, 7781, 1478, 13, 1415, 357, 4089, 828, 543, 9932, 518, 750, 262, 983, 1011, 1295, 30, 46506, 366, 37522, 518, 1, 16034, 3084, 62, 37688, 2718, 33411, 366, 32, 1014, 1074, 4776, 1, 796, 705, 1415, 13, 1415, 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 ]
[ 2215, 262, 21986, 1074, 7781, 1478, 13, 1415, 357, 4089, 828, 543, 9932, 518, 750, 262, 983, 1011, 1295, 30, 46506, 366, 37522, 518, 1, 16034, 3084, 62, 37688, 2718, 33411, 366, 32, 1014, 1074, 4776, 1, 796, 705, 1415, 13, 1415, 357...
what is the daily average amount of total cholesterol patient 006-103228 has on the first hospital visit?
SELECT AVG(lab.labresult) FROM lab WHERE lab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '006-103228' AND NOT patient.hospitaldischargetime IS NULL ORDER BY patient.hospita...
[ 10919, 318, 262, 4445, 2811, 2033, 286, 2472, 18759, 5827, 3571, 21, 12, 15197, 23815, 468, 319, 262, 717, 4436, 3187, 30, 46506, 35224, 7, 23912, 13, 23912, 20274, 8, 16034, 2248, 33411, 2248, 13, 26029, 20850, 31712, 312, 3268, 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...
[ 10919, 318, 262, 4445, 2811, 2033, 286, 2472, 18759, 5827, 3571, 21, 12, 15197, 23815, 468, 319, 262, 717, 4436, 3187, 30, 46506, 35224, 7, 23912, 13, 23912, 20274, 8, 16034, 2248, 33411, 2248, 13, 26029, 20850, 31712, 312, 3268, 357, ...
Total Unanswered Questions w/ 'mapbox' tag.
SELECT COUNT(Id) FROM Posts WHERE CreationDate > CAST('2019-01-01' AS DATETIME) AND AnswerCount = 0 AND Tags LIKE '%mapbox%' AND ParentId IS NULL
[ 14957, 791, 31966, 20396, 266, 14, 705, 8899, 3524, 6, 7621, 13, 46506, 327, 28270, 7, 7390, 8, 16034, 12043, 33411, 21582, 10430, 1875, 327, 11262, 10786, 23344, 12, 486, 12, 486, 6, 7054, 360, 1404, 2767, 12789, 8, 5357, 23998, 1233...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 14957, 791, 31966, 20396, 266, 14, 705, 8899, 3524, 6, 7621, 13, 46506, 327, 28270, 7, 7390, 8, 16034, 12043, 33411, 21582, 10430, 1875, 327, 11262, 10786, 23344, 12, 486, 12, 486, 6, 7054, 360, 1404, 2767, 12789, 8, 5357, 23998, 1233...
Which Time/Retired has a Rider of daijiro kato?
SELECT "Time/Retired" FROM table_49830 WHERE "Rider" = 'daijiro kato'
[ 13828, 3862, 14, 9781, 1202, 468, 257, 16414, 286, 288, 1872, 73, 7058, 479, 5549, 30, 46506, 366, 7575, 14, 9781, 1202, 1, 16034, 3084, 62, 36260, 1270, 33411, 366, 49, 1304, 1, 796, 705, 67, 1872, 73, 7058, 479, 5549, 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 ]
[ 13828, 3862, 14, 9781, 1202, 468, 257, 16414, 286, 288, 1872, 73, 7058, 479, 5549, 30, 46506, 366, 7575, 14, 9781, 1202, 1, 16034, 3084, 62, 36260, 1270, 33411, 366, 49, 1304, 1, 796, 705, 67, 1872, 73, 7058, 479, 5549, 6 ]
What is the school of the player from Dallas, TX?
SELECT "School" FROM table_54590 WHERE "Hometown" = 'dallas, tx'
[ 2061, 318, 262, 1524, 286, 262, 2137, 422, 8533, 11, 15326, 30, 46506, 366, 26130, 1, 16034, 3084, 62, 45326, 3829, 33411, 366, 39, 19191, 1, 796, 705, 67, 7826, 11, 27765, 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 ]
[ 2061, 318, 262, 1524, 286, 262, 2137, 422, 8533, 11, 15326, 30, 46506, 366, 26130, 1, 16034, 3084, 62, 45326, 3829, 33411, 366, 39, 19191, 1, 796, 705, 67, 7826, 11, 27765, 6 ]
What is the largest silver with Gold larger than 4, a Nation of united states, and a Total larger than 26?
SELECT MAX(silver) FROM table_name_19 WHERE gold > 4 AND nation = "united states" AND total > 26
[ 2061, 318, 262, 4387, 8465, 351, 3561, 4025, 621, 604, 11, 257, 8741, 286, 16503, 2585, 11, 290, 257, 7472, 4025, 621, 2608, 30, 46506, 25882, 7, 40503, 8, 16034, 3084, 62, 3672, 62, 1129, 33411, 3869, 1875, 604, 5357, 3277, 796, 36...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 2061, 318, 262, 4387, 8465, 351, 3561, 4025, 621, 604, 11, 257, 8741, 286, 16503, 2585, 11, 290, 257, 7472, 4025, 621, 2608, 30, 46506, 25882, 7, 40503, 8, 16034, 3084, 62, 3672, 62, 1129, 33411, 3869, 1875, 604, 5357, 3277, 796, 36...
What position did Marty Gateman play?
SELECT "Position" FROM table_1095 WHERE "Player" = 'Marty Gateman'
[ 2061, 2292, 750, 29876, 29074, 8463, 711, 30, 46506, 366, 26545, 1, 16034, 3084, 62, 940, 3865, 33411, 366, 14140, 1, 796, 705, 13143, 88, 29074, 8463, 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 ]
[ 2061, 2292, 750, 29876, 29074, 8463, 711, 30, 46506, 366, 26545, 1, 16034, 3084, 62, 940, 3865, 33411, 366, 14140, 1, 796, 705, 13143, 88, 29074, 8463, 6 ]
How many ranks are for Switzerland with more than 2 total medals?
SELECT COUNT("Rank") FROM table_71628 WHERE "Nation" = 'switzerland' AND "Total" > '2'
[ 2437, 867, 9803, 389, 329, 14679, 351, 517, 621, 362, 2472, 28057, 30, 46506, 327, 28270, 7203, 27520, 4943, 16034, 3084, 62, 22, 1433, 2078, 33411, 366, 46108, 1, 796, 705, 2032, 13947, 6, 5357, 366, 14957, 1, 1875, 705, 17, 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 ]
[ 2437, 867, 9803, 389, 329, 14679, 351, 517, 621, 362, 2472, 28057, 30, 46506, 327, 28270, 7203, 27520, 4943, 16034, 3084, 62, 22, 1433, 2078, 33411, 366, 46108, 1, 796, 705, 2032, 13947, 6, 5357, 366, 14957, 1, 1875, 705, 17, 6 ]
Which Record has Points smaller than 40, and a Game larger than 25, and a Score of 2 0?
SELECT record FROM table_name_49 WHERE points < 40 AND game > 25 AND score = "2–0"
[ 13828, 13266, 468, 11045, 4833, 621, 2319, 11, 290, 257, 3776, 4025, 621, 1679, 11, 290, 257, 15178, 286, 362, 657, 30, 46506, 1700, 16034, 3084, 62, 3672, 62, 2920, 33411, 2173, 1279, 2319, 5357, 983, 1875, 1679, 5357, 4776, 796, 366...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 13828, 13266, 468, 11045, 4833, 621, 2319, 11, 290, 257, 3776, 4025, 621, 1679, 11, 290, 257, 15178, 286, 362, 657, 30, 46506, 1700, 16034, 3084, 62, 3672, 62, 2920, 33411, 2173, 1279, 2319, 5357, 983, 1875, 1679, 5357, 4776, 796, 366...
Show me the total number by category in a histogram, show total number from low to high order.
SELECT Category, COUNT(*) FROM music_festival GROUP BY Category ORDER BY COUNT(*)
[ 15307, 502, 262, 2472, 1271, 416, 6536, 287, 257, 1554, 21857, 11, 905, 2472, 1271, 422, 1877, 284, 1029, 1502, 13, 46506, 21743, 11, 327, 28270, 7, 28104, 16034, 2647, 62, 69, 6743, 44441, 11050, 21743, 38678, 11050, 327, 28270, 7, 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 ]
[ 15307, 502, 262, 2472, 1271, 416, 6536, 287, 257, 1554, 21857, 11, 905, 2472, 1271, 422, 1877, 284, 1029, 1502, 13, 46506, 21743, 11, 327, 28270, 7, 28104, 16034, 2647, 62, 69, 6743, 44441, 11050, 21743, 38678, 11050, 327, 28270, 7, 2...
Which engine has a year larger than 1956?
SELECT "Engine" FROM table_70780 WHERE "Year" > '1956'
[ 13828, 3113, 468, 257, 614, 4025, 621, 25190, 30, 46506, 366, 13798, 1, 16034, 3084, 62, 24038, 1795, 33411, 366, 17688, 1, 1875, 705, 1129, 3980, 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 ]
[ 13828, 3113, 468, 257, 614, 4025, 621, 25190, 30, 46506, 366, 13798, 1, 16034, 3084, 62, 24038, 1795, 33411, 366, 17688, 1, 1875, 705, 1129, 3980, 6 ]
Which song was by artist Gino Vannelli?
SELECT song FROM table_name_15 WHERE artist = "gino vannelli"
[ 13828, 3496, 373, 416, 6802, 402, 2879, 569, 1236, 23225, 30, 46506, 3496, 16034, 3084, 62, 3672, 62, 1314, 33411, 6802, 796, 366, 1655, 78, 410, 1236, 23225, 1 ]
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 13828, 3496, 373, 416, 6802, 402, 2879, 569, 1236, 23225, 30, 46506, 3496, 16034, 3084, 62, 3672, 62, 1314, 33411, 6802, 796, 366, 1655, 78, 410, 1236, 23225, 1 ]
what is the name of the drug that was prescribed two times to patient 018-41654?
SELECT t1.drugname FROM (SELECT medication.drugname, COUNT(medication.drugstarttime) AS c1 FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '018...
[ 10919, 318, 262, 1438, 286, 262, 2563, 326, 373, 14798, 734, 1661, 284, 5827, 5534, 23, 12, 35218, 4051, 30, 46506, 256, 16, 13, 30349, 3672, 16034, 357, 46506, 14103, 13, 30349, 3672, 11, 327, 28270, 7, 1150, 3299, 13, 30349, 9688, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 10919, 318, 262, 1438, 286, 262, 2563, 326, 373, 14798, 734, 1661, 284, 5827, 5534, 23, 12, 35218, 4051, 30, 46506, 256, 16, 13, 30349, 3672, 16034, 357, 46506, 14103, 13, 30349, 3672, 11, 327, 28270, 7, 1150, 3299, 13, 30349, 9688, ...
What's the first elected year of the district whose incumbent is Jim Greenwood?
SELECT MAX("First elected") FROM table_18130 WHERE "Incumbent" = 'Jim Greenwood'
[ 2061, 338, 262, 717, 7018, 614, 286, 262, 4783, 3025, 23526, 318, 5395, 42928, 30, 46506, 25882, 7203, 5962, 7018, 4943, 16034, 3084, 62, 1507, 12952, 33411, 366, 25517, 2178, 298, 1, 796, 705, 18050, 42928, 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 ]
[ 2061, 338, 262, 717, 7018, 614, 286, 262, 4783, 3025, 23526, 318, 5395, 42928, 30, 46506, 25882, 7203, 5962, 7018, 4943, 16034, 3084, 62, 1507, 12952, 33411, 366, 25517, 2178, 298, 1, 796, 705, 18050, 42928, 6 ]
Which Drawn is the average one that has a Position smaller than 9, and Points smaller than 22, and a Lost smaller than 9, and an Against larger than 29?
SELECT AVG("Drawn") FROM table_6418 WHERE "Position" < '9' AND "Points" < '22' AND "Lost" < '9' AND "Against" > '29'
[ 13828, 50061, 318, 262, 2811, 530, 326, 468, 257, 23158, 4833, 621, 860, 11, 290, 11045, 4833, 621, 2534, 11, 290, 257, 9164, 4833, 621, 860, 11, 290, 281, 12914, 4025, 621, 2808, 30, 46506, 35224, 7203, 35, 5791, 4943, 16034, 3084, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 13828, 50061, 318, 262, 2811, 530, 326, 468, 257, 23158, 4833, 621, 860, 11, 290, 11045, 4833, 621, 2534, 11, 290, 257, 9164, 4833, 621, 860, 11, 290, 281, 12914, 4025, 621, 2808, 30, 46506, 35224, 7203, 35, 5791, 4943, 16034, 3084, ...
what was patient 14990's arterial bp [diastolic] difference last measured on the last intensive care unit visit compared to the first value measured on the last intensive care unit visit?
SELECT (SELECT chartevents.valuenum FROM chartevents WHERE chartevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 14990) AND NOT icustays.outtime IS NULL ORDER BY icustays.intime DESC LIMIT 1) AND chartevents...
[ 10919, 373, 5827, 1478, 34155, 338, 30675, 498, 275, 79, 685, 10989, 459, 4160, 60, 3580, 938, 8630, 319, 262, 938, 18590, 1337, 4326, 3187, 3688, 284, 262, 717, 1988, 8630, 319, 262, 938, 18590, 1337, 4326, 3187, 30, 46506, 357, 4650...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 10919, 373, 5827, 1478, 34155, 338, 30675, 498, 275, 79, 685, 10989, 459, 4160, 60, 3580, 938, 8630, 319, 262, 938, 18590, 1337, 4326, 3187, 3688, 284, 262, 717, 1988, 8630, 319, 262, 938, 18590, 1337, 4326, 3187, 30, 46506, 357, 4650...
what were the three most commonly ordered procedures for patients who had previously received bronchodilator - nebulized during the same month, in 2102?
SELECT t3.treatmentname FROM (SELECT t2.treatmentname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, treatment.treatmenttime FROM treatment JOIN patient ON treatment.patientunitstayid = patient.patientunitstayid WHERE treatment.treatmentname = 'bronchodilator - nebulized' AND STRFTIME...
[ 10919, 547, 262, 1115, 749, 8811, 6149, 9021, 329, 3871, 508, 550, 4271, 2722, 18443, 354, 375, 346, 1352, 532, 497, 15065, 1143, 1141, 262, 976, 1227, 11, 287, 362, 15377, 30, 46506, 256, 18, 13, 42487, 3672, 16034, 357, 46506, 256, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 10919, 547, 262, 1115, 749, 8811, 6149, 9021, 329, 3871, 508, 550, 4271, 2722, 18443, 354, 375, 346, 1352, 532, 497, 15065, 1143, 1141, 262, 976, 1227, 11, 287, 362, 15377, 30, 46506, 256, 18, 13, 42487, 3672, 16034, 357, 46506, 256, ...
Swimmer Jiao Liuyang has what for the sum of lane?
SELECT COUNT("Lane") FROM table_13583 WHERE "Name" = 'jiao liuyang'
[ 10462, 10957, 449, 13481, 7455, 4669, 648, 468, 644, 329, 262, 2160, 286, 11193, 30, 46506, 327, 28270, 7203, 43, 1531, 4943, 16034, 3084, 62, 1485, 46239, 33411, 366, 5376, 1, 796, 705, 73, 13481, 7649, 4669, 648, 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 ]
[ 10462, 10957, 449, 13481, 7455, 4669, 648, 468, 644, 329, 262, 2160, 286, 11193, 30, 46506, 327, 28270, 7203, 43, 1531, 4943, 16034, 3084, 62, 1485, 46239, 33411, 366, 5376, 1, 796, 705, 73, 13481, 7649, 4669, 648, 6 ]
What are the number of the first names of all students in Smith Hall?, and rank Y-axis from high to low order.
SELECT Fname, COUNT(Fname) FROM Student AS T1 JOIN Lives_in AS T2 ON T1.stuid = T2.stuid JOIN Dorm AS T3 ON T3.dormid = T2.dormid WHERE T3.dorm_name = 'Smith Hall' GROUP BY Fname ORDER BY COUNT(Fname) DESC
[ 2061, 389, 262, 1271, 286, 262, 717, 3891, 286, 477, 2444, 287, 4176, 4789, 21747, 290, 4279, 575, 12, 22704, 422, 1029, 284, 1877, 1502, 13, 46506, 376, 3672, 11, 327, 28270, 7, 37, 3672, 8, 16034, 13613, 7054, 309, 16, 32357, 1268...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 2061, 389, 262, 1271, 286, 262, 717, 3891, 286, 477, 2444, 287, 4176, 4789, 21747, 290, 4279, 575, 12, 22704, 422, 1029, 284, 1877, 1502, 13, 46506, 376, 3672, 11, 327, 28270, 7, 37, 3672, 8, 16034, 13613, 7054, 309, 16, 32357, 1268...
Which title had 20 episodes and aired on 11 jun- 6 jul?
SELECT english_title__chinese_title_ FROM table_name_20 WHERE number_of_episodes = 20 AND airing_date = "11 jun- 6 jul"
[ 13828, 3670, 550, 1160, 8640, 290, 18530, 319, 1367, 10891, 12, 718, 474, 377, 30, 46506, 46932, 62, 7839, 834, 354, 3762, 62, 7839, 62, 16034, 3084, 62, 3672, 62, 1238, 33411, 1271, 62, 1659, 62, 538, 8052, 796, 1160, 5357, 31701, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ]
[ 13828, 3670, 550, 1160, 8640, 290, 18530, 319, 1367, 10891, 12, 718, 474, 377, 30, 46506, 46932, 62, 7839, 834, 354, 3762, 62, 7839, 62, 16034, 3084, 62, 3672, 62, 1238, 33411, 1271, 62, 1659, 62, 538, 8052, 796, 1160, 5357, 31701, ...
List all every engineer's first name, last name, details and coresponding skill description.
SELECT T1.first_name, T1.last_name, T1.other_details, T3.skill_description FROM maintenance_engineers AS T1 JOIN engineer_skills AS T2 ON T1.engineer_id = T2.engineer_id JOIN skills AS T3 ON T2.skill_id = T3.skill_id
[ 8053, 477, 790, 11949, 338, 717, 1438, 11, 938, 1438, 11, 3307, 290, 4755, 2777, 42703, 5032, 6764, 13, 46506, 309, 16, 13, 11085, 62, 3672, 11, 309, 16, 13, 12957, 62, 3672, 11, 309, 16, 13, 847, 62, 36604, 11, 309, 18, 13, 424...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 8053, 477, 790, 11949, 338, 717, 1438, 11, 938, 1438, 11, 3307, 290, 4755, 2777, 42703, 5032, 6764, 13, 46506, 309, 16, 13, 11085, 62, 3672, 11, 309, 16, 13, 12957, 62, 3672, 11, 309, 16, 13, 847, 62, 36604, 11, 309, 18, 13, 424...
When did the episode titled 'Vanessa's new class' air for the first time?
SELECT "Original air date" FROM table_30371 WHERE "Title" = 'Vanessa''s New Class'
[ 2215, 750, 262, 4471, 11946, 705, 25298, 21411, 338, 649, 1398, 6, 1633, 329, 262, 717, 640, 30, 46506, 366, 20556, 1633, 3128, 1, 16034, 3084, 62, 1270, 38056, 33411, 366, 19160, 1, 796, 705, 25298, 21411, 7061, 82, 968, 5016, 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 ]
[ 2215, 750, 262, 4471, 11946, 705, 25298, 21411, 338, 649, 1398, 6, 1633, 329, 262, 717, 640, 30, 46506, 366, 20556, 1633, 3128, 1, 16034, 3084, 62, 1270, 38056, 33411, 366, 19160, 1, 796, 705, 25298, 21411, 7061, 82, 968, 5016, 6 ]