NATURAL_LANG stringlengths 12 244 | SQL stringlengths 18 336 | SCHEMA stringlengths 27 355 | input_ids list | attention_mask list | labels list |
|---|---|---|---|---|---|
What is the Venue with a Result that is lost? | SELECT venue FROM table_name_40 WHERE result = "lost" | CREATE TABLE table_name_40 (venue VARCHAR, result VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2445,
41,
15098,
584,
4280,
28027,
6,
741,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
29940,
28,
3,
9,
3,
20119,
24,
19,
1513,
58,
1,
0,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
5669,
21680,
953,
834,
4350,
834,
2445,
549,
17444,
427,
741,
3274,
96,
2298,
17,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-... |
What is the highest administrative panel with a cultural and educational panel of 2 plus an industrial and commercial panel larger than 4? | SELECT MAX(administrative_panel) FROM table_name_14 WHERE cultural_and_educational_panel = 2 AND industrial_and_commercial_panel > 4 | CREATE TABLE table_name_14 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2534,
41,
9571,
1528,
834,
28726,
3,
21342,
17966,
6,
2779,
834,
232,
834,
29117,
138,
834,
28726,
584,
4280,
28027,
6,
2913,
834,
232,
834,
27260,
834,
28726,
584... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
3,
23143,
14196,
4800,
4,
599,
9571,
1528,
834,
28726,
61,
21680,
953,
834,
4350,
834,
2534,
549,
17444,
427,
2779,
834,
232,
834,
29117,
138,
834,
28726,
3274,
204,
3430,
2913,
834,
232,
834,
27260,
834,
28726,
2490,
314,
1,
-100,
... |
What is the total for National University of Ireland with an industrial and commercial panel less than 1, and the cultural and educational panel bigger than 0? | SELECT COUNT(national_university_of_ireland) FROM table_name_17 WHERE industrial_and_commercial_panel < 1 AND cultural_and_educational_panel > 0 | CREATE TABLE table_name_17 (national_university_of_ireland VARCHAR, industrial_and_commercial_panel VARCHAR, cultural_and_educational_panel VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2517,
41,
16557,
834,
7846,
485,
834,
858,
834,
2060,
40,
232,
584,
4280,
28027,
6,
2913,
834,
232,
834,
27260,
834,
28726,
584,
4280,
28027,
6,
2779,
834,
232,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
3,
23143,
14196,
2847,
17161,
599,
16557,
834,
7846,
485,
834,
858,
834,
2060,
40,
232,
61,
21680,
953,
834,
4350,
834,
2517,
549,
17444,
427,
2913,
834,
232,
834,
27260,
834,
28726,
3,
2,
209,
3430,
2779,
834,
232,
834,
29117,
138,... |
What is the administrative panel average when the cultural and educational panel is greater than 1 and the industrial and commercial panel less than 4? | SELECT AVG(administrative_panel) FROM table_name_77 WHERE cultural_and_educational_panel > 1 AND industrial_and_commercial_panel < 4 | CREATE TABLE table_name_77 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4013,
41,
9571,
1528,
834,
28726,
3,
21342,
17966,
6,
2779,
834,
232,
834,
29117,
138,
834,
28726,
584,
4280,
28027,
6,
2913,
834,
232,
834,
27260,
834,
28726,
584... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
3,
23143,
14196,
71,
17217,
599,
9571,
1528,
834,
28726,
61,
21680,
953,
834,
4350,
834,
4013,
549,
17444,
427,
2779,
834,
232,
834,
29117,
138,
834,
28726,
2490,
209,
3430,
2913,
834,
232,
834,
27260,
834,
28726,
3,
2,
314,
1,
-100... |
What is the biggest administrative panel with a nominated by the Taoiseach greater than 3 and an argricultural panel of 5, plust a cultural and educational panel larger than 2? | SELECT MAX(administrative_panel) FROM table_name_37 WHERE nominated_by_the_taoiseach > 3 AND agricultural_panel = 5 AND cultural_and_educational_panel > 2 | CREATE TABLE table_name_37 (administrative_panel INTEGER, cultural_and_educational_panel VARCHAR, nominated_by_the_taoiseach VARCHAR, agricultural_panel VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4118,
41,
9571,
1528,
834,
28726,
3,
21342,
17966,
6,
2779,
834,
232,
834,
29117,
138,
834,
28726,
584,
4280,
28027,
6,
150,
1109,
920,
834,
969,
834,
532,
834,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
3,
23143,
14196,
4800,
4,
599,
9571,
1528,
834,
28726,
61,
21680,
953,
834,
4350,
834,
4118,
549,
17444,
427,
150,
1109,
920,
834,
969,
834,
532,
834,
17,
9,
32,
159,
15,
1836,
2490,
220,
3430,
10687,
834,
28726,
3274,
305,
3430,
... |
What is the smallest cultural and educational panel with a nominated by the Taoiseach less than 5 and the total greater than 19? | SELECT MIN(cultural_and_educational_panel) FROM table_name_74 WHERE nominated_by_the_taoiseach < 5 AND total > 19 | CREATE TABLE table_name_74 (cultural_and_educational_panel INTEGER, nominated_by_the_taoiseach VARCHAR, total VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4581,
41,
14700,
834,
232,
834,
29117,
138,
834,
28726,
3,
21342,
17966,
6,
150,
1109,
920,
834,
969,
834,
532,
834,
17,
9,
32,
159,
15,
1836,
584,
4280,
28027,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
3,
23143,
14196,
3,
17684,
599,
14700,
834,
232,
834,
29117,
138,
834,
28726,
61,
21680,
953,
834,
4350,
834,
4581,
549,
17444,
427,
150,
1109,
920,
834,
969,
834,
532,
834,
17,
9,
32,
159,
15,
1836,
3,
2,
305,
3430,
792,
2490,
... |
With the cultural and educational panel less than 0 what is the average industrial and commercial panel? | SELECT AVG(industrial_and_commercial_panel) FROM table_name_22 WHERE cultural_and_educational_panel < 0 | CREATE TABLE table_name_22 (industrial_and_commercial_panel INTEGER, cultural_and_educational_panel INTEGER) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2884,
41,
30083,
834,
232,
834,
27260,
834,
28726,
3,
21342,
17966,
6,
2779,
834,
232,
834,
29117,
138,
834,
28726,
3,
21342,
17966,
61,
3,
32105,
32106,
32107,
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,
0,
0... | [
3,
23143,
14196,
71,
17217,
599,
30083,
834,
232,
834,
27260,
834,
28726,
61,
21680,
953,
834,
4350,
834,
2884,
549,
17444,
427,
2779,
834,
232,
834,
29117,
138,
834,
28726,
3,
2,
3,
632,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,... |
What is the total number of silver medals for nations with 5 total medals and more than 3 gold medals? | SELECT COUNT(silver) FROM table_name_22 WHERE total = 5 AND gold > 3 | CREATE TABLE table_name_22 (silver VARCHAR, total VARCHAR, gold VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2884,
41,
7,
173,
624,
584,
4280,
28027,
6,
792,
584,
4280,
28027,
6,
2045,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
792,
381,
13,
4294,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0... | [
3,
23143,
14196,
2847,
17161,
599,
7,
173,
624,
61,
21680,
953,
834,
4350,
834,
2884,
549,
17444,
427,
792,
3274,
305,
3430,
2045,
2490,
220,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,... |
What was the label in 1969? | SELECT label FROM table_name_18 WHERE date = 1969 | CREATE TABLE table_name_18 (label VARCHAR, date VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2606,
41,
40,
10333,
584,
4280,
28027,
6,
833,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
47,
8,
3783,
16,
17185,
58,
1,
0,
0,
0,
0,
0,
0,
0,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
3783,
21680,
953,
834,
4350,
834,
2606,
549,
17444,
427,
833,
3274,
17185,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-10... |
What is the Commissioned date of the ship in NVR Page MCM02? | SELECT commissioned FROM table_name_29 WHERE nvr_page = "mcm02" | CREATE TABLE table_name_29 (commissioned VARCHAR, nvr_page VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3166,
41,
17183,
584,
4280,
28027,
6,
3,
29,
208,
52,
834,
6492,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
3527,
15,
26,
833,
13,
8,
438... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
3,
17183,
21680,
953,
834,
4350,
834,
3166,
549,
17444,
427,
3,
29,
208,
52,
834,
6492,
3274,
96,
51,
75,
51,
4305,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What is the NVR Page of the ship with a Home Port of Sasebo, Japan? | SELECT nvr_page FROM table_name_6 WHERE home_port = "sasebo, japan" | CREATE TABLE table_name_6 (nvr_page VARCHAR, home_port VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
948,
41,
29,
208,
52,
834,
6492,
584,
4280,
28027,
6,
234,
834,
1493,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
445,
13556,
5545,
13,
8,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
3,
29,
208,
52,
834,
6492,
21680,
953,
834,
4350,
834,
948,
549,
17444,
427,
234,
834,
1493,
3274,
96,
7,
9,
7,
15,
115,
32,
6,
2662,
2837,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-10... |
Which week's game was attended by 54,015 people? | SELECT COUNT(week) FROM table_name_34 WHERE attendance = 54 OFFSET 015 | CREATE TABLE table_name_34 (week VARCHAR, attendance VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3710,
41,
8041,
584,
4280,
28027,
6,
11364,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
4073,
471,
31,
7,
467,
47,
5526,
57,
10630,
6,
632,
1808,
151,
5... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
2847,
17161,
599,
8041,
61,
21680,
953,
834,
4350,
834,
3710,
549,
17444,
427,
11364,
3274,
10630,
3,
15316,
20788,
7088,
755,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,... |
What date was the game that was before week 4 and was attended by over 54,015 people ? | SELECT date FROM table_name_33 WHERE week < 4 AND attendance > 54 OFFSET 015 | CREATE TABLE table_name_33 (date VARCHAR, week VARCHAR, attendance VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4201,
41,
5522,
584,
4280,
28027,
6,
471,
584,
4280,
28027,
6,
11364,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
833,
47,
8,
467,
24,
47,
274,
471... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
833,
21680,
953,
834,
4350,
834,
4201,
549,
17444,
427,
471,
3,
2,
314,
3430,
11364,
2490,
10630,
3,
15316,
20788,
7088,
755,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
In what venues was the match with a final result of Eng by 4 wkts? | SELECT venue FROM table_name_19 WHERE result = "eng by 4 wkts" | CREATE TABLE table_name_19 (venue VARCHAR, result VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2294,
41,
15098,
584,
4280,
28027,
6,
741,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
86,
125,
11778,
47,
8,
1588,
28,
3,
9,
804,
741,
13,
19650,
57,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
5669,
21680,
953,
834,
4350,
834,
2294,
549,
17444,
427,
741,
3274,
96,
4606,
57,
314,
3,
210,
157,
17,
7,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
What is the running time of the transmission on bbc four channels on 23 March 2008? | SELECT Running AS time FROM table_name_46 WHERE channel = "bbc four" AND date = "23 march 2008" | CREATE TABLE table_name_46 (Running VARCHAR, channel VARCHAR, date VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4448,
41,
17137,
9416,
584,
4280,
28027,
6,
4245,
584,
4280,
28027,
6,
833,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
1180,
97,
13,
8,
579... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
18286,
6157,
97,
21680,
953,
834,
4350,
834,
4448,
549,
17444,
427,
4245,
3274,
96,
115,
115,
75,
662,
121,
3430,
833,
3274,
96,
2773,
10556,
2628,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What is the notes of the transmission on channel bbc four and a time of 22:30? | SELECT notes FROM table_name_15 WHERE channel = "bbc four" AND time = "22:30" | CREATE TABLE table_name_15 (notes VARCHAR, channel VARCHAR, time VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
1808,
41,
7977,
7,
584,
4280,
28027,
6,
4245,
584,
4280,
28027,
6,
97,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
3358,
13,
8,
5790,
30,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
3358,
21680,
953,
834,
4350,
834,
1808,
549,
17444,
427,
4245,
3274,
96,
115,
115,
75,
662,
121,
3430,
97,
3274,
96,
357,
21876,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
Which channel was on 28 December 2008? | SELECT channel FROM table_name_74 WHERE date = "28 december 2008" | CREATE TABLE table_name_74 (channel VARCHAR, date VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4581,
41,
19778,
584,
4280,
28027,
6,
833,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
4073,
4245,
47,
30,
2059,
1882,
2628,
58,
1,
0,
0,
0,
0,
0,
0,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
4245,
21680,
953,
834,
4350,
834,
4581,
549,
17444,
427,
833,
3274,
96,
2577,
20,
75,
18247,
2628,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-1... |
What is the channel with a 03:40 time? | SELECT channel FROM table_name_51 WHERE time = "03:40" | CREATE TABLE table_name_51 (channel VARCHAR, time VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
5553,
41,
19778,
584,
4280,
28027,
6,
97,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
4245,
28,
3,
9,
12811,
10,
2445,
97,
58,
1,
0,
0,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
4245,
21680,
953,
834,
4350,
834,
5553,
549,
17444,
427,
97,
3274,
96,
4928,
10,
2445,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-1... |
What is the Other b when the FA Cup shows 3 (17)? | SELECT other_b FROM table_name_96 WHERE fa_cup = "3 (17)" | CREATE TABLE table_name_96 (other_b VARCHAR, fa_cup VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4314,
41,
9269,
834,
115,
584,
4280,
28027,
6,
3,
89,
9,
834,
4658,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
2502,
3,
115,
116,
8,
8536... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
119,
834,
115,
21680,
953,
834,
4350,
834,
4314,
549,
17444,
427,
3,
89,
9,
834,
4658,
3274,
96,
519,
18360,
61,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
What is the Total when the league shows 79 (221)? | SELECT total FROM table_name_39 WHERE league_a = "79 (221)" | CREATE TABLE table_name_39 (total VARCHAR, league_a VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3288,
41,
235,
1947,
584,
4280,
28027,
6,
5533,
834,
9,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
9273,
116,
8,
5533,
1267,
3,
4440,
4743,... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
792,
21680,
953,
834,
4350,
834,
3288,
549,
17444,
427,
5533,
834,
9,
3274,
96,
4440,
4743,
2658,
61,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,... |
What is the Name when the League Cup shows 0 (0), and the FA Cup is 12 (14)? | SELECT name FROM table_name_40 WHERE league_cup = "0 (0)" AND fa_cup = "12 (14)" | CREATE TABLE table_name_40 (name VARCHAR, league_cup VARCHAR, fa_cup VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2445,
41,
4350,
584,
4280,
28027,
6,
5533,
834,
4658,
584,
4280,
28027,
6,
3,
89,
9,
834,
4658,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
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... | [
3,
23143,
14196,
564,
21680,
953,
834,
4350,
834,
2445,
549,
17444,
427,
5533,
834,
4658,
3274,
96,
632,
3,
31862,
121,
3430,
3,
89,
9,
834,
4658,
3274,
96,
2122,
4077,
7256,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What is the League for 1952–1960? | SELECT league_a FROM table_name_2 WHERE years = "1952–1960" | CREATE TABLE table_name_2 (league_a VARCHAR, years VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
357,
41,
29512,
834,
9,
584,
4280,
28027,
6,
203,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
3815,
21,
23744,
104,
2294,
3328,
58,
1,
0,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
5533,
834,
9,
21680,
953,
834,
4350,
834,
357,
549,
17444,
427,
203,
3274,
96,
22464,
357,
104,
2294,
3328,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,... |
What shows for the League when the FA Cup is 6 (20)? | SELECT league_a FROM table_name_47 WHERE fa_cup = "6 (20)" | CREATE TABLE table_name_47 (league_a VARCHAR, fa_cup VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4177,
41,
29512,
834,
9,
584,
4280,
28027,
6,
3,
89,
9,
834,
4658,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
1267,
21,
8,
3815,
116,
8,
8536,
3... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
5533,
834,
9,
21680,
953,
834,
4350,
834,
4177,
549,
17444,
427,
3,
89,
9,
834,
4658,
3274,
96,
948,
17543,
61,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,... |
What club wast he player hristo stoitchkov from? | SELECT club FROM table_name_97 WHERE player = "hristo stoitchkov" | CREATE TABLE table_name_97 (club VARCHAR, player VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4327,
41,
13442,
584,
4280,
28027,
6,
1959,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
1886,
47,
17,
3,
88,
1959,
3,
107,
17149,
3,
7,
235,
7059,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
1886,
21680,
953,
834,
4350,
834,
4327,
549,
17444,
427,
1959,
3274,
96,
107,
17149,
3,
7,
235,
7059,
9789,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,... |
What is the content for la sorgente sat 3? | SELECT content FROM table_name_20 WHERE television_service = "la sorgente sat 3" | CREATE TABLE table_name_20 (content VARCHAR, television_service VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
1755,
41,
14819,
584,
4280,
28027,
6,
4390,
834,
5114,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
738,
21,
50,
15655,
17,
15,
3,
7,
144,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
738,
21680,
953,
834,
4350,
834,
1755,
549,
17444,
427,
4390,
834,
5114,
3274,
96,
521,
15655,
17,
15,
3,
7,
144,
220,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
What language is telemarket for you? | SELECT language FROM table_name_3 WHERE television_service = "telemarket for you" | CREATE TABLE table_name_3 (language VARCHAR, television_service VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
519,
41,
24925,
584,
4280,
28027,
6,
4390,
834,
5114,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
1612,
19,
3,
1931,
8809,
21,
25,
58,
1,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
1612,
21680,
953,
834,
4350,
834,
519,
549,
17444,
427,
4390,
834,
5114,
3274,
96,
1931,
8809,
21,
25,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
What language is telemarket for you with a content of televendita? | SELECT language FROM table_name_59 WHERE content = "televendita" AND television_service = "telemarket for you" | CREATE TABLE table_name_59 (language VARCHAR, content VARCHAR, television_service VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3390,
41,
24925,
584,
4280,
28027,
6,
738,
584,
4280,
28027,
6,
4390,
834,
5114,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
1612,
19,
3,
1931,
8809,... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
1612,
21680,
953,
834,
4350,
834,
3390,
549,
17444,
427,
738,
3274,
96,
1931,
1926,
26,
155,
9,
121,
3430,
4390,
834,
5114,
3274,
96,
1931,
8809,
21,
25,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,... |
Which team has points less than 6 in a year after 1969? | SELECT team FROM table_name_81 WHERE points < 6 AND year > 1969 | CREATE TABLE table_name_81 (team VARCHAR, points VARCHAR, year VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4959,
41,
11650,
584,
4280,
28027,
6,
979,
584,
4280,
28027,
6,
215,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
4073,
372,
65,
979,
705,
145,
431,
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,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
372,
21680,
953,
834,
4350,
834,
4959,
549,
17444,
427,
979,
3,
2,
431,
3430,
215,
2490,
17185,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
How many wins for the team with points less than 6 and a 350cc class? | SELECT wins FROM table_name_35 WHERE points < 6 AND class = "350cc" | CREATE TABLE table_name_35 (wins VARCHAR, points VARCHAR, class VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2469,
41,
3757,
7,
584,
4280,
28027,
6,
979,
584,
4280,
28027,
6,
853,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
571,
186,
9204,
21,
8,
372,
28,
979,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
9204,
21680,
953,
834,
4350,
834,
2469,
549,
17444,
427,
979,
3,
2,
431,
3430,
853,
3274,
96,
16975,
75,
75,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-1... |
What is the lowest points for 36th rank? | SELECT MIN(points) FROM table_name_18 WHERE rank = "36th" | CREATE TABLE table_name_18 (points INTEGER, rank VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2606,
41,
2700,
7,
3,
21342,
17966,
6,
11003,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
7402,
979,
21,
4475,
189,
11003,
58,
1,
0,
0,
0,... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
3,
17684,
599,
2700,
7,
61,
21680,
953,
834,
4350,
834,
2606,
549,
17444,
427,
11003,
3274,
96,
3420,
189,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What is team Yamaha with 3 points ranked? | SELECT rank FROM table_name_8 WHERE team = "yamaha" AND points = 3 | CREATE TABLE table_name_8 (rank VARCHAR, team VARCHAR, points VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
927,
41,
6254,
584,
4280,
28027,
6,
372,
584,
4280,
28027,
6,
979,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
372,
26369,
28,
220,
979,
3,
823... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
11003,
21680,
953,
834,
4350,
834,
927,
549,
17444,
427,
372,
3274,
96,
22990,
1024,
121,
3430,
979,
3274,
220,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What years did the player ranked less than 8 and had 447 matches play? | SELECT years FROM table_name_83 WHERE rank < 8 AND matches = 447 | CREATE TABLE table_name_83 (years VARCHAR, rank VARCHAR, matches VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4591,
41,
1201,
7,
584,
4280,
28027,
6,
11003,
584,
4280,
28027,
6,
6407,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
203,
410,
8,
1959,
3,
8232,
7... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
203,
21680,
953,
834,
4350,
834,
4591,
549,
17444,
427,
11003,
3,
2,
505,
3430,
6407,
3274,
314,
4177,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-10... |
What is the Time with a Record that is 15-7? | SELECT time FROM table_name_98 WHERE record = "15-7" | CREATE TABLE table_name_98 (time VARCHAR, record VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3916,
41,
715,
584,
4280,
28027,
6,
1368,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
2900,
28,
3,
9,
11392,
24,
19,
627,
6832,
58,
1,
0,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
97,
21680,
953,
834,
4350,
834,
3916,
549,
17444,
427,
1368,
3274,
96,
1808,
6832,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What is the Event with a Time that is 3:06? | SELECT event FROM table_name_85 WHERE time = "3:06" | CREATE TABLE table_name_85 (event VARCHAR, time VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4433,
41,
15,
2169,
584,
4280,
28027,
6,
97,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
8042,
28,
3,
9,
2900,
24,
19,
220,
10,
5176,
58,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
605,
21680,
953,
834,
4350,
834,
4433,
549,
17444,
427,
97,
3274,
96,
519,
10,
5176,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
How many silvers did Turkey get? | SELECT silver FROM table_name_78 WHERE nation = "turkey" | CREATE TABLE table_name_78 (silver VARCHAR, nation VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3940,
41,
7,
173,
624,
584,
4280,
28027,
6,
2982,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
571,
186,
4294,
7,
410,
9299,
129,
58,
1,
0,
0,
0,
0,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
4294,
21680,
953,
834,
4350,
834,
3940,
549,
17444,
427,
2982,
3274,
96,
2905,
4397,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What position does Denard Walker play? | SELECT position FROM table_name_98 WHERE player = "denard walker" | CREATE TABLE table_name_98 (position VARCHAR, player VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3916,
41,
4718,
584,
4280,
28027,
6,
1959,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
1102,
405,
3128,
986,
13521,
577,
58,
1,
0,
0,
0,
0,
0,
0,... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
1102,
21680,
953,
834,
4350,
834,
3916,
549,
17444,
427,
1959,
3274,
96,
537,
986,
3,
24063,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-1... |
What was the pick number for the wide receiver drafted from Michigan State? | SELECT pick__number FROM table_name_7 WHERE position = "wide receiver" AND college = "michigan state" | CREATE TABLE table_name_7 (pick__number VARCHAR, position VARCHAR, college VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
940,
41,
17967,
834,
834,
5525,
1152,
584,
4280,
28027,
6,
1102,
584,
4280,
28027,
6,
1900,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
47,
8,
1432,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
1432,
834,
834,
5525,
1152,
21680,
953,
834,
4350,
834,
940,
549,
17444,
427,
1102,
3274,
96,
6728,
11487,
121,
3430,
1900,
3274,
96,
51,
362,
12588,
538,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
Which player came from Kent State? | SELECT player FROM table_name_38 WHERE college = "kent state" | CREATE TABLE table_name_38 (player VARCHAR, college VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3747,
41,
20846,
584,
4280,
28027,
6,
1900,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
4073,
1959,
764,
45,
14599,
1015,
58,
1,
0,
0,
0,
0,
0,
0,
0,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
1959,
21680,
953,
834,
4350,
834,
3747,
549,
17444,
427,
1900,
3274,
96,
2217,
17,
538,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-... |
What is the total number of bronze medals, and 4 silver medals, and 2 gold medals? | SELECT COUNT(bronze) FROM table_name_28 WHERE silver = 4 AND gold > 2 | CREATE TABLE table_name_28 (bronze VARCHAR, silver VARCHAR, gold VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2577,
41,
13711,
776,
584,
4280,
28027,
6,
4294,
584,
4280,
28027,
6,
2045,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
792,
381,
13,
13467,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
2847,
17161,
599,
13711,
776,
61,
21680,
953,
834,
4350,
834,
2577,
549,
17444,
427,
4294,
3274,
314,
3430,
2045,
2490,
204,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
Which Tournament has a score of 2–6 6–4 [10–8]? | SELECT tournament FROM table_name_9 WHERE score = "2–6 6–4 [10–8]" | CREATE TABLE table_name_9 (tournament VARCHAR, score VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
1298,
41,
17,
1211,
20205,
17,
584,
4280,
28027,
6,
2604,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
4073,
20502,
65,
3,
9,
2604,
13,
204,
104,
948,
43... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
5892,
21680,
953,
834,
4350,
834,
1298,
549,
17444,
427,
2604,
3274,
96,
357,
104,
948,
431,
104,
591,
784,
1714,
104,
927,
908,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
Which Tournament has a Score of 6(4)–7 2–6? | SELECT tournament FROM table_name_73 WHERE score = "6(4)–7 2–6" | CREATE TABLE table_name_73 (tournament VARCHAR, score VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4552,
41,
17,
1211,
20205,
17,
584,
4280,
28027,
6,
2604,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
4073,
20502,
65,
3,
9,
17763,
13,
431,
10820,
104,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
5892,
21680,
953,
834,
4350,
834,
4552,
549,
17444,
427,
2604,
3274,
96,
948,
10820,
104,
940,
204,
104,
948,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-10... |
What is the Score of the match where Opponents in the Final was Vitalia Diatchenko Irena Pavlovic? | SELECT score FROM table_name_46 WHERE opponents_in_the_final = "vitalia diatchenko irena pavlovic" | CREATE TABLE table_name_46 (score VARCHAR, opponents_in_the_final VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4448,
41,
7,
9022,
584,
4280,
28027,
6,
16383,
834,
77,
834,
532,
834,
12406,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
17763,
13,
8,
1588... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
3,
23143,
14196,
2604,
21680,
953,
834,
4350,
834,
4448,
549,
17444,
427,
16383,
834,
77,
834,
532,
834,
12406,
3274,
96,
5566,
5434,
1227,
14547,
18994,
3,
23,
1536,
9,
2576,
208,
40,
13388,
121,
1,
-100,
-100,
-100,
-100,
-100,
-1... |
What is the High rebounds with a Game that is 62? | SELECT high_rebounds FROM table_name_71 WHERE game = 62 | CREATE TABLE table_name_71 (high_rebounds VARCHAR, game VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4450,
41,
6739,
834,
23768,
584,
4280,
28027,
6,
467,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
1592,
3,
23768,
28,
3,
9,
4435,
24,
19,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
306,
834,
23768,
21680,
953,
834,
4350,
834,
4450,
549,
17444,
427,
467,
3274,
3,
4056,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What is the Team with a Score that is l 79–92 (ot)? | SELECT team FROM table_name_35 WHERE score = "l 79–92 (ot)" | CREATE TABLE table_name_35 (team VARCHAR, score VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2469,
41,
11650,
584,
4280,
28027,
6,
2604,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
2271,
28,
3,
9,
17763,
24,
19,
3,
40,
3,
4440,
104... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
372,
21680,
953,
834,
4350,
834,
2469,
549,
17444,
427,
2604,
3274,
96,
40,
3,
4440,
104,
4508,
41,
32,
17,
61,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,... |
Who is the coach of the 2012 Gold Coast Titans season? | SELECT coach FROM table_name_4 WHERE details = "2012 gold coast titans season" | CREATE TABLE table_name_4 (coach VARCHAR, details VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
591,
41,
509,
1836,
584,
4280,
28027,
6,
1030,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
2645,
19,
8,
3763,
13,
8,
1673,
2540,
5458,
13622,
7,
774,
58... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
3763,
21680,
953,
834,
4350,
834,
591,
549,
17444,
427,
1030,
3274,
96,
12172,
2045,
4939,
29243,
7,
774,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-... |
Who is the coach of the 2010 Gold Coast Titans season? | SELECT coach FROM table_name_8 WHERE details = "2010 gold coast titans season" | CREATE TABLE table_name_8 (coach VARCHAR, details VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
927,
41,
509,
1836,
584,
4280,
28027,
6,
1030,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
2645,
19,
8,
3763,
13,
8,
2735,
2540,
5458,
13622,
7,
774,
58... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
3763,
21680,
953,
834,
4350,
834,
927,
549,
17444,
427,
1030,
3274,
96,
14926,
2045,
4939,
29243,
7,
774,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-... |
Who is the captain of the 2012 NRL season competition? | SELECT captain_s_ FROM table_name_75 WHERE competition = "2012 nrl season" | CREATE TABLE table_name_75 (captain_s_ VARCHAR, competition VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3072,
41,
4010,
17,
9,
77,
834,
7,
834,
584,
4280,
28027,
6,
2259,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
2645,
19,
8,
14268,
13,
8,
1673,
445,
1... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
14268,
834,
7,
834,
21680,
953,
834,
4350,
834,
3072,
549,
17444,
427,
2259,
3274,
96,
12172,
3,
29,
52,
40,
774,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-10... |
How many wins were in the PGA Championship when there were more than 10 events? | SELECT COUNT(wins) FROM table_name_55 WHERE tournament = "pga championship" AND events > 10 | CREATE TABLE table_name_55 (wins VARCHAR, tournament VARCHAR, events VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3769,
41,
3757,
7,
584,
4280,
28027,
6,
5892,
584,
4280,
28027,
6,
984,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
571,
186,
9204,
130,
16,
8,
3,
24127... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
2847,
17161,
599,
3757,
7,
61,
21680,
953,
834,
4350,
834,
3769,
549,
17444,
427,
5892,
3274,
96,
102,
122,
9,
10183,
121,
3430,
984,
2490,
335,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-... |
What is the smallest number of cuts when there were more than 0 wins? | SELECT MIN(cuts_made) FROM table_name_59 WHERE wins > 0 | CREATE TABLE table_name_59 (cuts_made INTEGER, wins INTEGER) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3390,
41,
3044,
7,
834,
4725,
3,
21342,
17966,
6,
9204,
3,
21342,
17966,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
3,
17924,
381,
13,
8620,
116,
132,
130,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
3,
17684,
599,
3044,
7,
834,
4725,
61,
21680,
953,
834,
4350,
834,
3390,
549,
17444,
427,
9204,
2490,
3,
632,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What is the total number of Rank for 1996–2007, when there are more than 108 goals? | SELECT COUNT(rank) FROM table_name_51 WHERE years = "1996–2007" AND goals > 108 | CREATE TABLE table_name_51 (rank VARCHAR, years VARCHAR, goals VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
5553,
41,
6254,
584,
4280,
28027,
6,
203,
584,
4280,
28027,
6,
1766,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
792,
381,
13,
3,
22557,
21,... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
2847,
17161,
599,
6254,
61,
21680,
953,
834,
4350,
834,
5553,
549,
17444,
427,
203,
3274,
96,
2294,
4314,
104,
20615,
121,
3430,
1766,
2490,
3,
16169,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-10... |
What is the lowest Rank when the goals are less than 124 for Jeff Cunningham? | SELECT MIN(rank) FROM table_name_50 WHERE goals > 124 AND name = "jeff cunningham" | CREATE TABLE table_name_50 (rank INTEGER, goals VARCHAR, name VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
1752,
41,
6254,
3,
21342,
17966,
6,
1766,
584,
4280,
28027,
6,
564,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
7402,
3,
22557,
116,
8,
1766... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
3,
17684,
599,
6254,
61,
21680,
953,
834,
4350,
834,
1752,
549,
17444,
427,
1766,
2490,
3,
22504,
3430,
564,
3274,
96,
1924,
89,
89,
123,
9416,
1483,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-10... |
What is the total number of Rank with 100 goals, and less than 300 matches? | SELECT COUNT(rank) FROM table_name_3 WHERE goals = 100 AND matches < 300 | CREATE TABLE table_name_3 (rank VARCHAR, goals VARCHAR, matches VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
519,
41,
6254,
584,
4280,
28027,
6,
1766,
584,
4280,
28027,
6,
6407,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
792,
381,
13,
3,
22557,
28,... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
2847,
17161,
599,
6254,
61,
21680,
953,
834,
4350,
834,
519,
549,
17444,
427,
1766,
3274,
910,
3430,
6407,
3,
2,
3147,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,... |
What is the highest Rank for Jason Kreis, with less than 305 matches? | SELECT MAX(rank) FROM table_name_67 WHERE name = "jason kreis" AND matches < 305 | CREATE TABLE table_name_67 (rank INTEGER, name VARCHAR, matches VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3708,
41,
6254,
3,
21342,
17966,
6,
564,
584,
4280,
28027,
6,
6407,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
2030,
3,
22557,
21,
9637,
14... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
4800,
4,
599,
6254,
61,
21680,
953,
834,
4350,
834,
3708,
549,
17444,
427,
564,
3274,
96,
1191,
739,
3,
14096,
121,
3430,
6407,
3,
2,
3,
26724,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What is the least number of wins when the top 10 is more than 8? | SELECT MIN(wins) FROM table_name_41 WHERE top_10 > 8 | CREATE TABLE table_name_41 (wins INTEGER, top_10 INTEGER) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4853,
41,
3757,
7,
3,
21342,
17966,
6,
420,
834,
1714,
3,
21342,
17966,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
709,
381,
13,
9204,
116,
8,
420,
335,
19... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
3,
17684,
599,
3757,
7,
61,
21680,
953,
834,
4350,
834,
4853,
549,
17444,
427,
420,
834,
1714,
2490,
505,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What is the sum of cuts made when the top-5 is 2, and there are 12 events? | SELECT COUNT(cuts_made) FROM table_name_45 WHERE top_5 = 2 AND events = 12 | CREATE TABLE table_name_45 (cuts_made VARCHAR, top_5 VARCHAR, events VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2128,
41,
3044,
7,
834,
4725,
584,
4280,
28027,
6,
420,
834,
755,
584,
4280,
28027,
6,
984,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
4505... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
2847,
17161,
599,
3044,
7,
834,
4725,
61,
21680,
953,
834,
4350,
834,
2128,
549,
17444,
427,
420,
834,
755,
3274,
204,
3430,
984,
3274,
586,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What is the mean number in the top 5 when the top 25 is 1 and there's fewer than 0 wins? | SELECT AVG(top_5) FROM table_name_61 WHERE top_25 = 1 AND wins < 0 | CREATE TABLE table_name_61 (top_5 INTEGER, top_25 VARCHAR, wins VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4241,
41,
2916,
834,
755,
3,
21342,
17966,
6,
420,
834,
1828,
584,
4280,
28027,
6,
9204,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
1243,
3... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
3,
23143,
14196,
71,
17217,
599,
2916,
834,
9120,
21680,
953,
834,
4350,
834,
4241,
549,
17444,
427,
420,
834,
1828,
3274,
209,
3430,
9204,
3,
2,
3,
632,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-10... |
What is the mean number of events when top-5 is 1? | SELECT AVG(events) FROM table_name_51 WHERE top_5 = 1 | CREATE TABLE table_name_51 (events INTEGER, top_5 VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
5553,
41,
15,
2169,
7,
3,
21342,
17966,
6,
420,
834,
755,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
1243,
381,
13,
984,
116,
420,
4525,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
71,
17217,
599,
15,
2169,
7,
61,
21680,
953,
834,
4350,
834,
5553,
549,
17444,
427,
420,
834,
755,
3274,
209,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
How many top-25s are associated with more than 91 events? | SELECT SUM(top_25) FROM table_name_24 WHERE events > 91 | CREATE TABLE table_name_24 (top_25 INTEGER, events INTEGER) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2266,
41,
2916,
834,
1828,
3,
21342,
17966,
6,
984,
3,
21342,
17966,
61,
3,
32105,
32106,
32107,
32106,
571,
186,
420,
14855,
7,
33,
1968,
28,
72,
145,
3,
4729,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
180,
6122,
599,
2916,
834,
1828,
61,
21680,
953,
834,
4350,
834,
2266,
549,
17444,
427,
984,
2490,
3,
4729,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
What is the lowest Wins with a Top-10 that is larger than 9? | SELECT MIN(wins) FROM table_name_40 WHERE top_10 > 9 | CREATE TABLE table_name_40 (wins INTEGER, top_10 INTEGER) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2445,
41,
3757,
7,
3,
21342,
17966,
6,
420,
834,
1714,
3,
21342,
17966,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
7402,
4871,
7,
28,
3,
9,
2224,
4536,
24,... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
3,
17684,
599,
3757,
7,
61,
21680,
953,
834,
4350,
834,
2445,
549,
17444,
427,
420,
834,
1714,
2490,
668,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What is the average Cuts that were made with a Top-10 that is larger than 9? | SELECT AVG(cuts_made) FROM table_name_15 WHERE top_10 > 9 | CREATE TABLE table_name_15 (cuts_made INTEGER, top_10 INTEGER) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
1808,
41,
3044,
7,
834,
4725,
3,
21342,
17966,
6,
420,
834,
1714,
3,
21342,
17966,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
1348,
6868,
7,
24,
130,
263,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
71,
17217,
599,
3044,
7,
834,
4725,
61,
21680,
953,
834,
4350,
834,
1808,
549,
17444,
427,
420,
834,
1714,
2490,
668,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
Which record has 64,053 as the attendance? | SELECT record FROM table_name_51 WHERE attendance = "64,053" | CREATE TABLE table_name_51 (record VARCHAR, attendance VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
5553,
41,
60,
7621,
584,
4280,
28027,
6,
11364,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
4073,
1368,
65,
6687,
6,
3076,
519,
38,
8,
11364,
58,
1,
0,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
1368,
21680,
953,
834,
4350,
834,
5553,
549,
17444,
427,
11364,
3274,
96,
4389,
6,
3076,
519,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-... |
Which date has rich stadium as the game site for week 1? | SELECT date FROM table_name_13 WHERE game_site = "rich stadium" AND week = 1 | CREATE TABLE table_name_13 (date VARCHAR, game_site VARCHAR, week VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2368,
41,
5522,
584,
4280,
28027,
6,
467,
834,
3585,
584,
4280,
28027,
6,
471,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
4073,
833,
65,
2354,
14939,
38,... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
833,
21680,
953,
834,
4350,
834,
2368,
549,
17444,
427,
467,
834,
3585,
3274,
96,
3723,
14939,
121,
3430,
471,
3274,
209,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-1... |
Which date has 1 as the week? | SELECT date FROM table_name_22 WHERE week = 1 | CREATE TABLE table_name_22 (date VARCHAR, week VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2884,
41,
5522,
584,
4280,
28027,
6,
471,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
4073,
833,
65,
209,
38,
8,
471,
58,
1,
0,
0,
0,
0,
0,
0,
0,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
833,
21680,
953,
834,
4350,
834,
2884,
549,
17444,
427,
471,
3274,
209,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
Which Title was awarded the gold RIAA Sales Certification? | SELECT title FROM table_name_5 WHERE riaa_sales_certification = "gold" | CREATE TABLE table_name_5 (title VARCHAR, riaa_sales_certification VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
755,
41,
21869,
584,
4280,
28027,
6,
3,
52,
23,
9,
9,
834,
7,
4529,
834,
2110,
17,
2420,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
4073,
11029,
47,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
2233,
21680,
953,
834,
4350,
834,
755,
549,
17444,
427,
3,
52,
23,
9,
9,
834,
7,
4529,
834,
2110,
17,
2420,
3274,
96,
14910,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-1... |
For how many years did the song "Lost Without Your Love" win the gold RIAA Sales Certification, and have a Billboard 200 Peak greater than 26? | SELECT SUM(year) FROM table_name_80 WHERE riaa_sales_certification = "gold" AND title = "lost without your love" AND billboard_200_peak > 26 | CREATE TABLE table_name_80 (year INTEGER, billboard_200_peak VARCHAR, riaa_sales_certification VARCHAR, title VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2079,
41,
1201,
3,
21342,
17966,
6,
2876,
1976,
834,
3632,
834,
14661,
584,
4280,
28027,
6,
3,
52,
23,
9,
9,
834,
7,
4529,
834,
2110,
17,
2420,
584,
4280,
2802... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
3,
23143,
14196,
180,
6122,
599,
1201,
61,
21680,
953,
834,
4350,
834,
2079,
549,
17444,
427,
3,
52,
23,
9,
9,
834,
7,
4529,
834,
2110,
17,
2420,
3274,
96,
14910,
121,
3430,
2233,
3274,
96,
2298,
17,
406,
39,
333,
121,
3430,
287... |
Before the Year 1972, what RIAA Sales Certification was awarded to the song that had a Billboard 200 Peak less than 18? | SELECT riaa_sales_certification FROM table_name_50 WHERE billboard_200_peak < 18 AND year < 1972 | CREATE TABLE table_name_50 (riaa_sales_certification VARCHAR, billboard_200_peak VARCHAR, year VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
1752,
41,
52,
23,
9,
9,
834,
7,
4529,
834,
2110,
17,
2420,
584,
4280,
28027,
6,
2876,
1976,
834,
3632,
834,
14661,
584,
4280,
28027,
6,
215,
584,
4280,
28027,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
3,
23143,
14196,
3,
52,
23,
9,
9,
834,
7,
4529,
834,
2110,
17,
2420,
21680,
953,
834,
4350,
834,
1752,
549,
17444,
427,
2876,
1976,
834,
3632,
834,
14661,
3,
2,
507,
3430,
215,
3,
2,
16583,
1,
-100,
-100,
-100,
-100,
-100,
-100,... |
What RIAA Sales Certification was awarded to the song that had a Billboard 200 Peak of 21? | SELECT riaa_sales_certification FROM table_name_1 WHERE billboard_200_peak = 21 | CREATE TABLE table_name_1 (riaa_sales_certification VARCHAR, billboard_200_peak VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
536,
41,
52,
23,
9,
9,
834,
7,
4529,
834,
2110,
17,
2420,
584,
4280,
28027,
6,
2876,
1976,
834,
3632,
834,
14661,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
3,
23143,
14196,
3,
52,
23,
9,
9,
834,
7,
4529,
834,
2110,
17,
2420,
21680,
953,
834,
4350,
834,
536,
549,
17444,
427,
2876,
1976,
834,
3632,
834,
14661,
3274,
1401,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-... |
What is the sum of the Billboard 200 Peak scores after the Year 1971? | SELECT SUM(billboard_200_peak) FROM table_name_38 WHERE year > 1971 | CREATE TABLE table_name_38 (billboard_200_peak INTEGER, year INTEGER) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3747,
41,
3727,
40,
1976,
834,
3632,
834,
14661,
3,
21342,
17966,
6,
215,
3,
21342,
17966,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
4505,
13,
8,
3259,
1976... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
180,
6122,
599,
3727,
40,
1976,
834,
3632,
834,
14661,
61,
21680,
953,
834,
4350,
834,
3747,
549,
17444,
427,
215,
2490,
17961,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-1... |
What is the sum of the Billboard 200 Peak scores given to the song with the Title Bread? | SELECT SUM(billboard_200_peak) FROM table_name_70 WHERE title = "bread" | CREATE TABLE table_name_70 (billboard_200_peak INTEGER, title VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2518,
41,
3727,
40,
1976,
834,
3632,
834,
14661,
3,
21342,
17966,
6,
2233,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
4505,
13,
8,
3259,
19... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
180,
6122,
599,
3727,
40,
1976,
834,
3632,
834,
14661,
61,
21680,
953,
834,
4350,
834,
2518,
549,
17444,
427,
2233,
3274,
96,
20517,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
What is the number of gold when the silver is 1, bronze is 1, and the nation is Austria? | SELECT COUNT(gold) FROM table_name_4 WHERE silver = 1 AND bronze = 1 AND nation = "austria" | CREATE TABLE table_name_4 (gold VARCHAR, nation VARCHAR, silver VARCHAR, bronze VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
591,
41,
14910,
584,
4280,
28027,
6,
2982,
584,
4280,
28027,
6,
4294,
584,
4280,
28027,
6,
13467,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
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,
0,
0,
0,
0... | [
3,
23143,
14196,
2847,
17161,
599,
14910,
61,
21680,
953,
834,
4350,
834,
591,
549,
17444,
427,
4294,
3274,
209,
3430,
13467,
3274,
209,
3430,
2982,
3274,
96,
402,
23387,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-... |
What nation has 2 bronze and a rank of 9? | SELECT nation FROM table_name_54 WHERE bronze = 2 AND rank = 9 | CREATE TABLE table_name_54 (nation VARCHAR, bronze VARCHAR, rank VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
5062,
41,
29,
257,
584,
4280,
28027,
6,
13467,
584,
4280,
28027,
6,
11003,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
2982,
65,
204,
13467,
11,
3,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
2982,
21680,
953,
834,
4350,
834,
5062,
549,
17444,
427,
13467,
3274,
204,
3430,
11003,
3274,
668,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-10... |
What is the highest gold when bronze is 1, and rank is 5? | SELECT MAX(gold) FROM table_name_93 WHERE bronze = 1 AND rank = 5 | CREATE TABLE table_name_93 (gold INTEGER, bronze VARCHAR, rank VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4271,
41,
14910,
3,
21342,
17966,
6,
13467,
584,
4280,
28027,
6,
11003,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
2030,
2045,
116,
13467,
19... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
4800,
4,
599,
14910,
61,
21680,
953,
834,
4350,
834,
4271,
549,
17444,
427,
13467,
3274,
209,
3430,
11003,
3274,
305,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What is the lowest gold when there are 0 bronze and the total is less than 2, and silver is less than 0? | SELECT MIN(gold) FROM table_name_24 WHERE bronze = 0 AND total < 2 AND silver < 0 | CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, bronze VARCHAR, total VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2266,
41,
14910,
3,
21342,
17966,
6,
4294,
584,
4280,
28027,
6,
13467,
584,
4280,
28027,
6,
792,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
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... | [
3,
23143,
14196,
3,
17684,
599,
14910,
61,
21680,
953,
834,
4350,
834,
2266,
549,
17444,
427,
13467,
3274,
3,
632,
3430,
792,
3,
2,
204,
3430,
4294,
3,
2,
3,
632,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
What is the sum of rank when total is 3 and the nation is Australia? | SELECT SUM(rank) FROM table_name_12 WHERE total = 3 AND nation = "australia" | CREATE TABLE table_name_12 (rank INTEGER, total VARCHAR, nation VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2122,
41,
6254,
3,
21342,
17966,
6,
792,
584,
4280,
28027,
6,
2982,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
4505,
13,
11003,
116,
792,
1... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
180,
6122,
599,
6254,
61,
21680,
953,
834,
4350,
834,
2122,
549,
17444,
427,
792,
3274,
220,
3430,
2982,
3274,
96,
2064,
8792,
23,
9,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-... |
What is the Rank with a Goal number smaller than 66? | SELECT rank FROM table_name_29 WHERE goals < 66 | CREATE TABLE table_name_29 (rank VARCHAR, goals INTEGER) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3166,
41,
6254,
584,
4280,
28027,
6,
1766,
3,
21342,
17966,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
3,
22557,
28,
3,
9,
17916,
381,
2755,
145,
3,
3539,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
11003,
21680,
953,
834,
4350,
834,
3166,
549,
17444,
427,
1766,
3,
2,
3,
3539,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-10... |
What is the spoofed title for Parks and Recreation with an issue larger than 509? | SELECT spoofed_title FROM table_name_43 WHERE issue > 509 AND actual_title = "parks and recreation" | CREATE TABLE table_name_43 (spoofed_title VARCHAR, issue VARCHAR, actual_title VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4906,
41,
7,
18450,
19565,
834,
21869,
584,
4280,
28027,
6,
962,
584,
4280,
28027,
6,
1805,
834,
21869,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
1... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0... | [
3,
23143,
14196,
3,
7,
18450,
19565,
834,
21869,
21680,
953,
834,
4350,
834,
4906,
549,
17444,
427,
962,
2490,
305,
4198,
3430,
1805,
834,
21869,
3274,
96,
6334,
7,
11,
17711,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What was the actual title of the show that had an issue number less than 508, was written by Desmond Devlin, and for which Tom Richmond was the artist? | SELECT actual_title FROM table_name_15 WHERE artist = "tom richmond" AND issue < 508 AND writer = "desmond devlin" | CREATE TABLE table_name_15 (actual_title VARCHAR, writer VARCHAR, artist VARCHAR, issue VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
1808,
41,
25481,
834,
21869,
584,
4280,
28027,
6,
4346,
584,
4280,
28027,
6,
2377,
584,
4280,
28027,
6,
962,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
3... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
3,
23143,
14196,
1805,
834,
21869,
21680,
953,
834,
4350,
834,
1808,
549,
17444,
427,
2377,
3274,
96,
235,
51,
2354,
6764,
121,
3430,
962,
3,
2,
943,
927,
3430,
4346,
3274,
96,
1395,
6764,
20,
208,
40,
77,
121,
1,
-100,
-100,
-100... |
What issue was the spoofed title Ho-Hum land? | SELECT SUM(issue) FROM table_name_75 WHERE spoofed_title = "ho-hum land" | CREATE TABLE table_name_75 (issue INTEGER, spoofed_title VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3072,
41,
13159,
3,
21342,
17966,
6,
3,
7,
18450,
19565,
834,
21869,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
962,
47,
8,
3,
7,
18450,
19565,
22... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
180,
6122,
599,
13159,
61,
21680,
953,
834,
4350,
834,
3072,
549,
17444,
427,
3,
7,
18450,
19565,
834,
21869,
3274,
96,
107,
32,
18,
4884,
1322,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-1... |
Game of Thrones was done by which artist? | SELECT artist FROM table_name_82 WHERE actual_title = "game of thrones" | CREATE TABLE table_name_82 (artist VARCHAR, actual_title VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4613,
41,
1408,
343,
584,
4280,
28027,
6,
1805,
834,
21869,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
4435,
13,
29344,
47,
612,
57,
84,
2377,
58,
1,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
2377,
21680,
953,
834,
4350,
834,
4613,
549,
17444,
427,
1805,
834,
21869,
3274,
96,
7261,
13,
3,
8514,
1496,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-10... |
What is the Surface when Todd Woodbridge was the runner-up, and a Date of 24 february 1997? | SELECT surface FROM table_name_77 WHERE outcome = "runner-up" AND date = "24 february 1997" | CREATE TABLE table_name_77 (surface VARCHAR, outcome VARCHAR, date VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4013,
41,
26899,
584,
4280,
28027,
6,
6138,
584,
4280,
28027,
6,
833,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
18884,
116,
17607,
2985,
981... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0... | [
3,
23143,
14196,
1774,
21680,
953,
834,
4350,
834,
4013,
549,
17444,
427,
6138,
3274,
96,
10806,
18,
413,
121,
3430,
833,
3274,
96,
2266,
29976,
76,
1208,
6622,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,... |
What is the Opponent when Todd Woodbridge was the runner-up, and a Date of 26 august 1996? | SELECT opponent FROM table_name_52 WHERE outcome = "runner-up" AND date = "26 august 1996" | CREATE TABLE table_name_52 (opponent VARCHAR, outcome VARCHAR, date VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
5373,
41,
32,
102,
9977,
584,
4280,
28027,
6,
6138,
584,
4280,
28027,
6,
833,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
4495,
9977,
116,
1... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0... | [
3,
23143,
14196,
15264,
21680,
953,
834,
4350,
834,
5373,
549,
17444,
427,
6138,
3274,
96,
10806,
18,
413,
121,
3430,
833,
3274,
96,
2688,
14663,
6911,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-1... |
What is the Surface when the score was 4–6, 6–3, 6–7 (5–7)? | SELECT surface FROM table_name_75 WHERE score = "4–6, 6–3, 6–7 (5–7)" | CREATE TABLE table_name_75 (surface VARCHAR, score VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3072,
41,
26899,
584,
4280,
28027,
6,
2604,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
18884,
116,
8,
2604,
47,
314,
104,
11071,
431,
104,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
1774,
21680,
953,
834,
4350,
834,
3072,
549,
17444,
427,
2604,
3274,
96,
591,
104,
11071,
431,
104,
6355,
431,
104,
940,
9209,
104,
12703,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
What is the Score when there was a hard surface and the Championship is new haven , usa? | SELECT score FROM table_name_93 WHERE surface = "hard" AND championship = "new haven , usa" | CREATE TABLE table_name_93 (score VARCHAR, surface VARCHAR, championship VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4271,
41,
7,
9022,
584,
4280,
28027,
6,
1774,
584,
4280,
28027,
6,
10183,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
17763,
116,
132,
47,
3... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
2604,
21680,
953,
834,
4350,
834,
4271,
549,
17444,
427,
1774,
3274,
96,
5651,
121,
3430,
10183,
3274,
96,
5534,
43,
29,
3,
6,
178,
9,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
Which Position player was born June 30, 1981? | SELECT position FROM table_name_90 WHERE birthdate = "june 30, 1981" | CREATE TABLE table_name_90 (position VARCHAR, birthdate VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2394,
41,
4718,
584,
4280,
28027,
6,
3879,
5522,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
4073,
14258,
1959,
47,
2170,
1515,
11558,
15465,
58,
1,
0,
0,... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
1102,
21680,
953,
834,
4350,
834,
2394,
549,
17444,
427,
3879,
5522,
3274,
96,
6959,
15,
11558,
15465,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What is the 2005-2006 team for player Phil Kessel? | SELECT 2005 AS _2006_team FROM table_name_89 WHERE name = "phil kessel" | CREATE TABLE table_name_89 (name VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3914,
41,
4350,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
3105,
18,
21196,
372,
21,
1959,
8188,
480,
19132,
58,
1,
0,
0,
0,
0,
0,
0,
0... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
3105,
6157,
3,
834,
21196,
834,
11650,
21680,
953,
834,
4350,
834,
3914,
549,
17444,
427,
564,
3274,
96,
18118,
3,
157,
19132,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
What is the total sum of the goals at competitions with more than 10 draws? | SELECT SUM(goals_for) FROM table_name_84 WHERE drawn > 10 | CREATE TABLE table_name_84 (goals_for INTEGER, drawn INTEGER) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4608,
41,
839,
5405,
834,
1161,
3,
21342,
17966,
6,
6796,
3,
21342,
17966,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
792,
4505,
13,
8,
1766,
44,
2259,
7,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
180,
6122,
599,
839,
5405,
834,
1161,
61,
21680,
953,
834,
4350,
834,
4608,
549,
17444,
427,
6796,
2490,
335,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-1... |
For the teams that had more than 2 Byes, what was the highest number of Wins? | SELECT MAX(wins) FROM table_name_14 WHERE byes > 2 | CREATE TABLE table_name_14 (wins INTEGER, byes INTEGER) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2534,
41,
3757,
7,
3,
21342,
17966,
6,
57,
15,
7,
3,
21342,
17966,
61,
3,
32105,
32106,
32107,
32106,
242,
8,
2323,
24,
141,
72,
145,
204,
938,
15,
7,
6,
125... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
4800,
4,
599,
3757,
7,
61,
21680,
953,
834,
4350,
834,
2534,
549,
17444,
427,
57,
15,
7,
2490,
204,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
For the teams that had fewer than 4 Losses, and less than 16 Wins, what was the total number of Draws? | SELECT COUNT(draws) FROM table_name_21 WHERE losses < 4 AND wins < 16 | CREATE TABLE table_name_21 (draws VARCHAR, losses VARCHAR, wins VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2658,
41,
19489,
7,
584,
4280,
28027,
6,
8467,
584,
4280,
28027,
6,
9204,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
242,
8,
2323,
24,
141,
3,
10643,
1... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
3,
23143,
14196,
2847,
17161,
599,
19489,
7,
61,
21680,
953,
834,
4350,
834,
2658,
549,
17444,
427,
8467,
3,
2,
314,
3430,
9204,
3,
2,
898,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,... |
For the teams that had less than 1 loss, what was the average number of Wins? | SELECT AVG(wins) FROM table_name_51 WHERE losses < 1 | CREATE TABLE table_name_51 (wins INTEGER, losses INTEGER) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
5553,
41,
3757,
7,
3,
21342,
17966,
6,
8467,
3,
21342,
17966,
61,
3,
32105,
32106,
32107,
32106,
242,
8,
2323,
24,
141,
705,
145,
209,
1453,
6,
125,
47,
8,
134... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
71,
17217,
599,
3757,
7,
61,
21680,
953,
834,
4350,
834,
5553,
549,
17444,
427,
8467,
3,
2,
209,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-... |
For the teams that had fewer than 1 Byes, what was the lowest number of Draws? | SELECT MIN(draws) FROM table_name_38 WHERE byes < 1 | CREATE TABLE table_name_38 (draws INTEGER, byes INTEGER) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3747,
41,
19489,
7,
3,
21342,
17966,
6,
57,
15,
7,
3,
21342,
17966,
61,
3,
32105,
32106,
32107,
32106,
242,
8,
2323,
24,
141,
3,
10643,
145,
209,
938,
15,
7,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
3,
17684,
599,
19489,
7,
61,
21680,
953,
834,
4350,
834,
3747,
549,
17444,
427,
57,
15,
7,
3,
2,
209,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What was the highest number of Draws scored by Sebastapol when the value for Against was less than 1802? | SELECT MAX(draws) FROM table_name_24 WHERE ballarat_fl = "sebastapol" AND against < 1802 | CREATE TABLE table_name_24 (draws INTEGER, ballarat_fl VARCHAR, against VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2266,
41,
19489,
7,
3,
21342,
17966,
6,
1996,
9,
1795,
834,
89,
40,
584,
4280,
28027,
6,
581,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
47,
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... | [
3,
23143,
14196,
4800,
4,
599,
19489,
7,
61,
21680,
953,
834,
4350,
834,
2266,
549,
17444,
427,
1996,
9,
1795,
834,
89,
40,
3274,
96,
7,
15,
115,
12518,
3233,
121,
3430,
581,
3,
2,
507,
4305,
1,
-100,
-100,
-100,
-100,
-100,
-10... |
What is the Season when the Opponent was zenit st. petersburg? | SELECT season FROM table_name_68 WHERE opponent = "zenit st. petersburg" | CREATE TABLE table_name_68 (season VARCHAR, opponent VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3651,
41,
9476,
584,
4280,
28027,
6,
15264,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
7960,
116,
8,
4495,
9977,
47,
3,
1847,
155,
3,
7,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
774,
21680,
953,
834,
4350,
834,
3651,
549,
17444,
427,
15264,
3274,
96,
1847,
155,
3,
7,
17,
5,
158,
449,
7289,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100... |
What is the Opponent with a Round of q2, in the 2005–06 season? | SELECT opponent FROM table_name_75 WHERE round = "q2" AND season = "2005–06" | CREATE TABLE table_name_75 (opponent VARCHAR, round VARCHAR, season VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3072,
41,
32,
102,
9977,
584,
4280,
28027,
6,
1751,
584,
4280,
28027,
6,
774,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
4495,
9977,
28,
3,... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
15264,
21680,
953,
834,
4350,
834,
3072,
549,
17444,
427,
1751,
3274,
96,
1824,
357,
121,
3430,
774,
3274,
96,
22594,
104,
5176,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-1... |
What is the Competition for Season 2002–03, and the Opponent was zenit st. petersburg? | SELECT competition FROM table_name_86 WHERE season = "2002–03" AND opponent = "zenit st. petersburg" | CREATE TABLE table_name_86 (competition VARCHAR, season VARCHAR, opponent VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3840,
41,
287,
4995,
4749,
584,
4280,
28027,
6,
774,
584,
4280,
28027,
6,
15264,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
15571,
21,
7960,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0... | [
3,
23143,
14196,
2259,
21680,
953,
834,
4350,
834,
3840,
549,
17444,
427,
774,
3274,
96,
24898,
104,
4928,
121,
3430,
15264,
3274,
96,
1847,
155,
3,
7,
17,
5,
158,
449,
7289,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What is the Round when the series shows 5th place, and a Season of 2006–07? | SELECT round FROM table_name_86 WHERE series = "5th place" AND season = "2006–07" | CREATE TABLE table_name_86 (round VARCHAR, series VARCHAR, season VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3840,
41,
7775,
584,
4280,
28027,
6,
939,
584,
4280,
28027,
6,
774,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
9609,
116,
8,
939,
1267,
305... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
1751,
21680,
953,
834,
4350,
834,
3840,
549,
17444,
427,
939,
3274,
96,
755,
189,
286,
121,
3430,
774,
3274,
96,
21196,
104,
4560,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What is the Series for the uefa cup, in the 2006–07 season, and a Round of group, and an opponent of az? | SELECT series FROM table_name_35 WHERE competition = "uefa cup" AND season = "2006–07" AND round = "group" AND opponent = "az" | CREATE TABLE table_name_35 (series VARCHAR, opponent VARCHAR, round VARCHAR, competition VARCHAR, season VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2469,
41,
10833,
7,
584,
4280,
28027,
6,
15264,
584,
4280,
28027,
6,
1751,
584,
4280,
28027,
6,
2259,
584,
4280,
28027,
6,
774,
584,
4280,
28027,
61,
3,
32105,
3... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1... | [
3,
23143,
14196,
939,
21680,
953,
834,
4350,
834,
2469,
549,
17444,
427,
2259,
3274,
96,
76,
15,
89,
9,
4119,
121,
3430,
774,
3274,
96,
21196,
104,
4560,
121,
3430,
1751,
3274,
96,
10739,
121,
3430,
15264,
3274,
96,
9,
172,
121,
1... |
Which Flag did the Ship Aidavita have? | SELECT flag FROM table_name_66 WHERE ship = "aidavita" | CREATE TABLE table_name_66 (flag VARCHAR, ship VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3539,
41,
89,
5430,
584,
4280,
28027,
6,
4383,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
4073,
17016,
410,
8,
15508,
12090,
9,
12411,
43,
58,
1,
0,
0,... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
5692,
21680,
953,
834,
4350,
834,
3539,
549,
17444,
427,
4383,
3274,
96,
6146,
9,
12411,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What shows for Set 5 when the Total was 77 - 65? | SELECT set_5 FROM table_name_85 WHERE total = "77 - 65" | CREATE TABLE table_name_85 (set_5 VARCHAR, total VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
4433,
41,
2244,
834,
755,
584,
4280,
28027,
6,
792,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
1267,
21,
2821,
305,
116,
8,
9273,
47,
3,
4013,
3,
... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
356,
834,
755,
21680,
953,
834,
4350,
834,
4433,
549,
17444,
427,
792,
3274,
96,
4013,
3,
18,
7123,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
... |
What is the Set 3 when the Total was 98 - 92? | SELECT set_3 FROM table_name_27 WHERE total = "98 - 92" | CREATE TABLE table_name_27 (set_3 VARCHAR, total VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
2555,
41,
2244,
834,
519,
584,
4280,
28027,
6,
792,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
2821,
220,
116,
8,
9273,
47,
3,
3916,
3,
1... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
356,
834,
519,
21680,
953,
834,
4350,
834,
2555,
549,
17444,
427,
792,
3274,
96,
3916,
3,
18,
3,
4508,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-1... |
What is the Total when the Set 3 was 25-15? | SELECT total FROM table_name_68 WHERE set_3 = "25-15" | CREATE TABLE table_name_68 (total VARCHAR, set_3 VARCHAR) | [
32100,
32106,
32105,
205,
4386,
6048,
332,
17098,
953,
834,
4350,
834,
3651,
41,
235,
1947,
584,
4280,
28027,
6,
356,
834,
519,
584,
4280,
28027,
61,
3,
32105,
32106,
32107,
32106,
363,
19,
8,
9273,
116,
8,
2821,
220,
47,
944,
10106... | [
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0... | [
3,
23143,
14196,
792,
21680,
953,
834,
4350,
834,
3651,
549,
17444,
427,
356,
834,
519,
3274,
96,
1828,
10106,
121,
1,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-100,
-... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.