instruction stringlengths 0 1.06k | response stringlengths 2 3.61k | input_ids list | attention_mask list | labels list |
|---|---|---|---|---|
count the number of patients whose admission type is emergency and diagnosis long title is accidents occurring in other specified places. | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.admission_type = "EMERGENCY" AND diagnoses.long_title = "Accidents occurring in other specified places" | [
9127,
262,
1271,
286,
3871,
3025,
13938,
2099,
318,
6334,
290,
13669,
890,
3670,
318,
17390,
14963,
287,
584,
7368,
4113,
13,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
16728,
13,
32796,
62,
312,
8,
16034,
16728,
3268,
21479,
32357,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
9127,
262,
1271,
286,
3871,
3025,
13938,
2099,
318,
6334,
290,
13669,
890,
3670,
318,
17390,
14963,
287,
584,
7368,
4113,
13,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
16728,
13,
32796,
62,
312,
8,
16034,
16728,
3268,
21479,
32357,
... |
Name the total number of total with silver of 6, bronze more than 5 and gold less than 4 | SELECT COUNT(total) FROM table_name_57 WHERE silver = 6 AND bronze > 5 AND gold < 4 | [
5376,
262,
2472,
1271,
286,
2472,
351,
8465,
286,
718,
11,
22101,
517,
621,
642,
290,
3869,
1342,
621,
604,
46506,
327,
28270,
7,
23350,
8,
16034,
3084,
62,
3672,
62,
3553,
33411,
8465,
796,
718,
5357,
22101,
1875,
642,
5357,
3869,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
2472,
1271,
286,
2472,
351,
8465,
286,
718,
11,
22101,
517,
621,
642,
290,
3869,
1342,
621,
604,
46506,
327,
28270,
7,
23350,
8,
16034,
3084,
62,
3672,
62,
3553,
33411,
8465,
796,
718,
5357,
22101,
1875,
642,
5357,
3869,
... |
what is the average daily number of patients who have had rash, infectious since 1 year ago? | SELECT AVG(t1.c1) FROM (SELECT COUNT(DISTINCT diagnosis.patientunitstayid) AS c1 FROM diagnosis WHERE diagnosis.diagnosisname = 'rash, infectious' AND DATETIME(diagnosis.diagnosistime) >= DATETIME(CURRENT_TIME(), '-1 year') GROUP BY STRFTIME('%y-%m-%d', diagnosis.diagnosistime)) AS t1 | [
10919,
318,
262,
2811,
4445,
1271,
286,
3871,
508,
423,
550,
28509,
11,
25246,
1201,
352,
614,
2084,
30,
46506,
35224,
7,
83,
16,
13,
66,
16,
8,
16034,
357,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
13669,
13,
26029,
20850,
31712,... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
2811,
4445,
1271,
286,
3871,
508,
423,
550,
28509,
11,
25246,
1201,
352,
614,
2084,
30,
46506,
35224,
7,
83,
16,
13,
66,
16,
8,
16034,
357,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
13669,
13,
26029,
20850,
31712,... |
in the previous year, what was the four of the most frequent output events? | SELECT d_items.label FROM d_items WHERE d_items.itemid IN (SELECT t1.itemid FROM (SELECT outputevents.itemid, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM outputevents WHERE DATETIME(outputevents.charttime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year') GROUP BY outputevents.itemid) AS... | [
259,
262,
2180,
614,
11,
644,
373,
262,
1440,
286,
262,
749,
10792,
5072,
2995,
30,
46506,
288,
62,
23814,
13,
18242,
16034,
288,
62,
23814,
33411,
288,
62,
23814,
13,
9186,
312,
3268,
357,
46506,
256,
16,
13,
9186,
312,
16034,
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... | [
259,
262,
2180,
614,
11,
644,
373,
262,
1440,
286,
262,
749,
10792,
5072,
2995,
30,
46506,
288,
62,
23814,
13,
18242,
16034,
288,
62,
23814,
33411,
288,
62,
23814,
13,
9186,
312,
3268,
357,
46506,
256,
16,
13,
9186,
312,
16034,
357,... |
What was the length of release 3.6? | SELECT length FROM table_name_54 WHERE release = 3.6 | [
2061,
373,
262,
4129,
286,
2650,
513,
13,
21,
30,
46506,
4129,
16034,
3084,
62,
3672,
62,
4051,
33411,
2650,
796,
513,
13,
21
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] | [
2061,
373,
262,
4129,
286,
2650,
513,
13,
21,
30,
46506,
4129,
16034,
3084,
62,
3672,
62,
4051,
33411,
2650,
796,
513,
13,
21
] |
how many patients of hispano/latino - puerto rican ethnicity have been prescribed the drug sulfamethoxazole - trimethoprim? | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.ethnicity = "HISPANIC/LATINO - PUERTO RICAN" AND prescriptions.drug = "Sulfamethoxazole-Trimethoprim" | [
4919,
867,
3871,
286,
465,
79,
5733,
14,
15460,
2879,
532,
47574,
13806,
374,
7490,
26289,
423,
587,
14798,
262,
2563,
22443,
321,
2788,
1140,
1031,
2305,
532,
15797,
2788,
404,
3036,
30,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
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... | [
4919,
867,
3871,
286,
465,
79,
5733,
14,
15460,
2879,
532,
47574,
13806,
374,
7490,
26289,
423,
587,
14798,
262,
2563,
22443,
321,
2788,
1140,
1031,
2305,
532,
15797,
2788,
404,
3036,
30,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
16... |
what is maximum age of patients whose marital status is single and year of birth is greater than 2089? | SELECT MAX(demographic.age) FROM demographic WHERE demographic.marital_status = "SINGLE" AND demographic.dob_year > "2089" | [
10919,
318,
5415,
2479,
286,
3871,
3025,
29555,
3722,
318,
2060,
290,
614,
286,
4082,
318,
3744,
621,
1160,
4531,
30,
46506,
25882,
7,
9536,
6826,
13,
496,
8,
16034,
16728,
33411,
16728,
13,
3876,
1287,
62,
13376,
796,
366,
50,
2751,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
5415,
2479,
286,
3871,
3025,
29555,
3722,
318,
2060,
290,
614,
286,
4082,
318,
3744,
621,
1160,
4531,
30,
46506,
25882,
7,
9536,
6826,
13,
496,
8,
16034,
16728,
33411,
16728,
13,
3876,
1287,
62,
13376,
796,
366,
50,
2751,
... |
what is the name of a procedure that patient 004-32341 has been given for two or more times since 12/2105? | SELECT t1.treatmentname FROM (SELECT treatment.treatmentname, COUNT(treatment.treatmenttime) AS c1 FROM treatment WHERE treatment.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid ... | [
10919,
318,
262,
1438,
286,
257,
8771,
326,
5827,
3571,
19,
12,
32637,
3901,
468,
587,
1813,
329,
734,
393,
517,
1661,
1201,
1105,
14,
17,
13348,
30,
46506,
256,
16,
13,
42487,
3672,
16034,
357,
46506,
3513,
13,
42487,
3672,
11,
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,
318,
262,
1438,
286,
257,
8771,
326,
5827,
3571,
19,
12,
32637,
3901,
468,
587,
1813,
329,
734,
393,
517,
1661,
1201,
1105,
14,
17,
13348,
30,
46506,
256,
16,
13,
42487,
3672,
16034,
357,
46506,
3513,
13,
42487,
3672,
11,
327... |
Show the number of cities in counties that have a population more than 20000. | SELECT COUNT(*) FROM city WHERE county_ID IN (SELECT county_ID FROM county_public_safety WHERE population > 20000) | [
15307,
262,
1271,
286,
4736,
287,
14683,
326,
423,
257,
3265,
517,
621,
939,
405,
13,
46506,
327,
28270,
7,
28104,
16034,
1748,
33411,
7968,
62,
2389,
3268,
357,
46506,
7968,
62,
2389,
16034,
7968,
62,
11377,
62,
44708,
33411,
3265,
1... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
262,
1271,
286,
4736,
287,
14683,
326,
423,
257,
3265,
517,
621,
939,
405,
13,
46506,
327,
28270,
7,
28104,
16034,
1748,
33411,
7968,
62,
2389,
3268,
357,
46506,
7968,
62,
2389,
16034,
7968,
62,
11377,
62,
44708,
33411,
3265,
1... |
What is the season # when the musical guest and song is lisa stansfield ' you know how to love me '? | SELECT COUNT("Season #") FROM table_17271 WHERE "Musical guest and song" = 'Lisa Stansfield " You Know How to Love Me ' | [
2061,
318,
262,
1622,
1303,
618,
262,
10530,
8319,
290,
3496,
318,
300,
9160,
336,
504,
3245,
705,
345,
760,
703,
284,
1842,
502,
705,
30,
46506,
327,
28270,
7203,
18960,
1303,
4943,
16034,
3084,
62,
1558,
28977,
33411,
366,
10694,
60... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
1622,
1303,
618,
262,
10530,
8319,
290,
3496,
318,
300,
9160,
336,
504,
3245,
705,
345,
760,
703,
284,
1842,
502,
705,
30,
46506,
327,
28270,
7203,
18960,
1303,
4943,
16034,
3084,
62,
1558,
28977,
33411,
366,
10694,
60... |
What Gold has the Year of 1994? | SELECT "Gold" FROM table_74886 WHERE "Year" = '1994' | [
2061,
3561,
468,
262,
6280,
286,
9162,
30,
46506,
366,
13306,
1,
16034,
3084,
62,
48246,
4521,
33411,
366,
17688,
1,
796,
705,
22666,
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
] | [
2061,
3561,
468,
262,
6280,
286,
9162,
30,
46506,
366,
13306,
1,
16034,
3084,
62,
48246,
4521,
33411,
366,
17688,
1,
796,
705,
22666,
6
] |
what is the victory margin in 2013 with a Winner's share of 1,440,000 | SELECT "Margin of victory" FROM table_43159 WHERE "Winner's share ( $ )" = '1,440,000' AND "Year" = '2013' | [
10919,
318,
262,
5373,
10330,
287,
2211,
351,
257,
25358,
338,
2648,
286,
352,
11,
25644,
11,
830,
46506,
366,
24428,
259,
286,
5373,
1,
16034,
3084,
62,
3559,
19707,
33411,
366,
48056,
338,
2648,
357,
720,
1267,
1,
796,
705,
16,
11... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] | [
10919,
318,
262,
5373,
10330,
287,
2211,
351,
257,
25358,
338,
2648,
286,
352,
11,
25644,
11,
830,
46506,
366,
24428,
259,
286,
5373,
1,
16034,
3084,
62,
3559,
19707,
33411,
366,
48056,
338,
2648,
357,
720,
1267,
1,
796,
705,
16,
11... |
How many films for each type? Return a bar chart, and I want to rank in descending by the the number of type please. | SELECT Type, COUNT(Type) FROM film AS T1 JOIN film_market_estimation AS T2 ON T1.Film_ID = T2.Film_ID GROUP BY Type ORDER BY COUNT(Type) DESC | [
2437,
867,
7328,
329,
1123,
2099,
30,
8229,
257,
2318,
8262,
11,
290,
314,
765,
284,
4279,
287,
31491,
416,
262,
262,
1271,
286,
2099,
3387,
13,
46506,
5994,
11,
327,
28270,
7,
6030,
8,
16034,
2646,
7054,
309,
16,
32357,
1268,
2646,... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
7328,
329,
1123,
2099,
30,
8229,
257,
2318,
8262,
11,
290,
314,
765,
284,
4279,
287,
31491,
416,
262,
262,
1271,
286,
2099,
3387,
13,
46506,
5994,
11,
327,
28270,
7,
6030,
8,
16034,
2646,
7054,
309,
16,
32357,
1268,
2646,... |
what is minimum age of patients whose admission location is phys referral/normal deli and primary disease is congestive heart failure? | SELECT MIN(demographic.age) FROM demographic WHERE demographic.admission_location = "PHYS REFERRAL/NORMAL DELI" AND demographic.diagnosis = "CONGESTIVE HEART FAILURE" | [
10919,
318,
5288,
2479,
286,
3871,
3025,
13938,
4067,
318,
2281,
31413,
14,
11265,
1619,
72,
290,
4165,
4369,
318,
22791,
425,
2612,
5287,
30,
46506,
20625,
7,
9536,
6826,
13,
496,
8,
16034,
16728,
33411,
16728,
13,
324,
3411,
62,
248... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
5288,
2479,
286,
3871,
3025,
13938,
4067,
318,
2281,
31413,
14,
11265,
1619,
72,
290,
4165,
4369,
318,
22791,
425,
2612,
5287,
30,
46506,
20625,
7,
9536,
6826,
13,
496,
8,
16034,
16728,
33411,
16728,
13,
324,
3411,
62,
248... |
What is the highest pick # after round 11? | SELECT MAX(pick__number) FROM table_name_33 WHERE round > 11 | [
2061,
318,
262,
4511,
2298,
1303,
706,
2835,
1367,
30,
46506,
25882,
7,
27729,
834,
17618,
8,
16034,
3084,
62,
3672,
62,
2091,
33411,
2835,
1875,
1367
] | [
1,
1,
1,
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,
2298,
1303,
706,
2835,
1367,
30,
46506,
25882,
7,
27729,
834,
17618,
8,
16034,
3084,
62,
3672,
62,
2091,
33411,
2835,
1875,
1367
] |
was patient 016-6009 given a beta blocker - metoprolol treatment since 1 year ago? | SELECT COUNT(*) > 0 FROM treatment WHERE treatment.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '016-6009')) AND treatment.treatmentname = 'beta blocker - metoprolol' AND DA... | [
9776,
5827,
5534,
21,
12,
8054,
24,
1813,
257,
12159,
38731,
532,
1138,
404,
3225,
349,
3513,
1201,
352,
614,
2084,
30,
46506,
327,
28270,
7,
28104,
1875,
657,
16034,
3513,
33411,
3513,
13,
26029,
20850,
31712,
312,
3268,
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... | [
9776,
5827,
5534,
21,
12,
8054,
24,
1813,
257,
12159,
38731,
532,
1138,
404,
3225,
349,
3513,
1201,
352,
614,
2084,
30,
46506,
327,
28270,
7,
28104,
1875,
657,
16034,
3513,
33411,
3513,
13,
26029,
20850,
31712,
312,
3268,
357,
46506,
... |
what is the number of patients whose hospital stay is above 30 days and diagnosed with idio periph neurpthy nos? | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.days_stay > "30" AND diagnoses.short_title = "Idio periph neurpthy NOS" | [
10919,
318,
262,
1271,
286,
3871,
3025,
4436,
2652,
318,
2029,
1542,
1528,
290,
14641,
351,
4686,
952,
583,
13323,
11943,
79,
20057,
43630,
30,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
16728,
13,
32796,
62,
312,
8,
16034,
16728,
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... | [
10919,
318,
262,
1271,
286,
3871,
3025,
4436,
2652,
318,
2029,
1542,
1528,
290,
14641,
351,
4686,
952,
583,
13323,
11943,
79,
20057,
43630,
30,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
16728,
13,
32796,
62,
312,
8,
16034,
16728,
32... |
Who was the pitcher with the record recorded in the 7th inning? | SELECT "Pitcher" FROM table_35751 WHERE "Inn." = '7th' | [
8241,
373,
262,
18086,
351,
262,
1700,
6264,
287,
262,
767,
400,
21648,
30,
46506,
366,
47,
23640,
1,
16034,
3084,
62,
2327,
48365,
33411,
366,
818,
77,
526,
796,
705,
22,
400,
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
] | [
8241,
373,
262,
18086,
351,
262,
1700,
6264,
287,
262,
767,
400,
21648,
30,
46506,
366,
47,
23640,
1,
16034,
3084,
62,
2327,
48365,
33411,
366,
818,
77,
526,
796,
705,
22,
400,
6
] |
what is the total years on the chart | SELECT COUNT(DISTINCT "year") FROM table_204_620 | [
10919,
318,
262,
2472,
812,
319,
262,
8262,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
366,
1941,
4943,
16034,
3084,
62,
18638,
62,
38850
] | [
1,
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,
2472,
812,
319,
262,
8262,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
366,
1941,
4943,
16034,
3084,
62,
18638,
62,
38850
] |
what were the four most frequent diagnoses that patients were diagnosed with within 2 months after being diagnosed with prickly heat since 6 years ago? | 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,
547,
262,
1440,
749,
10792,
40567,
326,
3871,
547,
14641,
351,
1626,
362,
1933,
706,
852,
14641,
351,
41409,
306,
4894,
1201,
718,
812,
2084,
30,
46506,
288,
62,
291,
67,
62,
47356,
4629,
13,
19509,
62,
7839,
16034,
288,
62,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
10919,
547,
262,
1440,
749,
10792,
40567,
326,
3871,
547,
14641,
351,
1626,
362,
1933,
706,
852,
14641,
351,
41409,
306,
4894,
1201,
718,
812,
2084,
30,
46506,
288,
62,
291,
67,
62,
47356,
4629,
13,
19509,
62,
7839,
16034,
288,
62,
... |
who was the first calder memorial trophy winner from the boston bruins ? | SELECT "winner" FROM table_201_38 WHERE "team" = 'boston bruins' ORDER BY "season" LIMIT 1 | [
8727,
373,
262,
717,
2386,
1082,
17357,
16383,
8464,
422,
262,
275,
5744,
18145,
1040,
5633,
46506,
366,
39791,
1,
16034,
3084,
62,
1264,
62,
2548,
33411,
366,
15097,
1,
796,
705,
65,
5744,
18145,
1040,
6,
38678,
11050,
366,
6230,
1,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] | [
8727,
373,
262,
717,
2386,
1082,
17357,
16383,
8464,
422,
262,
275,
5744,
18145,
1040,
5633,
46506,
366,
39791,
1,
16034,
3084,
62,
1264,
62,
2548,
33411,
366,
15097,
1,
796,
705,
65,
5744,
18145,
1040,
6,
38678,
11050,
366,
6230,
1,
... |
What is the name of the venue where the away team scored 10.11 (71)? | SELECT "Venue" FROM table_56964 WHERE "Away team score" = '10.11 (71)' | [
2061,
318,
262,
1438,
286,
262,
14359,
810,
262,
1497,
1074,
7781,
838,
13,
1157,
357,
4869,
19427,
46506,
366,
37522,
518,
1,
16034,
3084,
62,
20,
3388,
2414,
33411,
366,
32,
1014,
1074,
4776,
1,
796,
705,
940,
13,
1157,
357,
4869,... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
1438,
286,
262,
14359,
810,
262,
1497,
1074,
7781,
838,
13,
1157,
357,
4869,
19427,
46506,
366,
37522,
518,
1,
16034,
3084,
62,
20,
3388,
2414,
33411,
366,
32,
1014,
1074,
4776,
1,
796,
705,
940,
13,
1157,
357,
4869,... |
Which year did Maryland hold the title with Railroaders LL Brunswick? | SELECT "Year" FROM table_17909 WHERE "Maryland" = 'Railroaders LL Brunswick' | [
13828,
614,
750,
10769,
1745,
262,
3670,
351,
36289,
364,
27140,
32211,
30,
46506,
366,
17688,
1,
16034,
3084,
62,
21738,
2931,
33411,
366,
24119,
1044,
1,
796,
705,
44631,
6344,
364,
27140,
32211,
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
] | [
13828,
614,
750,
10769,
1745,
262,
3670,
351,
36289,
364,
27140,
32211,
30,
46506,
366,
17688,
1,
16034,
3084,
62,
21738,
2931,
33411,
366,
24119,
1044,
1,
796,
705,
44631,
6344,
364,
27140,
32211,
6
] |
Average reputation of users depending on age. | SELECT DATEDIFF(month, u.CreationDate, CAST(GETDATE() AS DATE)) AS Months, AVG(CAST(u.Reputation AS DECIMAL)) FROM Users AS u GROUP BY DATEDIFF(month, u.CreationDate, CAST(GETDATE() AS DATE)) ORDER BY DATEDIFF(month, u.CreationDate, CAST(GETDATE() AS DATE)) | [
26287,
8507,
286,
2985,
6906,
319,
2479,
13,
46506,
360,
11617,
29267,
7,
8424,
11,
334,
13,
12443,
341,
10430,
11,
327,
11262,
7,
18851,
35,
6158,
3419,
7054,
360,
6158,
4008,
7054,
37461,
11,
35224,
7,
44647,
7,
84,
13,
6207,
7094... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
26287,
8507,
286,
2985,
6906,
319,
2479,
13,
46506,
360,
11617,
29267,
7,
8424,
11,
334,
13,
12443,
341,
10430,
11,
327,
11262,
7,
18851,
35,
6158,
3419,
7054,
360,
6158,
4008,
7054,
37461,
11,
35224,
7,
44647,
7,
84,
13,
6207,
7094... |
What is the Population of the nation that has a Member countries consisting of existing members (1973)? | SELECT "Population" FROM table_71507 WHERE "Member countries" = 'existing members (1973)' | [
2061,
318,
262,
20133,
286,
262,
3277,
326,
468,
257,
10239,
2678,
17747,
286,
4683,
1866,
357,
40220,
19427,
46506,
366,
45251,
1,
16034,
3084,
62,
4869,
35378,
33411,
366,
27608,
2678,
1,
796,
705,
25687,
1866,
357,
40220,
33047
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
20133,
286,
262,
3277,
326,
468,
257,
10239,
2678,
17747,
286,
4683,
1866,
357,
40220,
19427,
46506,
366,
45251,
1,
16034,
3084,
62,
4869,
35378,
33411,
366,
27608,
2678,
1,
796,
705,
25687,
1866,
357,
40220,
33047
] |
What is the j p c that commonly decays (>5% of decays) d 0 + 0 or d 0 + ? | SELECT "J P C" FROM table_76407 WHERE "Commonly decays to (>5% of decays)" = 'd 0 + π 0 or d 0 + γ' | [
2061,
318,
262,
474,
279,
269,
326,
8811,
875,
592,
45160,
20,
4,
286,
875,
592,
8,
288,
657,
1343,
657,
393,
288,
657,
1343,
5633,
46506,
366,
41,
350,
327,
1,
16034,
3084,
62,
4304,
30120,
33411,
366,
6935,
8807,
875,
592,
284,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
474,
279,
269,
326,
8811,
875,
592,
45160,
20,
4,
286,
875,
592,
8,
288,
657,
1343,
657,
393,
288,
657,
1343,
5633,
46506,
366,
41,
350,
327,
1,
16034,
3084,
62,
4304,
30120,
33411,
366,
6935,
8807,
875,
592,
284,
... |
What region has vinyl record listed as its format? | SELECT "Region" FROM table_11206 WHERE "Format" = 'vinyl record' | [
2061,
3814,
468,
23275,
1700,
5610,
355,
663,
5794,
30,
46506,
366,
47371,
1,
16034,
3084,
62,
14686,
3312,
33411,
366,
26227,
1,
796,
705,
7114,
2645,
1700,
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,
3814,
468,
23275,
1700,
5610,
355,
663,
5794,
30,
46506,
366,
47371,
1,
16034,
3084,
62,
14686,
3312,
33411,
366,
26227,
1,
796,
705,
7114,
2645,
1700,
6
] |
What is the total number of Wins, when Draws is less than 2? | SELECT COUNT(wins) FROM table_name_48 WHERE draws < 2 | [
2061,
318,
262,
2472,
1271,
286,
24423,
11,
618,
15315,
82,
318,
1342,
621,
362,
30,
46506,
327,
28270,
7,
86,
1040,
8,
16034,
3084,
62,
3672,
62,
2780,
33411,
14293,
1279,
362
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
24423,
11,
618,
15315,
82,
318,
1342,
621,
362,
30,
46506,
327,
28270,
7,
86,
1040,
8,
16034,
3084,
62,
3672,
62,
2780,
33411,
14293,
1279,
362
] |
Most relevant questions by month. | WITH relevant_questions AS (SELECT Posts.Id, Title, Tags, YEAR(CreationDate) AS CreationYear, MONTH(CreationDate) AS CreationMonth, Score FROM Posts INNER JOIN PostTags ON Posts.Id = PostTags.PostId INNER JOIN Tags ON Tags.Id = PostTags.TagId WHERE 1 = 1 AND Tags.TagName = '##Tag##' AND PostTypeId = 1 AND Score > 0), r... | [
6943,
5981,
2683,
416,
1227,
13,
54,
10554,
5981,
62,
6138,
507,
7054,
357,
46506,
12043,
13,
7390,
11,
11851,
11,
44789,
11,
32914,
7,
12443,
341,
10430,
8,
7054,
21582,
17688,
11,
25000,
4221,
7,
12443,
341,
10430,
8,
7054,
21582,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
6943,
5981,
2683,
416,
1227,
13,
54,
10554,
5981,
62,
6138,
507,
7054,
357,
46506,
12043,
13,
7390,
11,
11851,
11,
44789,
11,
32914,
7,
12443,
341,
10430,
8,
7054,
21582,
17688,
11,
25000,
4221,
7,
12443,
341,
10430,
8,
7054,
21582,
... |
What is the number of the round in which Ron Hansen was drafted and the overall is greater than 332? | SELECT COUNT(round) FROM table_name_60 WHERE name = "ron hansen" AND overall > 332 | [
2061,
318,
262,
1271,
286,
262,
2835,
287,
543,
6575,
27667,
373,
15937,
290,
262,
4045,
318,
3744,
621,
41423,
30,
46506,
327,
28270,
7,
744,
8,
16034,
3084,
62,
3672,
62,
1899,
33411,
1438,
796,
366,
1313,
289,
33807,
1,
5357,
404... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
1271,
286,
262,
2835,
287,
543,
6575,
27667,
373,
15937,
290,
262,
4045,
318,
3744,
621,
41423,
30,
46506,
327,
28270,
7,
744,
8,
16034,
3084,
62,
3672,
62,
1899,
33411,
1438,
796,
366,
1313,
289,
33807,
1,
5357,
404... |
what is three of the most common intakes? | SELECT d_items.label FROM d_items WHERE d_items.itemid IN (SELECT t1.itemid FROM (SELECT inputevents_cv.itemid, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM inputevents_cv GROUP BY inputevents_cv.itemid) AS t1 WHERE t1.c1 <= 3) | [
10919,
318,
1115,
286,
262,
749,
2219,
42219,
30,
46506,
288,
62,
23814,
13,
18242,
16034,
288,
62,
23814,
33411,
288,
62,
23814,
13,
9186,
312,
3268,
357,
46506,
256,
16,
13,
9186,
312,
16034,
357,
46506,
287,
79,
1133,
85,
658,
62... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
10919,
318,
1115,
286,
262,
749,
2219,
42219,
30,
46506,
288,
62,
23814,
13,
18242,
16034,
288,
62,
23814,
33411,
288,
62,
23814,
13,
9186,
312,
3268,
357,
46506,
256,
16,
13,
9186,
312,
16034,
357,
46506,
287,
79,
1133,
85,
658,
62... |
Tell me the team 2 for handelsministerium vienna | SELECT "Team #2" FROM table_56564 WHERE "Team #1" = 'handelsministerium vienna' | [
24446,
502,
262,
1074,
362,
329,
1021,
1424,
1084,
1694,
1505,
25357,
13713,
46506,
366,
15592,
1303,
17,
1,
16034,
3084,
62,
47372,
2414,
33411,
366,
15592,
1303,
16,
1,
796,
705,
4993,
1424,
1084,
1694,
1505,
25357,
13713,
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
] | [
24446,
502,
262,
1074,
362,
329,
1021,
1424,
1084,
1694,
1505,
25357,
13713,
46506,
366,
15592,
1303,
17,
1,
16034,
3084,
62,
47372,
2414,
33411,
366,
15592,
1303,
16,
1,
796,
705,
4993,
1424,
1084,
1694,
1505,
25357,
13713,
6
] |
what is minimum age of patients whose gender is f and age is greater than or equal to 31? | SELECT MIN(demographic.age) FROM demographic WHERE demographic.gender = "F" AND demographic.age >= "31" | [
10919,
318,
5288,
2479,
286,
3871,
3025,
5279,
318,
277,
290,
2479,
318,
3744,
621,
393,
4961,
284,
3261,
30,
46506,
20625,
7,
9536,
6826,
13,
496,
8,
16034,
16728,
33411,
16728,
13,
8388,
796,
366,
37,
1,
5357,
16728,
13,
496,
1818... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
5288,
2479,
286,
3871,
3025,
5279,
318,
277,
290,
2479,
318,
3744,
621,
393,
4961,
284,
3261,
30,
46506,
20625,
7,
9536,
6826,
13,
496,
8,
16034,
16728,
33411,
16728,
13,
8388,
796,
366,
37,
1,
5357,
16728,
13,
496,
1818... |
give me the number of patients whose admission type is elective and lab test name is chloride? | 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.label = "Chloride" | [
26535,
502,
262,
1271,
286,
3871,
3025,
13938,
2099,
318,
1742,
425,
290,
2248,
1332,
1438,
318,
44921,
30,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
16728,
13,
32796,
62,
312,
8,
16034,
16728,
3268,
21479,
32357,
1268,
2248,
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... | [
26535,
502,
262,
1271,
286,
3871,
3025,
13938,
2099,
318,
1742,
425,
290,
2248,
1332,
1438,
318,
44921,
30,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
16728,
13,
32796,
62,
312,
8,
16034,
16728,
3268,
21479,
32357,
1268,
2248,
6177,
... |
What's the total area in kilometers of the parish addington? | SELECT COUNT("Area km 2") FROM table_8980 WHERE "Official Name" = 'addington' | [
2061,
338,
262,
2472,
1989,
287,
18212,
286,
262,
28830,
4375,
1122,
30,
46506,
327,
28270,
7203,
30547,
10571,
362,
4943,
16034,
3084,
62,
4531,
1795,
33411,
366,
28529,
6530,
1,
796,
705,
2860,
9557,
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
] | [
2061,
338,
262,
2472,
1989,
287,
18212,
286,
262,
28830,
4375,
1122,
30,
46506,
327,
28270,
7203,
30547,
10571,
362,
4943,
16034,
3084,
62,
4531,
1795,
33411,
366,
28529,
6530,
1,
796,
705,
2860,
9557,
6
] |
what is the religion and days of hospital stay for the patient id 29961? | SELECT demographic.religion, demographic.days_stay FROM demographic WHERE demographic.subject_id = "29961" | [
10919,
318,
262,
5737,
290,
1528,
286,
4436,
2652,
329,
262,
5827,
4686,
31011,
5333,
30,
46506,
16728,
13,
2411,
17035,
11,
16728,
13,
12545,
62,
31712,
16034,
16728,
33411,
16728,
13,
32796,
62,
312,
796,
366,
1959,
4846,
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
] | [
10919,
318,
262,
5737,
290,
1528,
286,
4436,
2652,
329,
262,
5827,
4686,
31011,
5333,
30,
46506,
16728,
13,
2411,
17035,
11,
16728,
13,
12545,
62,
31712,
16034,
16728,
33411,
16728,
13,
32796,
62,
312,
796,
366,
1959,
4846,
16,
1
] |
what television service are in the united kingdom and n is greater than 854.0? | SELECT television_service FROM table_15887683_15 WHERE country = "United Kingdom" AND n° > 854.0 | [
10919,
5581,
2139,
389,
287,
262,
16503,
13239,
290,
299,
318,
3744,
621,
807,
4051,
13,
15,
30,
46506,
5581,
62,
15271,
16034,
3084,
62,
1314,
3459,
30610,
18,
62,
1314,
33411,
1499,
796,
366,
17013,
7526,
1,
5357,
299,
7200,
1875,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
5581,
2139,
389,
287,
262,
16503,
13239,
290,
299,
318,
3744,
621,
807,
4051,
13,
15,
30,
46506,
5581,
62,
15271,
16034,
3084,
62,
1314,
3459,
30610,
18,
62,
1314,
33411,
1499,
796,
366,
17013,
7526,
1,
5357,
299,
7200,
1875,
... |
how many patients diagnosed with short title cardiac tamponade have hematology lab test category? | 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 = "Cardiac tamponade" AND lab."CATEGORY" = "Hematology" | [
4919,
867,
3871,
14641,
351,
1790,
3670,
26077,
47039,
261,
671,
423,
339,
6759,
1435,
2248,
1332,
6536,
30,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
16728,
13,
32796,
62,
312,
8,
16034,
16728,
3268,
21479,
32357,
1268,
40567,
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... | [
4919,
867,
3871,
14641,
351,
1790,
3670,
26077,
47039,
261,
671,
423,
339,
6759,
1435,
2248,
1332,
6536,
30,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
16728,
13,
32796,
62,
312,
8,
16034,
16728,
3268,
21479,
32357,
1268,
40567,
6177,
... |
What series is at the position 7? | SELECT "Series" FROM table_2440 WHERE "Position" = '7' | [
2061,
2168,
318,
379,
262,
2292,
767,
30,
46506,
366,
27996,
1,
16034,
3084,
62,
1731,
1821,
33411,
366,
26545,
1,
796,
705,
22,
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
] | [
2061,
2168,
318,
379,
262,
2292,
767,
30,
46506,
366,
27996,
1,
16034,
3084,
62,
1731,
1821,
33411,
366,
26545,
1,
796,
705,
22,
6
] |
What episode had a share percentage of 41.5%? | SELECT episode FROM table_27319183_7 WHERE share___percentage_ = "41.5" | [
2061,
4471,
550,
257,
2648,
5873,
286,
6073,
13,
20,
4,
30,
46506,
4471,
16034,
3084,
62,
27367,
1129,
24839,
62,
22,
33411,
2648,
17569,
25067,
496,
62,
796,
366,
3901,
13,
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,
1,
1,
1,
1,
1,
1
] | [
2061,
4471,
550,
257,
2648,
5873,
286,
6073,
13,
20,
4,
30,
46506,
4471,
16034,
3084,
62,
27367,
1129,
24839,
62,
22,
33411,
2648,
17569,
25067,
496,
62,
796,
366,
3901,
13,
20,
1
] |
What are the names of mountains in ascending alphabetical order? | SELECT Name FROM mountain ORDER BY Name | [
2061,
389,
262,
3891,
286,
12269,
287,
41988,
24830,
605,
1502,
30,
46506,
6530,
16034,
8598,
38678,
11050,
6530
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] | [
2061,
389,
262,
3891,
286,
12269,
287,
41988,
24830,
605,
1502,
30,
46506,
6530,
16034,
8598,
38678,
11050,
6530
] |
What is the cardinalatial order and title of bosone? | SELECT "Cardinalatial order and title" FROM table_66281 WHERE "Elector" = 'bosone' | [
2061,
318,
262,
38691,
34961,
1502,
290,
3670,
286,
37284,
505,
30,
46506,
366,
16962,
1292,
34961,
1502,
290,
3670,
1,
16034,
3084,
62,
2791,
30368,
33411,
366,
19453,
273,
1,
796,
705,
39565,
505,
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
] | [
2061,
318,
262,
38691,
34961,
1502,
290,
3670,
286,
37284,
505,
30,
46506,
366,
16962,
1292,
34961,
1502,
290,
3670,
1,
16034,
3084,
62,
2791,
30368,
33411,
366,
19453,
273,
1,
796,
705,
39565,
505,
6
] |
which type of drug is norepinephrine? | SELECT prescriptions.drug_type FROM prescriptions WHERE prescriptions.drug = "NORepinephrine" | [
4758,
2099,
286,
2563,
318,
299,
382,
23908,
47723,
30,
46506,
34092,
13,
30349,
62,
4906,
16034,
34092,
33411,
34092,
13,
30349,
796,
366,
35510,
538,
500,
47723,
1
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] | [
4758,
2099,
286,
2563,
318,
299,
382,
23908,
47723,
30,
46506,
34092,
13,
30349,
62,
4906,
16034,
34092,
33411,
34092,
13,
30349,
796,
366,
35510,
538,
500,
47723,
1
] |
For those records from the products and each product's manufacturer, visualize a bar chart about the distribution of name and the sum of code , and group by attribute name, and could you list Y in ascending order please? | SELECT T1.Name, T1.Code FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T1.Name ORDER BY T1.Code | [
1890,
883,
4406,
422,
262,
3186,
290,
1123,
1720,
338,
11554,
11,
38350,
257,
2318,
8262,
546,
262,
6082,
286,
1438,
290,
262,
2160,
286,
2438,
837,
290,
1448,
416,
11688,
1438,
11,
290,
714,
345,
1351,
575,
287,
41988,
1502,
3387,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
4406,
422,
262,
3186,
290,
1123,
1720,
338,
11554,
11,
38350,
257,
2318,
8262,
546,
262,
6082,
286,
1438,
290,
262,
2160,
286,
2438,
837,
290,
1448,
416,
11688,
1438,
11,
290,
714,
345,
1351,
575,
287,
41988,
1502,
3387,
... |
flights from PHOENIX to LAS VEGAS | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, flight WHERE CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'PHOENIX' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'LAS VE... | [
2704,
2337,
422,
9370,
46,
1677,
10426,
284,
406,
1921,
569,
7156,
1921,
46506,
360,
8808,
1268,
4177,
5474,
13,
22560,
62,
312,
16034,
9003,
62,
15271,
7054,
31600,
15490,
62,
35009,
27389,
62,
15,
11,
9003,
62,
15271,
7054,
31600,
1... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
2704,
2337,
422,
9370,
46,
1677,
10426,
284,
406,
1921,
569,
7156,
1921,
46506,
360,
8808,
1268,
4177,
5474,
13,
22560,
62,
312,
16034,
9003,
62,
15271,
7054,
31600,
15490,
62,
35009,
27389,
62,
15,
11,
9003,
62,
15271,
7054,
31600,
1... |
who was sunk the most ? | SELECT "nationality" FROM table_202_117 WHERE "fate" = 'sunk' GROUP BY "nationality" ORDER BY COUNT(*) DESC LIMIT 1 | [
8727,
373,
24790,
262,
749,
5633,
46506,
366,
14648,
414,
1,
16034,
3084,
62,
19004,
62,
17657,
33411,
366,
69,
378,
1,
796,
705,
82,
2954,
6,
44441,
11050,
366,
14648,
414,
1,
38678,
11050,
327,
28270,
7,
28104,
22196,
34,
27564,
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
] | [
8727,
373,
24790,
262,
749,
5633,
46506,
366,
14648,
414,
1,
16034,
3084,
62,
19004,
62,
17657,
33411,
366,
69,
378,
1,
796,
705,
82,
2954,
6,
44441,
11050,
366,
14648,
414,
1,
38678,
11050,
327,
28270,
7,
28104,
22196,
34,
27564,
2... |
which year had the most NIPS papers ? | SELECT DISTINCT COUNT(paper.paperid), paper.year FROM paper, venue WHERE venue.venueid = paper.venueid AND venue.venuename = 'NIPS' GROUP BY paper.year ORDER BY COUNT(paper.paperid) DESC | [
4758,
614,
550,
262,
749,
24947,
3705,
9473,
5633,
46506,
360,
8808,
1268,
4177,
327,
28270,
7,
20189,
13,
20189,
312,
828,
3348,
13,
1941,
16034,
3348,
11,
14359,
33411,
14359,
13,
4080,
312,
796,
3348,
13,
4080,
312,
5357,
14359,
13... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
4758,
614,
550,
262,
749,
24947,
3705,
9473,
5633,
46506,
360,
8808,
1268,
4177,
327,
28270,
7,
20189,
13,
20189,
312,
828,
3348,
13,
1941,
16034,
3348,
11,
14359,
33411,
14359,
13,
4080,
312,
796,
3348,
13,
4080,
312,
5357,
14359,
13... |
Who were the quarterfinalists for the runner-ups of mike de palmer gary donnelly? | SELECT quarterfinalists FROM table_21584646_10 WHERE runner_up = "Mike De Palmer Gary Donnelly" | [
8241,
547,
262,
3860,
20311,
1023,
329,
262,
17490,
12,
4739,
286,
285,
522,
390,
6340,
647,
308,
560,
836,
77,
6148,
30,
46506,
3860,
20311,
1023,
16034,
3084,
62,
23349,
5705,
27720,
62,
940,
33411,
17490,
62,
929,
796,
366,
16073,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
547,
262,
3860,
20311,
1023,
329,
262,
17490,
12,
4739,
286,
285,
522,
390,
6340,
647,
308,
560,
836,
77,
6148,
30,
46506,
3860,
20311,
1023,
16034,
3084,
62,
23349,
5705,
27720,
62,
940,
33411,
17490,
62,
929,
796,
366,
16073,
... |
Who was the under-15 when Moises Galvez was the under-17? | SELECT under_15 FROM table_26368963_1 WHERE under_17 = "Moises Galvez" | [
8241,
373,
262,
739,
12,
1314,
618,
4270,
2696,
5027,
33425,
373,
262,
739,
12,
1558,
30,
46506,
739,
62,
1314,
16034,
3084,
62,
2075,
2623,
4531,
5066,
62,
16,
33411,
739,
62,
1558,
796,
366,
16632,
2696,
5027,
33425,
1
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
739,
12,
1314,
618,
4270,
2696,
5027,
33425,
373,
262,
739,
12,
1558,
30,
46506,
739,
62,
1314,
16034,
3084,
62,
2075,
2623,
4531,
5066,
62,
16,
33411,
739,
62,
1558,
796,
366,
16632,
2696,
5027,
33425,
1
] |
provide the number of patients whose insurance is self pay and procedure long title is initial insertion of transvenous lead [electrode] into ventricle? | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.insurance = "Self Pay" AND procedures.long_title = "Initial insertion of transvenous lead [electrode] into ventricle" | [
15234,
485,
262,
1271,
286,
3871,
3025,
5096,
318,
2116,
1414,
290,
8771,
890,
3670,
318,
4238,
36075,
286,
1007,
574,
516,
1085,
685,
9509,
305,
2934,
60,
656,
7435,
1173,
293,
30,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
16728,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
5096,
318,
2116,
1414,
290,
8771,
890,
3670,
318,
4238,
36075,
286,
1007,
574,
516,
1085,
685,
9509,
305,
2934,
60,
656,
7435,
1173,
293,
30,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
16728,
... |
What was the score of the game when the Indians ended up with a record of 55-51? | SELECT "Score" FROM table_34622 WHERE "Record" = '55-51' | [
2061,
373,
262,
4776,
286,
262,
983,
618,
262,
12746,
4444,
510,
351,
257,
1700,
286,
5996,
12,
4349,
30,
46506,
366,
26595,
1,
16034,
3084,
62,
30557,
1828,
33411,
366,
23739,
1,
796,
705,
2816,
12,
4349,
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
] | [
2061,
373,
262,
4776,
286,
262,
983,
618,
262,
12746,
4444,
510,
351,
257,
1700,
286,
5996,
12,
4349,
30,
46506,
366,
26595,
1,
16034,
3084,
62,
30557,
1828,
33411,
366,
23739,
1,
796,
705,
2816,
12,
4349,
6
] |
Name the total number of nicknames for andrew college | SELECT COUNT(nickname) FROM table_16734640_1 WHERE institution = "Andrew College" | [
5376,
262,
2472,
1271,
286,
14428,
14933,
329,
290,
1809,
4152,
46506,
327,
28270,
7,
17172,
3672,
8,
16034,
3084,
62,
21940,
30557,
1821,
62,
16,
33411,
9901,
796,
366,
20508,
5535,
1
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
2472,
1271,
286,
14428,
14933,
329,
290,
1809,
4152,
46506,
327,
28270,
7,
17172,
3672,
8,
16034,
3084,
62,
21940,
30557,
1821,
62,
16,
33411,
9901,
796,
366,
20508,
5535,
1
] |
Who is the callsign that has ICAO of SCO? | SELECT callsign FROM table_name_68 WHERE icao = "sco" | [
8241,
318,
262,
3848,
570,
326,
468,
314,
8141,
46,
286,
6374,
46,
30,
46506,
3848,
570,
16034,
3084,
62,
3672,
62,
3104,
33411,
220,
3970,
78,
796,
366,
82,
1073,
1
] | [
1,
1,
1,
1,
1,
1,
1,
1,
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,
318,
262,
3848,
570,
326,
468,
314,
8141,
46,
286,
6374,
46,
30,
46506,
3848,
570,
16034,
3084,
62,
3672,
62,
3104,
33411,
220,
3970,
78,
796,
366,
82,
1073,
1
] |
In 1961, what was the Chassis when the points were lower than 6? | SELECT chassis FROM table_name_51 WHERE points < 6 AND year = 1961 | [
818,
20510,
11,
644,
373,
262,
609,
20297,
618,
262,
2173,
547,
2793,
621,
718,
30,
46506,
24587,
16034,
3084,
62,
3672,
62,
4349,
33411,
2173,
1279,
718,
5357,
614,
796,
20510
] | [
1,
1,
1,
1,
1,
1,
1,
1,
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,
20510,
11,
644,
373,
262,
609,
20297,
618,
262,
2173,
547,
2793,
621,
718,
30,
46506,
24587,
16034,
3084,
62,
3672,
62,
4349,
33411,
2173,
1279,
718,
5357,
614,
796,
20510
] |
What is the highest number of silvers a team with more than 95 total medals has? | SELECT MAX("Silver") FROM table_52435 WHERE "Total" > '95' | [
2061,
318,
262,
4511,
1271,
286,
3313,
690,
257,
1074,
351,
517,
621,
6957,
2472,
28057,
468,
30,
46506,
25882,
7203,
26766,
4943,
16034,
3084,
62,
48057,
2327,
33411,
366,
14957,
1,
1875,
705,
3865,
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
] | [
2061,
318,
262,
4511,
1271,
286,
3313,
690,
257,
1074,
351,
517,
621,
6957,
2472,
28057,
468,
30,
46506,
25882,
7203,
26766,
4943,
16034,
3084,
62,
48057,
2327,
33411,
366,
14957,
1,
1875,
705,
3865,
6
] |
How many positions have 9 as a drawn, 5 as a difference, with a lost less than 14? | SELECT COUNT("Position") FROM table_37474 WHERE "Drawn" = '9' AND "Difference" = '5' AND "Lost" < '14' | [
2437,
867,
6116,
423,
860,
355,
257,
7428,
11,
642,
355,
257,
3580,
11,
351,
257,
2626,
1342,
621,
1478,
30,
46506,
327,
28270,
7203,
26545,
4943,
16034,
3084,
62,
2718,
38652,
33411,
366,
35,
5791,
1,
796,
705,
24,
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
] | [
2437,
867,
6116,
423,
860,
355,
257,
7428,
11,
642,
355,
257,
3580,
11,
351,
257,
2626,
1342,
621,
1478,
30,
46506,
327,
28270,
7203,
26545,
4943,
16034,
3084,
62,
2718,
38652,
33411,
366,
35,
5791,
1,
796,
705,
24,
6,
5357,
366,
... |
most popular python questions for Julia :). | SELECT P.Title, P.Id AS "post_link", P.Score AS Score, P.FavoriteCount AS Favorites, P.ViewCount AS "views" FROM Posts AS P WHERE P.Tags LIKE '%<##tag?julia##>%' AND NOT P.CommunityOwnedDate IS NULL AND NOT P.Title IS NULL ORDER BY Score DESC LIMIT 100 | [
1712,
2968,
21015,
2683,
329,
22300,
1058,
737,
46506,
350,
13,
19160,
11,
350,
13,
7390,
7054,
366,
7353,
62,
8726,
1600,
350,
13,
26595,
7054,
15178,
11,
350,
13,
49434,
12332,
7054,
38196,
2737,
11,
350,
13,
7680,
12332,
7054,
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,
1,
1... | [
1712,
2968,
21015,
2683,
329,
22300,
1058,
737,
46506,
350,
13,
19160,
11,
350,
13,
7390,
7054,
366,
7353,
62,
8726,
1600,
350,
13,
26595,
7054,
15178,
11,
350,
13,
49434,
12332,
7054,
38196,
2737,
11,
350,
13,
7680,
12332,
7054,
366,... |
Show the number of courses each instructor taught with a bar chart grouping by course code. | SELECT CRS_CODE, COUNT(CRS_CODE) FROM CLASS AS T1 JOIN EMPLOYEE AS T2 ON T1.PROF_NUM = T2.EMP_NUM GROUP BY CRS_CODE | [
15307,
262,
1271,
286,
10902,
1123,
21187,
7817,
351,
257,
2318,
8262,
36115,
416,
1781,
2438,
13,
46506,
327,
6998,
62,
34,
16820,
11,
327,
28270,
7,
34,
6998,
62,
34,
16820,
8,
16034,
42715,
7054,
309,
16,
32357,
1268,
17228,
6489,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
262,
1271,
286,
10902,
1123,
21187,
7817,
351,
257,
2318,
8262,
36115,
416,
1781,
2438,
13,
46506,
327,
6998,
62,
34,
16820,
11,
327,
28270,
7,
34,
6998,
62,
34,
16820,
8,
16034,
42715,
7054,
309,
16,
32357,
1268,
17228,
6489,
... |
Name the sum of laps for 12 grids | SELECT SUM("Laps") FROM table_70605 WHERE "Grid" = '12' | [
5376,
262,
2160,
286,
24590,
329,
1105,
50000,
46506,
35683,
7203,
43,
1686,
4943,
16034,
3084,
62,
2154,
32417,
33411,
366,
41339,
1,
796,
705,
1065,
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
] | [
5376,
262,
2160,
286,
24590,
329,
1105,
50000,
46506,
35683,
7203,
43,
1686,
4943,
16034,
3084,
62,
2154,
32417,
33411,
366,
41339,
1,
796,
705,
1065,
6
] |
What is the highest NGC number that has a Declination ( J2000 ) of 04 58 and a Apparent magnitude larger than 7.3? | SELECT MAX(ngc_number) FROM table_name_5 WHERE declination___j2000__ = "°04′58″" AND apparent_magnitude > 7.3 | [
2061,
318,
262,
4511,
399,
15916,
1271,
326,
468,
257,
16691,
1883,
357,
449,
11024,
1267,
286,
8702,
7618,
290,
257,
2034,
1580,
14735,
4025,
621,
767,
13,
18,
30,
46506,
25882,
7,
782,
66,
62,
17618,
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,
1,
1,
1,
1,
1,
1,
1,
1... | [
2061,
318,
262,
4511,
399,
15916,
1271,
326,
468,
257,
16691,
1883,
357,
449,
11024,
1267,
286,
8702,
7618,
290,
257,
2034,
1580,
14735,
4025,
621,
767,
13,
18,
30,
46506,
25882,
7,
782,
66,
62,
17618,
8,
16034,
3084,
62,
3672,
62,
... |
Name the high assists for january 15 | SELECT high_assists FROM table_22893781_6 WHERE date = "January 15" | [
5376,
262,
1029,
13648,
329,
42897,
2838,
1315,
46506,
1029,
62,
562,
1023,
16034,
3084,
62,
1828,
4531,
2718,
6659,
62,
21,
33411,
3128,
796,
366,
21339,
1315,
1
] | [
1,
1,
1,
1,
1,
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,
1029,
13648,
329,
42897,
2838,
1315,
46506,
1029,
62,
562,
1023,
16034,
3084,
62,
1828,
4531,
2718,
6659,
62,
21,
33411,
3128,
796,
366,
21339,
1315,
1
] |
what was the first test that was given to patient 6374 since 34 months ago? | SELECT d_labitems.label FROM d_labitems WHERE d_labitems.itemid IN (SELECT labevents.itemid FROM labevents WHERE labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 6374) AND DATETIME(labevents.charttime) >= DATETIME(CURRENT_TIME(), '-34 month') ORDER BY labevents.charttime LIM... | [
10919,
373,
262,
717,
1332,
326,
373,
1813,
284,
5827,
718,
31020,
1201,
4974,
1933,
2084,
30,
46506,
288,
62,
23912,
23814,
13,
18242,
16034,
288,
62,
23912,
23814,
33411,
288,
62,
23912,
23814,
13,
9186,
312,
3268,
357,
46506,
2248,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
1332,
326,
373,
1813,
284,
5827,
718,
31020,
1201,
4974,
1933,
2084,
30,
46506,
288,
62,
23912,
23814,
13,
18242,
16034,
288,
62,
23912,
23814,
33411,
288,
62,
23912,
23814,
13,
9186,
312,
3268,
357,
46506,
2248,
... |
What was the score of the game against the San Diego Chargers? | SELECT SUM(week) FROM table_name_50 WHERE opponent = "san diego chargers" | [
2061,
373,
262,
4776,
286,
262,
983,
1028,
262,
2986,
9500,
23559,
30,
46506,
35683,
7,
10464,
8,
16034,
3084,
62,
3672,
62,
1120,
33411,
6125,
796,
366,
12807,
4656,
2188,
2609,
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
] | [
2061,
373,
262,
4776,
286,
262,
983,
1028,
262,
2986,
9500,
23559,
30,
46506,
35683,
7,
10464,
8,
16034,
3084,
62,
3672,
62,
1120,
33411,
6125,
796,
366,
12807,
4656,
2188,
2609,
364,
1
] |
you count the number of times patient 5252 has taken a br milk fs ng since 03/16/2104. | SELECT COUNT(*) FROM inputevents_cv WHERE inputevents_cv.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 5252)) AND inputevents_cv.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'br milk fs ng... | [
5832,
954,
262,
1271,
286,
1661,
5827,
642,
22800,
468,
2077,
257,
865,
7545,
43458,
23370,
1201,
7643,
14,
1433,
14,
17,
13464,
13,
46506,
327,
28270,
7,
28104,
16034,
287,
79,
1133,
85,
658,
62,
33967,
33411,
287,
79,
1133,
85,
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,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
5832,
954,
262,
1271,
286,
1661,
5827,
642,
22800,
468,
2077,
257,
865,
7545,
43458,
23370,
1201,
7643,
14,
1433,
14,
17,
13464,
13,
46506,
327,
28270,
7,
28104,
16034,
287,
79,
1133,
85,
658,
62,
33967,
33411,
287,
79,
1133,
85,
65... |
Name the Nationality / Opponent of rosario? | SELECT competition FROM table_name_64 WHERE nationality___opponent = "rosario" | [
5376,
262,
2351,
414,
1220,
9385,
3471,
286,
686,
82,
4982,
30,
46506,
5449,
16034,
3084,
62,
3672,
62,
2414,
33411,
29835,
17569,
10365,
3471,
796,
366,
4951,
4982,
1
] | [
1,
1,
1,
1,
1,
1,
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,
2351,
414,
1220,
9385,
3471,
286,
686,
82,
4982,
30,
46506,
5449,
16034,
3084,
62,
3672,
62,
2414,
33411,
29835,
17569,
10365,
3471,
796,
366,
4951,
4982,
1
] |
What is the name of the writer for the episode with an Original air date of october 9, 2000? | SELECT "Written by" FROM table_41605 WHERE "Original air date" = 'october 9, 2000' | [
2061,
318,
262,
1438,
286,
262,
6260,
329,
262,
4471,
351,
281,
13745,
1633,
3128,
286,
19318,
2023,
860,
11,
4751,
30,
46506,
366,
25354,
416,
1,
16034,
3084,
62,
35218,
2713,
33411,
366,
20556,
1633,
3128,
1,
796,
705,
38441,
2023,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
1438,
286,
262,
6260,
329,
262,
4471,
351,
281,
13745,
1633,
3128,
286,
19318,
2023,
860,
11,
4751,
30,
46506,
366,
25354,
416,
1,
16034,
3084,
62,
35218,
2713,
33411,
366,
20556,
1633,
3128,
1,
796,
705,
38441,
2023,
... |
In what city is the United Spirit Arena located? | SELECT "City" FROM table_32897 WHERE "Venue" = 'united spirit arena' | [
818,
644,
1748,
318,
262,
1578,
7710,
10937,
5140,
30,
46506,
366,
14941,
1,
16034,
3084,
62,
34256,
5607,
33411,
366,
37522,
518,
1,
796,
705,
41187,
4437,
13478,
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
] | [
818,
644,
1748,
318,
262,
1578,
7710,
10937,
5140,
30,
46506,
366,
14941,
1,
16034,
3084,
62,
34256,
5607,
33411,
366,
37522,
518,
1,
796,
705,
41187,
4437,
13478,
6
] |
What was the score at CN Centre on April 5, 2008? | SELECT score FROM table_name_99 WHERE stadium = "cn centre" AND date = "april 5, 2008" | [
2061,
373,
262,
4776,
379,
31171,
9072,
319,
3035,
642,
11,
3648,
30,
46506,
4776,
16034,
3084,
62,
3672,
62,
2079,
33411,
10308,
796,
366,
31522,
7372,
1,
5357,
3128,
796,
366,
499,
22379,
642,
11,
3648,
1
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
4776,
379,
31171,
9072,
319,
3035,
642,
11,
3648,
30,
46506,
4776,
16034,
3084,
62,
3672,
62,
2079,
33411,
10308,
796,
366,
31522,
7372,
1,
5357,
3128,
796,
366,
499,
22379,
642,
11,
3648,
1
] |
What was the away team score at Corio Oval? | SELECT away_team AS score FROM table_name_42 WHERE venue = "corio oval" | [
2061,
373,
262,
1497,
1074,
4776,
379,
2744,
952,
25165,
30,
46506,
1497,
62,
15097,
7054,
4776,
16034,
3084,
62,
3672,
62,
3682,
33411,
14359,
796,
366,
10215,
952,
41186,
1
] | [
1,
1,
1,
1,
1,
1,
1,
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,
1497,
1074,
4776,
379,
2744,
952,
25165,
30,
46506,
1497,
62,
15097,
7054,
4776,
16034,
3084,
62,
3672,
62,
3682,
33411,
14359,
796,
366,
10215,
952,
41186,
1
] |
What is the Format for the alfa records Label, and a Catalog of alca-9016? | SELECT format FROM table_name_81 WHERE label = "alfa records" AND catalog = "alca-9016" | [
2061,
318,
262,
18980,
329,
262,
435,
13331,
4406,
36052,
11,
290,
257,
44515,
286,
435,
6888,
12,
24,
27037,
30,
46506,
5794,
16034,
3084,
62,
3672,
62,
6659,
33411,
6167,
796,
366,
1604,
64,
4406,
1,
5357,
18388,
796,
366,
282,
68... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
18980,
329,
262,
435,
13331,
4406,
36052,
11,
290,
257,
44515,
286,
435,
6888,
12,
24,
27037,
30,
46506,
5794,
16034,
3084,
62,
3672,
62,
6659,
33411,
6167,
796,
366,
1604,
64,
4406,
1,
5357,
18388,
796,
366,
282,
68... |
Which Losses has an Against of 1101, and a Byes smaller than 0? | SELECT COUNT(losses) FROM table_name_52 WHERE against = 1101 AND byes < 0 | [
13828,
22014,
274,
468,
281,
12914,
286,
1367,
486,
11,
290,
257,
2750,
274,
4833,
621,
657,
30,
46506,
327,
28270,
7,
22462,
274,
8,
16034,
3084,
62,
3672,
62,
4309,
33411,
1028,
796,
1367,
486,
5357,
416,
274,
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,
1,
1
] | [
13828,
22014,
274,
468,
281,
12914,
286,
1367,
486,
11,
290,
257,
2750,
274,
4833,
621,
657,
30,
46506,
327,
28270,
7,
22462,
274,
8,
16034,
3084,
62,
3672,
62,
4309,
33411,
1028,
796,
1367,
486,
5357,
416,
274,
1279,
657
] |
What is the name of the driver of the vehicle constructed by Bugatti in Anfa? | SELECT "Driver" FROM table_57937 WHERE "Constructor" = 'bugatti' AND "Location" = 'anfa' | [
2061,
318,
262,
1438,
286,
262,
4639,
286,
262,
4038,
12006,
416,
15217,
34891,
287,
1052,
13331,
30,
46506,
366,
32103,
1,
16034,
3084,
62,
41734,
2718,
33411,
366,
42316,
273,
1,
796,
705,
25456,
34891,
6,
5357,
366,
14749,
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
] | [
2061,
318,
262,
1438,
286,
262,
4639,
286,
262,
4038,
12006,
416,
15217,
34891,
287,
1052,
13331,
30,
46506,
366,
32103,
1,
16034,
3084,
62,
41734,
2718,
33411,
366,
42316,
273,
1,
796,
705,
25456,
34891,
6,
5357,
366,
14749,
1,
796,
... |
papers that mention autoencoder | SELECT DISTINCT paper.paperid FROM keyphrase, paper, paperkeyphrase WHERE keyphrase.keyphrasename = 'autoencoder' AND paperkeyphrase.keyphraseid = keyphrase.keyphraseid AND paper.paperid = paperkeyphrase.paperid | [
40491,
326,
3068,
1960,
6571,
66,
12342,
46506,
360,
8808,
1268,
4177,
3348,
13,
20189,
312,
16034,
1994,
34675,
11,
3348,
11,
3348,
2539,
34675,
33411,
1994,
34675,
13,
2539,
746,
8847,
12453,
796,
705,
2306,
6571,
66,
12342,
6,
5357,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
40491,
326,
3068,
1960,
6571,
66,
12342,
46506,
360,
8808,
1268,
4177,
3348,
13,
20189,
312,
16034,
1994,
34675,
11,
3348,
11,
3348,
2539,
34675,
33411,
1994,
34675,
13,
2539,
746,
8847,
12453,
796,
705,
2306,
6571,
66,
12342,
6,
5357,
... |
How much Enrollment has a School of shakamak? | SELECT COUNT(enrollment) FROM table_name_56 WHERE school = "shakamak" | [
2437,
881,
2039,
48108,
468,
257,
3961,
286,
427,
461,
321,
461,
30,
46506,
327,
28270,
7,
268,
48108,
8,
16034,
3084,
62,
3672,
62,
3980,
33411,
1524,
796,
366,
1477,
461,
321,
461,
1
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
881,
2039,
48108,
468,
257,
3961,
286,
427,
461,
321,
461,
30,
46506,
327,
28270,
7,
268,
48108,
8,
16034,
3084,
62,
3672,
62,
3980,
33411,
1524,
796,
366,
1477,
461,
321,
461,
1
] |
What are the distinct customers who have orders with status 'On Road'? Give me the customer details? | SELECT DISTINCT T1.customer_details FROM customers AS T1 JOIN orders AS T2 ON T1.customer_id = T2.customer_id WHERE T2.order_status = "On Road" | [
2061,
389,
262,
7310,
4297,
508,
423,
6266,
351,
3722,
705,
2202,
5567,
30960,
13786,
502,
262,
6491,
3307,
30,
46506,
360,
8808,
1268,
4177,
309,
16,
13,
23144,
263,
62,
36604,
16034,
4297,
7054,
309,
16,
32357,
1268,
6266,
7054,
309... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
7310,
4297,
508,
423,
6266,
351,
3722,
705,
2202,
5567,
30960,
13786,
502,
262,
6491,
3307,
30,
46506,
360,
8808,
1268,
4177,
309,
16,
13,
23144,
263,
62,
36604,
16034,
4297,
7054,
309,
16,
32357,
1268,
6266,
7054,
309... |
Which date has an Opponent of angels, and a Loss of sanderson (0 1)? | SELECT "Date" FROM table_69566 WHERE "Opponent" = 'angels' AND "Loss" = 'sanderson (0–1)' | [
13828,
3128,
468,
281,
9385,
3471,
286,
21981,
11,
290,
257,
22014,
286,
6450,
882,
357,
15,
352,
19427,
46506,
366,
10430,
1,
16034,
3084,
62,
37381,
2791,
33411,
366,
27524,
3471,
1,
796,
705,
648,
1424,
6,
5357,
366,
43,
793,
1,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
3128,
468,
281,
9385,
3471,
286,
21981,
11,
290,
257,
22014,
286,
6450,
882,
357,
15,
352,
19427,
46506,
366,
10430,
1,
16034,
3084,
62,
37381,
2791,
33411,
366,
27524,
3471,
1,
796,
705,
648,
1424,
6,
5357,
366,
43,
793,
1,
... |
Which Result has a Competition of 2014 fifa world cup qualification, and a Score of 2 0? | SELECT "Result" FROM table_10048 WHERE "Competition" = '2014 fifa world cup qualification' AND "Score" = '2 – 0' | [
13828,
25414,
468,
257,
27348,
286,
1946,
5515,
64,
995,
6508,
28587,
11,
290,
257,
15178,
286,
362,
657,
30,
46506,
366,
23004,
1,
16034,
3084,
62,
3064,
2780,
33411,
366,
7293,
15620,
1,
796,
705,
4967,
5515,
64,
995,
6508,
28587,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
25414,
468,
257,
27348,
286,
1946,
5515,
64,
995,
6508,
28587,
11,
290,
257,
15178,
286,
362,
657,
30,
46506,
366,
23004,
1,
16034,
3084,
62,
3064,
2780,
33411,
366,
7293,
15620,
1,
796,
705,
4967,
5515,
64,
995,
6508,
28587,
... |
Users by Popular Question ratio. (only users with at least 10 Popular Questions) | SELECT num.TagName AS Tag, ROW_NUMBER() OVER (ORDER BY rate.Rate DESC) AS SeptemberRank, ROW_NUMBER() OVER (ORDER BY num.Num DESC) AS TotalRank, rate.Rate AS QuestionsInMay, num.Num AS QuestionsTotal FROM (SELECT COUNT(PostId) AS Rate, TagName FROM Tags, PostTags, Posts WHERE Tags.Id = PostTags.TagId AND Posts.Id = Pos... | [
14490,
416,
22623,
18233,
8064,
13,
357,
8807,
2985,
351,
379,
1551,
838,
22623,
20396,
8,
46506,
997,
13,
24835,
5376,
7054,
17467,
11,
371,
3913,
62,
41359,
13246,
3419,
28729,
357,
12532,
1137,
11050,
2494,
13,
32184,
22196,
34,
8,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
14490,
416,
22623,
18233,
8064,
13,
357,
8807,
2985,
351,
379,
1551,
838,
22623,
20396,
8,
46506,
997,
13,
24835,
5376,
7054,
17467,
11,
371,
3913,
62,
41359,
13246,
3419,
28729,
357,
12532,
1137,
11050,
2494,
13,
32184,
22196,
34,
8,
... |
Show me the trend about the maximum price of wines for each year, and display by the x axis in descending. | SELECT Year, MAX(Price) FROM wine GROUP BY Year ORDER BY Year DESC | [
15307,
502,
262,
5182,
546,
262,
5415,
2756,
286,
30680,
329,
1123,
614,
11,
290,
3359,
416,
262,
2124,
16488,
287,
31491,
13,
46506,
6280,
11,
25882,
7,
18124,
8,
16034,
8237,
44441,
11050,
6280,
38678,
11050,
6280,
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
] | [
15307,
502,
262,
5182,
546,
262,
5415,
2756,
286,
30680,
329,
1123,
614,
11,
290,
3359,
416,
262,
2124,
16488,
287,
31491,
13,
46506,
6280,
11,
25882,
7,
18124,
8,
16034,
8237,
44441,
11050,
6280,
38678,
11050,
6280,
22196,
34
] |
Which films participated in the 30th Hawaii International Film Festival? | SELECT participants_recipients FROM table_29644931_1 WHERE film_festival = "30th Hawaii International film_festival" | [
13828,
7328,
14888,
287,
262,
1542,
400,
13708,
4037,
13741,
11117,
30,
46506,
6809,
62,
8344,
541,
2334,
16034,
3084,
62,
1959,
2414,
2920,
3132,
62,
16,
33411,
2646,
62,
69,
6743,
796,
366,
1270,
400,
13708,
4037,
2646,
62,
69,
6743... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
7328,
14888,
287,
262,
1542,
400,
13708,
4037,
13741,
11117,
30,
46506,
6809,
62,
8344,
541,
2334,
16034,
3084,
62,
1959,
2414,
2920,
3132,
62,
16,
33411,
2646,
62,
69,
6743,
796,
366,
1270,
400,
13708,
4037,
2646,
62,
69,
6743... |
What was the score of the game when Blackpool was away? | SELECT score FROM table_name_77 WHERE away_team = "blackpool" | [
2061,
373,
262,
4776,
286,
262,
983,
618,
2619,
7742,
373,
1497,
30,
46506,
4776,
16034,
3084,
62,
3672,
62,
3324,
33411,
1497,
62,
15097,
796,
366,
13424,
7742,
1
] | [
1,
1,
1,
1,
1,
1,
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,
4776,
286,
262,
983,
618,
2619,
7742,
373,
1497,
30,
46506,
4776,
16034,
3084,
62,
3672,
62,
3324,
33411,
1497,
62,
15097,
796,
366,
13424,
7742,
1
] |
What is the date of the 21:12 Set 2? | SELECT "Date" FROM table_59005 WHERE "Set 2" = '21:12' | [
2061,
318,
262,
3128,
286,
262,
2310,
25,
1065,
5345,
362,
30,
46506,
366,
10430,
1,
16034,
3084,
62,
3270,
22544,
33411,
366,
7248,
362,
1,
796,
705,
2481,
25,
1065,
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,
3128,
286,
262,
2310,
25,
1065,
5345,
362,
30,
46506,
366,
10430,
1,
16034,
3084,
62,
3270,
22544,
33411,
366,
7248,
362,
1,
796,
705,
2481,
25,
1065,
6
] |
Top users from Bia ystok, Poland. | SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS Pos, Id AS "user_link", Reputation FROM Users WHERE LOWER(Location) LIKE '%bia_ystok%' ORDER BY Reputation DESC | [
9126,
2985,
422,
347,
544,
331,
301,
482,
11,
12873,
13,
46506,
371,
3913,
62,
41359,
13246,
3419,
28729,
357,
12532,
1137,
11050,
1432,
7094,
22196,
34,
8,
7054,
18574,
11,
5121,
7054,
366,
7220,
62,
8726,
1600,
1432,
7094,
16034,
18... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
2985,
422,
347,
544,
331,
301,
482,
11,
12873,
13,
46506,
371,
3913,
62,
41359,
13246,
3419,
28729,
357,
12532,
1137,
11050,
1432,
7094,
22196,
34,
8,
7054,
18574,
11,
5121,
7054,
366,
7220,
62,
8726,
1600,
1432,
7094,
16034,
18... |
Do you know what courses are offered this semester ? | SELECT DISTINCT course.department, course.name, course.number FROM course, course_offering, semester WHERE course.course_id = course_offering.course_id AND course.department = 'EECS' AND semester.semester = 'WN' AND semester.semester_id = course_offering.semester AND semester.year = 2016 ORDER BY course.department | [
5211,
345,
760,
644,
10902,
389,
4438,
428,
24878,
5633,
46506,
360,
8808,
1268,
4177,
1781,
13,
10378,
1823,
11,
1781,
13,
3672,
11,
1781,
13,
17618,
16034,
1781,
11,
1781,
62,
2364,
1586,
11,
24878,
33411,
1781,
13,
17319,
62,
312,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
5211,
345,
760,
644,
10902,
389,
4438,
428,
24878,
5633,
46506,
360,
8808,
1268,
4177,
1781,
13,
10378,
1823,
11,
1781,
13,
3672,
11,
1781,
13,
17618,
16034,
1781,
11,
1781,
62,
2364,
1586,
11,
24878,
33411,
1781,
13,
17319,
62,
312,
... |
What in Xenia's Diameter in km, with a latitude of 14 and a longitude of 249.4? | SELECT COUNT(diameter__km_) FROM table_name_71 WHERE latitude < 14 AND name = "xenia" AND longitude > 249.4 | [
2061,
287,
21173,
544,
338,
360,
13173,
287,
10571,
11,
351,
257,
32477,
286,
1478,
290,
257,
890,
3984,
286,
34620,
13,
19,
30,
46506,
327,
28270,
7,
67,
13173,
834,
13276,
62,
8,
16034,
3084,
62,
3672,
62,
4869,
33411,
32477,
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,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1
] | [
2061,
287,
21173,
544,
338,
360,
13173,
287,
10571,
11,
351,
257,
32477,
286,
1478,
290,
257,
890,
3984,
286,
34620,
13,
19,
30,
46506,
327,
28270,
7,
67,
13173,
834,
13276,
62,
8,
16034,
3084,
62,
3672,
62,
4869,
33411,
32477,
1279... |
Tell me the name with decile of 6 and roll of 93 | SELECT name FROM table_name_63 WHERE decile = "6" AND roll = 93 | [
24446,
502,
262,
1438,
351,
875,
576,
286,
718,
290,
4836,
286,
10261,
46506,
1438,
16034,
3084,
62,
3672,
62,
5066,
33411,
875,
576,
796,
366,
21,
1,
5357,
4836,
796,
10261
] | [
1,
1,
1,
1,
1,
1,
1,
1,
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,
1438,
351,
875,
576,
286,
718,
290,
4836,
286,
10261,
46506,
1438,
16034,
3084,
62,
3672,
62,
5066,
33411,
875,
576,
796,
366,
21,
1,
5357,
4836,
796,
10261
] |
What component has an integrated of one? | SELECT "Component" FROM table_51970 WHERE "Integrated" = 'one' | [
2061,
7515,
468,
281,
11521,
286,
530,
30,
46506,
366,
21950,
1,
16034,
3084,
62,
20,
30986,
33411,
366,
34500,
4111,
1,
796,
705,
505,
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
] | [
2061,
7515,
468,
281,
11521,
286,
530,
30,
46506,
366,
21950,
1,
16034,
3084,
62,
20,
30986,
33411,
366,
34500,
4111,
1,
796,
705,
505,
6
] |
is there any microbiological test result for patient 1918's blood culture until 1 year ago? | SELECT COUNT(*) > 0 FROM microbiologyevents WHERE microbiologyevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 1918) AND microbiologyevents.spec_type_desc = 'blood culture' AND DATETIME(microbiologyevents.charttime) <= DATETIME(CURRENT_TIME(), '-1 year') | [
271,
612,
597,
24559,
2770,
1332,
1255,
329,
5827,
25859,
338,
2910,
3968,
1566,
352,
614,
2084,
30,
46506,
327,
28270,
7,
28104,
1875,
657,
16034,
24559,
1435,
31534,
33411,
24559,
1435,
31534,
13,
18108,
76,
62,
312,
3268,
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... | [
271,
612,
597,
24559,
2770,
1332,
1255,
329,
5827,
25859,
338,
2910,
3968,
1566,
352,
614,
2084,
30,
46506,
327,
28270,
7,
28104,
1875,
657,
16034,
24559,
1435,
31534,
33411,
24559,
1435,
31534,
13,
18108,
76,
62,
312,
3268,
357,
46506,... |
Average questions per 1000 that are unanswered. | SELECT 1000 * (SELECT COUNT(*) FROM Posts WHERE PostTypeId = 1 AND AnswerCount = 0) / (SELECT COUNT(*) FROM Posts WHERE PostTypeId = 1) | [
26287,
2683,
583,
8576,
326,
389,
34001,
13,
46506,
8576,
1635,
357,
46506,
327,
28270,
7,
28104,
16034,
12043,
33411,
2947,
6030,
7390,
796,
352,
5357,
23998,
12332,
796,
657,
8,
1220,
357,
46506,
327,
28270,
7,
28104,
16034,
12043,
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
] | [
26287,
2683,
583,
8576,
326,
389,
34001,
13,
46506,
8576,
1635,
357,
46506,
327,
28270,
7,
28104,
16034,
12043,
33411,
2947,
6030,
7390,
796,
352,
5357,
23998,
12332,
796,
657,
8,
1220,
357,
46506,
327,
28270,
7,
28104,
16034,
12043,
33... |
find the number of hispanic/latino-puerto rican patients whose drug code is tacr1. | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.ethnicity = "HISPANIC/LATINO - PUERTO RICAN" AND prescriptions.formulary_drug_cd = "TACR1" | [
19796,
262,
1271,
286,
465,
35843,
14,
15460,
2879,
12,
19944,
13806,
374,
7490,
3871,
3025,
2563,
2438,
318,
26142,
81,
16,
13,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
16728,
13,
32796,
62,
312,
8,
16034,
16728,
3268,
21479,
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... | [
19796,
262,
1271,
286,
465,
35843,
14,
15460,
2879,
12,
19944,
13806,
374,
7490,
3871,
3025,
2563,
2438,
318,
26142,
81,
16,
13,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
16728,
13,
32796,
62,
312,
8,
16034,
16728,
3268,
21479,
3235... |
Show all sport name and the number of students Show bar chart, could you sort by the Y-axis in ascending please? | SELECT SportName, COUNT(*) FROM SportsInfo GROUP BY SportName ORDER BY COUNT(*) | [
15307,
477,
6332,
1438,
290,
262,
1271,
286,
2444,
5438,
2318,
8262,
11,
714,
345,
3297,
416,
262,
575,
12,
22704,
287,
41988,
3387,
30,
46506,
12771,
5376,
11,
327,
28270,
7,
28104,
16034,
7092,
12360,
44441,
11050,
12771,
5376,
38678,... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
6332,
1438,
290,
262,
1271,
286,
2444,
5438,
2318,
8262,
11,
714,
345,
3297,
416,
262,
575,
12,
22704,
287,
41988,
3387,
30,
46506,
12771,
5376,
11,
327,
28270,
7,
28104,
16034,
7092,
12360,
44441,
11050,
12771,
5376,
38678,... |
How many picks were there for the Bentley team? | SELECT COUNT(pick) FROM table_name_31 WHERE school_club_team = "bentley" | [
2437,
867,
11103,
547,
612,
329,
262,
38881,
1074,
30,
46506,
327,
28270,
7,
27729,
8,
16034,
3084,
62,
3672,
62,
3132,
33411,
1524,
62,
18664,
62,
15097,
796,
366,
46119,
1636,
1
] | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
11103,
547,
612,
329,
262,
38881,
1074,
30,
46506,
327,
28270,
7,
27729,
8,
16034,
3084,
62,
3672,
62,
3132,
33411,
1524,
62,
18664,
62,
15097,
796,
366,
46119,
1636,
1
] |
Name the score for 21 may 2011 | SELECT "Score" FROM table_6499 WHERE "Date" = '21 may 2011' | [
5376,
262,
4776,
329,
2310,
743,
2813,
46506,
366,
26595,
1,
16034,
3084,
62,
2414,
2079,
33411,
366,
10430,
1,
796,
705,
2481,
743,
2813,
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
] | [
5376,
262,
4776,
329,
2310,
743,
2813,
46506,
366,
26595,
1,
16034,
3084,
62,
2414,
2079,
33411,
366,
10430,
1,
796,
705,
2481,
743,
2813,
6
] |
What is the To par of the Player from Argentina? | SELECT "To par" FROM table_13221 WHERE "Country" = 'argentina' | [
2061,
318,
262,
1675,
1582,
286,
262,
7853,
422,
16519,
30,
46506,
366,
2514,
1582,
1,
16034,
3084,
62,
1485,
26115,
33411,
366,
33921,
1,
796,
705,
853,
298,
1437,
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
] | [
2061,
318,
262,
1675,
1582,
286,
262,
7853,
422,
16519,
30,
46506,
366,
2514,
1582,
1,
16034,
3084,
62,
1485,
26115,
33411,
366,
33921,
1,
796,
705,
853,
298,
1437,
6
] |
what is minimum age of patients whose primary disease is gastrointestinal bleed and days of hospital stay is 17? | SELECT MIN(demographic.age) FROM demographic WHERE demographic.diagnosis = "GASTROINTESTINAL BLEED" AND demographic.days_stay = "17" | [
10919,
318,
5288,
2479,
286,
3871,
3025,
4165,
4369,
318,
40887,
30182,
290,
1528,
286,
4436,
2652,
318,
1596,
30,
46506,
20625,
7,
9536,
6826,
13,
496,
8,
16034,
16728,
33411,
16728,
13,
47356,
5958,
796,
366,
38,
1921,
5446,
46,
123... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
5288,
2479,
286,
3871,
3025,
4165,
4369,
318,
40887,
30182,
290,
1528,
286,
4436,
2652,
318,
1596,
30,
46506,
20625,
7,
9536,
6826,
13,
496,
8,
16034,
16728,
33411,
16728,
13,
47356,
5958,
796,
366,
38,
1921,
5446,
46,
123... |
Show me a bar chart for what are the first names and support rep ids for employees serving 10 or more customers?, and sort from low to high by the FirstName. | SELECT T1.FirstName, T1.SupportRepId FROM Customer AS T1 JOIN Employee AS T2 ON T1.SupportRepId = T2.EmployeeId ORDER BY T1.FirstName | [
15307,
502,
257,
2318,
8262,
329,
644,
389,
262,
717,
3891,
290,
1104,
1128,
220,
2340,
329,
4409,
7351,
838,
393,
517,
4297,
21747,
290,
3297,
422,
1877,
284,
1029,
416,
262,
3274,
5376,
13,
46506,
309,
16,
13,
5962,
5376,
11,
309,... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
257,
2318,
8262,
329,
644,
389,
262,
717,
3891,
290,
1104,
1128,
220,
2340,
329,
4409,
7351,
838,
393,
517,
4297,
21747,
290,
3297,
422,
1877,
284,
1029,
416,
262,
3274,
5376,
13,
46506,
309,
16,
13,
5962,
5376,
11,
309,... |
What is the Year of the person who is 6'1', and weighs more than 165? | SELECT "Year" FROM table_40181 WHERE "Height" = '6''1' AND "Weight" > '165' | [
2061,
318,
262,
6280,
286,
262,
1048,
508,
318,
718,
6,
16,
3256,
290,
24034,
517,
621,
21409,
30,
46506,
366,
17688,
1,
16034,
3084,
62,
21844,
6659,
33411,
366,
23106,
1,
796,
705,
21,
7061,
16,
6,
5357,
366,
25844,
1,
1875,
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
] | [
2061,
318,
262,
6280,
286,
262,
1048,
508,
318,
718,
6,
16,
3256,
290,
24034,
517,
621,
21409,
30,
46506,
366,
17688,
1,
16034,
3084,
62,
21844,
6659,
33411,
366,
23106,
1,
796,
705,
21,
7061,
16,
6,
5357,
366,
25844,
1,
1875,
705... |
How many distinct colleges are associated with players from the team with name 'Columbus Crew'. | SELECT COUNT(DISTINCT T1.college) FROM match_season AS T1 JOIN team AS T2 ON T1.team = T2.team_id WHERE T2.name = "Columbus Crew" | [
2437,
867,
7310,
15273,
389,
3917,
351,
1938,
422,
262,
1074,
351,
1438,
705,
36063,
385,
17652,
4458,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
309,
16,
13,
44107,
8,
16034,
2872,
62,
6230,
7054,
309,
16,
32357,
1268,
1074,
7054,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
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,
7310,
15273,
389,
3917,
351,
1938,
422,
262,
1074,
351,
1438,
705,
36063,
385,
17652,
4458,
46506,
327,
28270,
7,
35,
8808,
1268,
4177,
309,
16,
13,
44107,
8,
16034,
2872,
62,
6230,
7054,
309,
16,
32357,
1268,
1074,
7054,
... |
Which date was the show aired on the RTL Televizija network? | SELECT "Date aired" FROM table_8393 WHERE "Network" = 'rtl televizija' | [
13828,
3128,
373,
262,
905,
18530,
319,
262,
11923,
43,
1665,
2768,
528,
34655,
3127,
30,
46506,
366,
10430,
18530,
1,
16034,
3084,
62,
23,
26007,
33411,
366,
26245,
1,
796,
705,
17034,
75,
22884,
528,
34655,
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
] | [
13828,
3128,
373,
262,
905,
18530,
319,
262,
11923,
43,
1665,
2768,
528,
34655,
3127,
30,
46506,
366,
10430,
18530,
1,
16034,
3084,
62,
23,
26007,
33411,
366,
26245,
1,
796,
705,
17034,
75,
22884,
528,
34655,
6
] |
how many airport with rank being 4 | SELECT COUNT("Airport") FROM table_19026 WHERE "Rank" = '4' | [
4919,
867,
9003,
351,
4279,
852,
604,
46506,
327,
28270,
7203,
16170,
634,
4943,
16034,
3084,
62,
19782,
2075,
33411,
366,
27520,
1,
796,
705,
19,
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
] | [
4919,
867,
9003,
351,
4279,
852,
604,
46506,
327,
28270,
7203,
16170,
634,
4943,
16034,
3084,
62,
19782,
2075,
33411,
366,
27520,
1,
796,
705,
19,
6
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.