NATURAL_LANG
stringlengths
0
446
SCHEMA
stringlengths
27
2.21k
SQL
stringlengths
18
453
input_ids
list
attention_mask
list
labels
list
Tell me the highest matches for point 43 and final rank less than 7
CREATE TABLE table_name_32 ( matches INTEGER, point VARCHAR, final_rank VARCHAR )
SELECT MAX(matches) FROM table_name_32 WHERE point = 43 AND final_rank < 7
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2668, 41, 6407, 3, 21342, 17966, 6, 500, 584, 4280, 28027, 6, 804, 834, 6254, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 8779, 140, 8, 2030, 6407, 2...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 19515, 15, 7, 61, 21680, 953, 834, 4350, 834, 2668, 549, 17444, 427, 500, 3274, 8838, 3430, 804, 834, 6254, 3, 2, 489, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
For those records from the products and each product's manufacturer, a bar chart shows the distribution of name and code , and group by attribute headquarter, and could you sort in desc by the Name?
CREATE TABLE Manufacturers ( Code INTEGER, Name VARCHAR(255), Headquarter VARCHAR(255), Founder VARCHAR(255), Revenue REAL ) CREATE TABLE Products ( Code INTEGER, Name VARCHAR(255), Price DECIMAL, Manufacturer INTEGER )
SELECT T1.Name, T1.Code FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Headquarter, T1.Name ORDER BY T1.Name DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 15248, 7, 41, 3636, 3, 21342, 17966, 6, 5570, 584, 4280, 28027, 599, 25502, 201, 3642, 19973, 584, 4280, 28027, 599, 25502, 201, 3, 19145, 584, 4280, 28027, 599, 25502, 201, 19764, 17833...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 332, 5411, 23954, 6, 332, 5411, 22737, 21680, 7554, 6157, 332, 536, 3, 15355, 3162, 15248, 7, 6157, 332, 357, 9191, 332, 5411, 7296, 76, 8717, 450, 49, 3274, 332, 4416, 22737, 350, 4630, 6880, 272, 476, 3642, 19973, ...
Which home team has an Away team of fitzroy?
CREATE TABLE table_name_73 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_73 WHERE away_team = "fitzroy"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4552, 41, 5515, 834, 11650, 584, 4280, 28027, 6, 550, 834, 11650, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 234, 372, 65, 46, 71, 1343, 372, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 234, 834, 11650, 21680, 953, 834, 4350, 834, 4552, 549, 17444, 427, 550, 834, 11650, 3274, 96, 89, 5615, 8170, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What is the number of distinct publication dates?
CREATE TABLE publication ( Publication_Date VARCHAR )
SELECT COUNT(DISTINCT Publication_Date) FROM publication
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 5707, 41, 2575, 257, 834, 308, 342, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 381, 13, 6746, 5707, 5128, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 2575, 257, 834, 308, 342, 61, 21680, 5707, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Name the least number
CREATE TABLE table_22705586_1 (number INTEGER)
SELECT MIN(number) FROM table_22705586_1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 357, 17485, 3769, 3840, 834, 536, 41, 5525, 1152, 3, 21342, 17966, 61, 3, 32102, 32103, 32101, 32103, 5570, 8, 709, 381, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 17684, 599, 5525, 1152, 61, 21680, 953, 834, 357, 17485, 3769, 3840, 834, 536, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What was the handicap when the prize money was 120s?
CREATE TABLE table_30840 ( "Age" real, "Date" text, "Track" text, "Race" text, "Distance (miles)" text, "Jockey" text, "Handicap" text, "Field (No. horses)" text, "Place" text, "Time" text, "Prize Money" text, "+ Sweepstake" text, "Archer\u2019s winnings" text )
SELECT "Handicap" FROM table_30840 WHERE "Prize Money" = '120s'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1458, 26311, 41, 96, 188, 397, 121, 490, 6, 96, 308, 342, 121, 1499, 6, 96, 382, 16729, 121, 1499, 6, 96, 448, 3302, 121, 1499, 6, 96, 308, 23, 8389, 41, 8770, 7, 61, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 566, 232, 23, 4010, 121, 21680, 953, 834, 1458, 26311, 549, 17444, 427, 96, 7855, 776, 8833, 121, 3274, 3, 31, 15518, 7, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Which T.C. has a Year larger than 2007, and a D.C. of 21st?
CREATE TABLE table_name_26 ( tc VARCHAR, year VARCHAR, dc VARCHAR )
SELECT tc FROM table_name_26 WHERE year > 2007 AND dc = "21st"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2688, 41, 3, 17, 75, 584, 4280, 28027, 6, 215, 584, 4280, 28027, 6, 3, 26, 75, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 4073, 332, 5, 254, 5, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 17, 75, 21680, 953, 834, 4350, 834, 2688, 549, 17444, 427, 215, 2490, 4101, 3430, 3, 26, 75, 3274, 96, 2658, 7, 17, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
which round is u.s. open cup division semifinals
CREATE TABLE table_72098 ( "Year" real, "Division" text, "League" text, "Regular Season" text, "Playoffs" text, "U.S. Open Cup" text )
SELECT "U.S. Open Cup" FROM table_72098 WHERE "Playoffs" = 'Division Semifinals'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 18517, 3916, 41, 96, 476, 2741, 121, 490, 6, 96, 308, 23, 6610, 121, 1499, 6, 96, 2796, 9, 5398, 121, 1499, 6, 96, 17748, 4885, 7960, 121, 1499, 6, 96, 15800, 1647, 7, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 1265, 5, 134, 5, 2384, 3802, 121, 21680, 953, 834, 18517, 3916, 549, 17444, 427, 96, 15800, 1647, 7, 121, 3274, 3, 31, 308, 23, 6610, 22217, 12406, 7, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -10...
If the rings are 60.500, what is the parallel bars number?
CREATE TABLE table_18662026_1 ( parallel_bars VARCHAR, rings VARCHAR )
SELECT parallel_bars FROM table_18662026_1 WHERE rings = "60.500"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 25398, 26898, 2688, 834, 536, 41, 8449, 834, 1047, 7, 584, 4280, 28027, 6, 10631, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 156, 8, 10631, 33, 1640, 5, 2560, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 8449, 834, 1047, 7, 21680, 953, 834, 25398, 26898, 2688, 834, 536, 549, 17444, 427, 10631, 3274, 96, 3328, 5, 2560, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What was the score for a match before 13, and a home game on April 21, 2008?
CREATE TABLE table_name_11 ( score VARCHAR, date VARCHAR, match VARCHAR, home_away VARCHAR )
SELECT score FROM table_name_11 WHERE match < 13 AND home_away = "home" AND date = "april 21, 2008"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2596, 41, 2604, 584, 4280, 28027, 6, 833, 584, 4280, 28027, 6, 1588, 584, 4280, 28027, 6, 234, 834, 8006, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0...
[ 3, 23143, 14196, 2604, 21680, 953, 834, 4350, 834, 2596, 549, 17444, 427, 1588, 3, 2, 1179, 3430, 234, 834, 8006, 3274, 96, 5515, 121, 3430, 833, 3274, 96, 9, 2246, 40, 12026, 2628, 121, 1, -100, -100, -100, -100, -100, -100, -100, ...
What is the number of points associated with 165 laps?
CREATE TABLE table_47879 ( "Driver" text, "Team" text, "Laps" real, "Time/Retired" text, "Grid" real, "Points" text )
SELECT "Points" FROM table_47879 WHERE "Laps" = '165'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 591, 3940, 4440, 41, 96, 20982, 52, 121, 1499, 6, 96, 18699, 121, 1499, 6, 96, 3612, 102, 7, 121, 490, 6, 96, 13368, 87, 1649, 11809, 26, 121, 1499, 6, 96, 13313, 26, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 22512, 7, 121, 21680, 953, 834, 591, 3940, 4440, 549, 17444, 427, 96, 3612, 102, 7, 121, 3274, 3, 31, 22823, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is the Tournament, when the Opponent is Patricia Mayr-Achleitner?
CREATE TABLE table_14824 ( "Outcome" text, "Date" text, "Tournament" text, "Surface" text, "Opponent" text, "Score" text )
SELECT "Tournament" FROM table_14824 WHERE "Opponent" = 'patricia mayr-achleitner'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 24748, 2266, 41, 96, 15767, 287, 15, 121, 1499, 6, 96, 308, 342, 121, 1499, 6, 96, 382, 1211, 20205, 17, 121, 1499, 6, 96, 134, 450, 4861, 121, 1499, 6, 96, 667, 102, 9...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 382, 1211, 20205, 17, 121, 21680, 953, 834, 24748, 2266, 549, 17444, 427, 96, 667, 102, 9977, 121, 3274, 3, 31, 4665, 2234, 23, 9, 164, 52, 18, 1836, 109, 155, 687, 31, 1, -100, -100, -100, -100, -100, -100, ...
What is the Original Canadian air-date that was directed by Michael Tolkin?
CREATE TABLE table_55366 ( "Title" text, "Original story author" text, "Director" text, "Original U.S. air-date" text, "Original Canadian air-date" text )
SELECT "Original Canadian air-date" FROM table_55366 WHERE "Director" = 'michael tolkin'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3769, 519, 3539, 41, 96, 382, 155, 109, 121, 1499, 6, 96, 667, 3380, 10270, 733, 2291, 121, 1499, 6, 96, 23620, 127, 121, 1499, 6, 96, 667, 3380, 10270, 412, 5, 134, 5, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 667, 3380, 10270, 4151, 799, 18, 5522, 121, 21680, 953, 834, 3769, 519, 3539, 549, 17444, 427, 96, 23620, 127, 121, 3274, 3, 31, 51, 362, 9, 15, 40, 12, 40, 2917, 31, 1, -100, -100, -100, -100, -100, -100, -...
what is the number of patients whose primary disease is rash and procedure short title is other heart/pericard ops?
CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE demographic ( subject_id text, hadm_id t...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.diagnosis = "RASH" AND procedures.short_title = "Other heart/pericard ops"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 18730, 7, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 3, 447, 26, 1298, 834, 4978, 1499, 6, 710, 834, 21869, 1499, 6, 307, 834, 21869, 1499, 3, 61, 3, 32102, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 4293, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 4293, 5, 8399, 51, 834, 23, 26, 549, 17444,...
How many laps for sébastien bourdais, and a Grid smaller than 1?
CREATE TABLE table_name_72 (laps INTEGER, name VARCHAR, grid VARCHAR)
SELECT SUM(laps) FROM table_name_72 WHERE name = "sébastien bourdais" AND grid < 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 5865, 41, 8478, 7, 3, 21342, 17966, 6, 564, 584, 4280, 28027, 6, 8634, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 14941, 7, 21, 3, 7, 154, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 180, 6122, 599, 8478, 7, 61, 21680, 953, 834, 4350, 834, 5865, 549, 17444, 427, 564, 3274, 96, 7, 154, 4883, 15945, 3, 115, 1211, 26, 9, 159, 121, 3430, 8634, 3, 2, 209, 1, -100, -100, -100, -100, -100, -100, -1...
I want the average bronze for total of 19 and silver of 8 with rank of 31
CREATE TABLE table_name_12 ( bronze INTEGER, rank VARCHAR, total VARCHAR, silver VARCHAR )
SELECT AVG(bronze) FROM table_name_12 WHERE total = 19 AND silver = 8 AND rank = "31"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2122, 41, 13467, 3, 21342, 17966, 6, 11003, 584, 4280, 28027, 6, 792, 584, 4280, 28027, 6, 4294, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 27, 241, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 71, 17217, 599, 13711, 776, 61, 21680, 953, 834, 4350, 834, 2122, 549, 17444, 427, 792, 3274, 957, 3430, 4294, 3274, 505, 3430, 11003, 3274, 96, 3341, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Which class has less in quantity than 174 between the years 1921 23?
CREATE TABLE table_10412 ( "Class" text, "Type" text, "Quantity" real, "Date" text, "LNER Class" text, "1946 LNER nos." text )
SELECT "Class" FROM table_10412 WHERE "Quantity" < '174' AND "Date" = '1921–23'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 15442, 2122, 41, 96, 21486, 121, 1499, 6, 96, 25160, 121, 1499, 6, 96, 5991, 288, 485, 121, 490, 6, 96, 308, 342, 121, 1499, 6, 96, 434, 18206, 4501, 121, 1499, 6, 96, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 21486, 121, 21680, 953, 834, 15442, 2122, 549, 17444, 427, 96, 5991, 288, 485, 121, 3, 2, 3, 31, 27693, 31, 3430, 96, 308, 342, 121, 3274, 3, 31, 2294, 2658, 104, 2773, 31, 1, -100, -100, -100, -100, -100, -...
give me the birth date of patient stephanie suchan ?
CREATE TABLE lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text ) CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob text, gender text, ...
SELECT demographic.dob FROM demographic WHERE demographic.name = "Stephanie Suchan"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7690, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 2118, 23, 26, 1499, 6, 5059, 715, 1499, 6, 5692, 1499, 6, 701, 834, 15129, 1499, 6, 3783, 1499, 6, 5798, 1499...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 14798, 5, 26, 32, 115, 21680, 14798, 549, 17444, 427, 14798, 5, 4350, 3274, 96, 14337, 8237, 23, 15, 3900, 152, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Give me the kickoff time of the game that was aired on CBS against the St. Louis Cardinals.
CREATE TABLE table_11449311_2 (kickoff_ VARCHAR, a_ VARCHAR, tv VARCHAR, opponent VARCHAR)
SELECT kickoff_[a_] FROM table_11449311_2 WHERE tv = "CBS" AND opponent = "St. Louis Cardinals"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2596, 3628, 4271, 2596, 834, 357, 41, 157, 3142, 1647, 834, 584, 4280, 28027, 6, 3, 9, 834, 584, 4280, 28027, 6, 3, 17, 208, 584, 4280, 28027, 6, 15264, 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, 4583, 1647, 834, 6306, 9, 834, 908, 21680, 953, 834, 2596, 3628, 4271, 2596, 834, 357, 549, 17444, 427, 3, 17, 208, 3274, 96, 254, 4547, 121, 3430, 15264, 3274, 96, 134, 17, 5, 5181, 21967, 7, 121, 1, -100, -100, ...
Name the team for copa conmebol 1992 is round of 16
CREATE TABLE table_1167 ( "Team" text, "Copa Libertadores 1992" text, "Supercopa Sudamericana 1992" text, "Copa CONMEBOL 1992" text, "Recopa Sudamericana 1992" text, "Intercontinental Cup 1992" text )
SELECT "Team" FROM table_1167 WHERE "Copa CONMEBOL 1992" = 'Round of 16'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2596, 3708, 41, 96, 18699, 121, 1499, 6, 96, 3881, 102, 9, 12774, 17, 10097, 7, 9047, 121, 1499, 6, 96, 23290, 10845, 9, 9010, 23064, 29, 9, 9047, 121, 1499, 6, 96, 3881,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 18699, 121, 21680, 953, 834, 2596, 3708, 549, 17444, 427, 96, 3881, 102, 9, 8472, 4369, 279, 5194, 9047, 121, 3274, 3, 31, 448, 32, 1106, 13, 898, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Give me a histogram for what are the memories and carriers of phones?, list bars from low to high order.
CREATE TABLE phone ( Name text, Phone_ID int, Memory_in_G int, Carrier text, Price real ) CREATE TABLE market ( Market_ID int, District text, Num_of_employees int, Num_of_shops real, Ranking int ) CREATE TABLE phone_market ( Market_ID int, Phone_ID text, Num_of_stoc...
SELECT Carrier, AVG(Memory_in_G) FROM phone GROUP BY Carrier ORDER BY Carrier
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 951, 41, 5570, 1499, 6, 8924, 834, 4309, 16, 17, 6, 19159, 834, 77, 834, 517, 16, 17, 6, 1184, 6711, 1499, 6, 5312, 490, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1184, 6711, 6, 71, 17217, 599, 329, 15, 2528, 63, 834, 77, 834, 517, 61, 21680, 951, 350, 4630, 6880, 272, 476, 1184, 6711, 4674, 11300, 272, 476, 1184, 6711, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What was the match type in Budapest where the opponent was Luxembourg?
CREATE TABLE table_name_64 ( match_type VARCHAR, location VARCHAR, opponenent VARCHAR )
SELECT match_type FROM table_name_64 WHERE location = "budapest" AND opponenent = "luxembourg"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4389, 41, 1588, 834, 6137, 584, 4280, 28027, 6, 1128, 584, 4280, 28027, 6, 3, 28236, 29, 35, 295, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 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, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1588, 834, 6137, 21680, 953, 834, 4350, 834, 4389, 549, 17444, 427, 1128, 3274, 96, 11073, 9, 102, 222, 121, 3430, 3, 28236, 29, 35, 295, 3274, 96, 8387, 15, 51, 21054, 121, 1, -100, -100, -100, -100, -100, -100, ...
What is the soccer stadium with the varsity name is citadins?
CREATE TABLE table_27369069_4 (soccer_stadium VARCHAR, varsity_name VARCHAR)
SELECT soccer_stadium FROM table_27369069_4 WHERE varsity_name = "Citadins"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2555, 3420, 2394, 3951, 834, 591, 41, 7, 13377, 49, 834, 2427, 12925, 584, 4280, 28027, 6, 3, 31336, 834, 4350, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 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, 1, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 10749, 834, 2427, 12925, 21680, 953, 834, 2555, 3420, 2394, 3951, 834, 591, 549, 17444, 427, 3, 31336, 834, 4350, 3274, 96, 254, 155, 9, 2644, 7, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Which series number had the production code of 116
CREATE TABLE table_15938543_1 ( no_in_series VARCHAR, production_code VARCHAR )
SELECT no_in_series FROM table_15938543_1 WHERE production_code = 116
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1808, 4271, 4433, 4906, 834, 536, 41, 150, 834, 77, 834, 10833, 7, 584, 4280, 28027, 6, 999, 834, 4978, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 4073, 939, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 150, 834, 77, 834, 10833, 7, 21680, 953, 834, 1808, 4271, 4433, 4906, 834, 536, 549, 17444, 427, 999, 834, 4978, 3274, 3, 20159, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is guido bontempi's general classification when he has a stage of 6?
CREATE TABLE table_name_51 ( general_classification VARCHAR, winner VARCHAR, stage VARCHAR )
SELECT general_classification FROM table_name_51 WHERE winner = "guido bontempi" AND stage = "6"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 5553, 41, 879, 834, 4057, 2420, 584, 4280, 28027, 6, 4668, 584, 4280, 28027, 6, 1726, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 3, 7938, 2...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0...
[ 3, 23143, 14196, 879, 834, 4057, 2420, 21680, 953, 834, 4350, 834, 5553, 549, 17444, 427, 4668, 3274, 96, 7938, 26, 32, 2682, 15076, 23, 121, 3430, 1726, 3274, 96, 948, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
How many years did lin gaoyuan wu jiaji play mens doubles?
CREATE TABLE table_30314 ( "Year Location" text, "Mens Singles" text, "Womens Singles" text, "Mens Doubles" text, "Womens Doubles" text )
SELECT COUNT("Year Location") FROM table_30314 WHERE "Mens Doubles" = 'Lin Gaoyuan Wu Jiaji'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 23335, 2534, 41, 96, 476, 2741, 10450, 121, 1499, 6, 96, 329, 35, 7, 7871, 7, 121, 1499, 6, 96, 518, 32, 904, 7, 7871, 7, 121, 1499, 6, 96, 329, 35, 7, 8405, 7, 121, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 121, 476, 2741, 10450, 8512, 21680, 953, 834, 23335, 2534, 549, 17444, 427, 96, 329, 35, 7, 8405, 7, 121, 3274, 3, 31, 434, 77, 2776, 32, 63, 76, 152, 17792, 7802, 17815, 31, 1, -100, -100, -100,...
What is the Outcome when All England Open is the Opponent in the final?
CREATE TABLE table_name_67 (outcome VARCHAR, opponent_in_the_final VARCHAR)
SELECT outcome FROM table_name_67 WHERE opponent_in_the_final = "all england open"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3708, 41, 670, 287, 15, 584, 4280, 28027, 6, 15264, 834, 77, 834, 532, 834, 12406, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 3387, 287, 15...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 6138, 21680, 953, 834, 4350, 834, 3708, 549, 17444, 427, 15264, 834, 77, 834, 532, 834, 12406, 3274, 96, 1748, 3, 4606, 40, 232, 539, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
what is the to par when the score is 69-70-72-72=283?
CREATE TABLE table_name_56 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_56 WHERE score = 69 - 70 - 72 - 72 = 283
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4834, 41, 235, 834, 1893, 584, 4280, 28027, 6, 2604, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 125, 19, 8, 12, 260, 116, 8, 2604, 19, 3, 3951, 18, 2...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 12, 834, 1893, 21680, 953, 834, 4350, 834, 4834, 549, 17444, 427, 2604, 3274, 3, 3951, 3, 18, 2861, 3, 18, 9455, 3, 18, 9455, 3274, 204, 4591, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What year was the SL 350 Model?
CREATE TABLE table_79622 ( "Model" text, "Years" text, "Type/code" text, "Power@rpm" text, "Torque@rpm" text )
SELECT "Years" FROM table_79622 WHERE "Model" = 'sl 350'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4440, 4056, 357, 41, 96, 24663, 121, 1499, 6, 96, 476, 2741, 7, 121, 1499, 6, 96, 25160, 87, 4978, 121, 1499, 6, 96, 23553, 1741, 52, 2028, 121, 1499, 6, 96, 382, 127, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 476, 2741, 7, 121, 21680, 953, 834, 4440, 4056, 357, 549, 17444, 427, 96, 24663, 121, 3274, 3, 31, 7, 40, 10239, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
On what day of January was the record 10-29-2?
CREATE TABLE table_27539272_7 (january INTEGER, record VARCHAR)
SELECT MAX(january) FROM table_27539272_7 WHERE record = "10-29-2"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 25988, 3288, 2555, 357, 834, 940, 41, 7066, 76, 1208, 3, 21342, 17966, 6, 1368, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 461, 125, 239, 13, 1762, 47, 8, 1368, 9...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 7066, 76, 1208, 61, 21680, 953, 834, 25988, 3288, 2555, 357, 834, 940, 549, 17444, 427, 1368, 3274, 96, 1714, 18, 3166, 4949, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Name the D 43 and D 48 of r 28
CREATE TABLE table_name_45 ( d_43 VARCHAR, d_48 VARCHAR )
SELECT d_43 FROM table_name_45 WHERE d_48 = "r 28"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2128, 41, 3, 26, 834, 4906, 584, 4280, 28027, 6, 3, 26, 834, 3707, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 5570, 8, 309, 8838, 11, 309, 4678, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 26, 834, 4906, 21680, 953, 834, 4350, 834, 2128, 549, 17444, 427, 3, 26, 834, 3707, 3274, 96, 52, 2059, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What was the nationality of player picked no. 168?
CREATE TABLE table_2679061_9 ( nationality VARCHAR, pick__number VARCHAR )
SELECT nationality FROM table_2679061_9 WHERE pick__number = 168
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 357, 3708, 2394, 4241, 834, 1298, 41, 1157, 485, 584, 4280, 28027, 6, 1432, 834, 834, 5525, 1152, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 1157, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1157, 485, 21680, 953, 834, 357, 3708, 2394, 4241, 834, 1298, 549, 17444, 427, 1432, 834, 834, 5525, 1152, 3274, 3, 24274, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What tyre did Paul Russo have on his fastest lap?
CREATE TABLE table_53575 ( "Race" text, "Circuit" text, "Date" text, "Pole position" text, "Fastest lap" text, "Winning driver" text, "Constructor" text, "Tyre" text, "Report" text )
SELECT "Tyre" FROM table_53575 WHERE "Fastest lap" = 'paul russo'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 755, 2469, 3072, 41, 96, 448, 3302, 121, 1499, 6, 96, 254, 23, 52, 21560, 121, 1499, 6, 96, 308, 342, 121, 1499, 6, 96, 8931, 15, 1102, 121, 1499, 6, 96, 371, 9, 7, 4...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 382, 63, 60, 121, 21680, 953, 834, 755, 2469, 3072, 549, 17444, 427, 96, 371, 9, 7, 4377, 14941, 121, 3274, 3, 31, 102, 9, 83, 3, 4502, 7, 32, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Draw a scatterplot of school id vs acc_percent where school id is on the x-axis and points are colored by ACC_Road
CREATE TABLE university ( School_ID int, School text, Location text, Founded real, Affiliation text, Enrollment real, Nickname text, Primary_conference text ) CREATE TABLE basketball_match ( Team_ID int, School_ID int, Team_Name text, ACC_Regular_Season text, ACC_Per...
SELECT School_ID, ACC_Percent FROM basketball_match GROUP BY ACC_Road
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 3819, 41, 1121, 834, 4309, 16, 17, 6, 1121, 1499, 6, 10450, 1499, 6, 3, 20100, 490, 6, 71, 89, 8027, 23, 257, 1499, 6, 695, 4046, 297, 490, 6, 7486, 4350, 1499, 6, 14542, 834, 28...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 1121, 834, 4309, 6, 3, 14775, 834, 12988, 3728, 21680, 8498, 834, 19515, 350, 4630, 6880, 272, 476, 3, 14775, 834, 448, 32, 9, 26, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Give me line charts of worldwide gross the number of season over year season by major genres Away_team, and order Season from high to low order please.
CREATE TABLE injury_accident ( game_id int, id int, Player text, Injury text, Number_of_matches text, Source text ) CREATE TABLE game ( stadium_id int, id int, Season int, Date text, Home_team text, Away_team text, Score text, Competition text ) CREATE TABLE sta...
SELECT Season, COUNT(Season) FROM game GROUP BY Away_team, Season ORDER BY Season DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 2871, 834, 6004, 4215, 41, 467, 834, 23, 26, 16, 17, 6, 3, 23, 26, 16, 17, 6, 12387, 1499, 6, 28905, 1499, 6, 7720, 834, 858, 834, 19515, 15, 7, 1499, 6, 9149, 1499, 3, 61, 3, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 7960, 6, 2847, 17161, 599, 134, 15, 9, 739, 61, 21680, 467, 350, 4630, 6880, 272, 476, 71, 1343, 834, 11650, 6, 7960, 4674, 11300, 272, 476, 7960, 309, 25067, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Find the number of rooms located on each block floor.
CREATE TABLE room ( roomnumber number, roomtype text, blockfloor number, blockcode number, unavailable boolean ) CREATE TABLE appointment ( appointmentid number, patient number, prepnurse number, physician number, start time, end time, examinationroom text ) CREATE TABL...
SELECT COUNT(*), T1.blockfloor FROM block AS T1 JOIN room AS T2 ON T1.blockfloor = T2.blockfloor AND T1.blockcode = T2.blockcode GROUP BY T1.blockfloor
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 562, 41, 562, 5525, 1152, 381, 6, 562, 6137, 1499, 6, 2463, 20924, 381, 6, 2463, 4978, 381, 6, 24948, 3, 12840, 109, 152, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 1935, 201, 332, 5411, 10734, 20924, 21680, 2463, 6157, 332, 536, 3, 15355, 3162, 562, 6157, 332, 357, 9191, 332, 5411, 10734, 20924, 3274, 332, 4416, 10734, 20924, 3430, 332, 5411, 10734, 4978, 3274, 3...
What is the highest points won when the player is aravane reza ?
CREATE TABLE table_3051 ( "Seed" real, "Rank" real, "Player" text, "Points" real, "Points defending" real, "Points won" real, "New points" real, "Status" text )
SELECT MAX("Points won") FROM table_3051 WHERE "Player" = 'Aravane Rezaï'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1458, 5553, 41, 96, 18648, 26, 121, 490, 6, 96, 22557, 121, 490, 6, 96, 15800, 49, 121, 1499, 6, 96, 22512, 7, 121, 490, 6, 96, 22512, 7, 3, 20309, 121, 490, 6, 96, 2...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 4800, 4, 599, 121, 22512, 7, 751, 8512, 21680, 953, 834, 1458, 5553, 549, 17444, 427, 96, 15800, 49, 121, 3274, 3, 31, 188, 11852, 152, 15, 18100, 9, 2, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Who is the player from Auburn?
CREATE TABLE table_57079 ( "Player" text, "Nationality" text, "Position" text, "Years for Jazz" text, "School/Club Team" text )
SELECT "Player" FROM table_57079 WHERE "School/Club Team" = 'auburn'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 28363, 4440, 41, 96, 15800, 49, 121, 1499, 6, 96, 24732, 485, 121, 1499, 6, 96, 345, 32, 7, 4749, 121, 1499, 6, 96, 476, 2741, 7, 21, 12313, 121, 1499, 6, 96, 29364, 87...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 15800, 49, 121, 21680, 953, 834, 28363, 4440, 549, 17444, 427, 96, 29364, 87, 254, 11158, 2271, 121, 3274, 3, 31, 402, 7223, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Show different nationalities along with the number of hosts of each nationality in a bar chart.
CREATE TABLE party_host ( Party_ID int, Host_ID int, Is_Main_in_Charge bool ) CREATE TABLE party ( Party_ID int, Party_Theme text, Location text, First_year text, Last_year text, Number_of_hosts int ) CREATE TABLE host ( Host_ID int, Name text, Nationality text, Age...
SELECT Nationality, COUNT(*) FROM host GROUP BY Nationality
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1088, 834, 12675, 41, 3450, 834, 4309, 16, 17, 6, 1546, 7, 17, 834, 4309, 16, 17, 6, 27, 7, 834, 21978, 29, 834, 77, 834, 18947, 397, 3, 12840, 40, 3, 61, 3, 32102, 32103, 32102,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 868, 485, 6, 2847, 17161, 599, 1935, 61, 21680, 2290, 350, 4630, 6880, 272, 476, 868, 485, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What was the score when the spurs were the visitors?
CREATE TABLE table_54090 ( "Date" text, "Visitor" text, "Score" text, "Home" text, "Leading scorer" text, "Attendance" real, "Record" text )
SELECT "Score" FROM table_54090 WHERE "Visitor" = 'spurs'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 25379, 2394, 41, 96, 308, 342, 121, 1499, 6, 96, 553, 159, 155, 127, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 19040, 121, 1499, 6, 96, 2796, 9, 26, 53, 2604, 52, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 134, 9022, 121, 21680, 953, 834, 25379, 2394, 549, 17444, 427, 96, 553, 159, 155, 127, 121, 3274, 3, 31, 7, 3791, 7, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
give me the number of patients admitted in emergency who had the procedure titled endoscopic sphincterotomy and papillotomy.
CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text ) C...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.admission_type = "EMERGENCY" AND procedures.long_title = "Endoscopic sphincterotomy and papillotomy"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 18730, 7, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 3, 447, 26, 1298, 834, 4978, 1499, 6, 710, 834, 21869, 1499, 6, 307, 834, 21869, 1499, 3, 61, 3, 32102, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 4293, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 4293, 5, 8399, 51, 834, 23, 26, 549, 17444,...
When was the start of the leader's term who was born on January 8, 1859 and whose term ended in 1919?
CREATE TABLE table_35266 ( "Name" text, "Term start" real, "Term end" text, "Date of Birth" text, "Date of Death" text )
SELECT "Term start" FROM table_35266 WHERE "Term end" = '1919' AND "Date of Birth" = 'january 8, 1859'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2469, 357, 3539, 41, 96, 23954, 121, 1499, 6, 96, 11679, 456, 121, 490, 6, 96, 11679, 414, 121, 1499, 6, 96, 308, 342, 13, 26337, 121, 1499, 6, 96, 308, 342, 13, 12358, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 11679, 456, 121, 21680, 953, 834, 2469, 357, 3539, 549, 17444, 427, 96, 11679, 414, 121, 3274, 3, 31, 2294, 2294, 31, 3430, 96, 308, 342, 13, 26337, 121, 3274, 3, 31, 7066, 76, 1208, 9478, 507, 3390, 31, 1, ...
count the number of patients whose year of death is less than or equal to 2180 and drug name is verapamil sr?
CREATE TABLE lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text ) CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE prescriptions...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.dod_year <= "2180.0" AND prescriptions.drug = "Verapamil SR"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7690, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 2118, 23, 26, 1499, 6, 5059, 715, 1499, 6, 5692, 1499, 6, 701, 834, 15129, 1499, 6, 3783, 1499, 6, 5798, 1499...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 7744, 7, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 7744, 7, 5, 8399, 51, 834, 23, 26, 549...
Who is the player from a round larger than 5 and the college/junior/club team of Leningrad SKA (russia)?
CREATE TABLE table_name_94 ( player VARCHAR, round VARCHAR, college_junior_club_team VARCHAR )
SELECT player FROM table_name_94 WHERE round > 5 AND college_junior_club_team = "leningrad ska (russia)"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4240, 41, 1959, 584, 4280, 28027, 6, 1751, 584, 4280, 28027, 6, 1900, 834, 6959, 23, 127, 834, 13442, 834, 11650, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 1959, 21680, 953, 834, 4350, 834, 4240, 549, 17444, 427, 1751, 2490, 305, 3430, 1900, 834, 6959, 23, 127, 834, 13442, 834, 11650, 3274, 96, 26532, 29, 3987, 3, 10717, 41, 26165, 61, 121, 1, -100, -100, -100, -100, -...
Which opponent made it to the final round?
CREATE TABLE table_name_33 (opponents VARCHAR, round VARCHAR)
SELECT opponents FROM table_name_33 WHERE round = "final"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4201, 41, 32, 102, 9977, 7, 584, 4280, 28027, 6, 1751, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 15264, 263, 34, 12, 8, 804, 1751, 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, 16383, 21680, 953, 834, 4350, 834, 4201, 549, 17444, 427, 1751, 3274, 96, 12406, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
For those employees whose salary is in the range of 8000 and 12000 and commission is not null or department number does not equal to 40, visualize a line chart about the change of manager_id over hire_date , list X-axis from high to low order please.
CREATE TABLE employees ( EMPLOYEE_ID decimal(6,0), FIRST_NAME varchar(20), LAST_NAME varchar(25), EMAIL varchar(25), PHONE_NUMBER varchar(20), HIRE_DATE date, JOB_ID varchar(10), SALARY decimal(8,2), COMMISSION_PCT decimal(2,2), MANAGER_ID decimal(6,0), DEPARTMENT_ID decimal(...
SELECT HIRE_DATE, MANAGER_ID FROM employees WHERE SALARY BETWEEN 8000 AND 12000 AND COMMISSION_PCT <> "null" OR DEPARTMENT_ID <> 40 ORDER BY HIRE_DATE DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 1652, 41, 262, 5244, 5017, 476, 5080, 834, 4309, 7908, 1982, 599, 11071, 632, 201, 30085, 834, 567, 17683, 3, 4331, 4059, 599, 1755, 201, 301, 12510, 834, 567, 17683, 3, 4331, 4059, 59...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 454, 14132, 834, 308, 6048, 6, 283, 15610, 17966, 834, 4309, 21680, 1652, 549, 17444, 427, 180, 4090, 24721, 272, 7969, 518, 23394, 3, 25129, 3430, 586, 2313, 3430, 3, 6657, 329, 16994, 9215, 834, 4051, 382, 3, 2, 3...
Name the sum of rank for silver less than 0
CREATE TABLE table_name_55 (rank INTEGER, silver INTEGER)
SELECT SUM(rank) FROM table_name_55 WHERE silver < 0
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3769, 41, 6254, 3, 21342, 17966, 6, 4294, 3, 21342, 17966, 61, 3, 32102, 32103, 32101, 32103, 5570, 8, 4505, 13, 11003, 21, 4294, 705, 145, 3, 632, 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, 180, 6122, 599, 6254, 61, 21680, 953, 834, 4350, 834, 3769, 549, 17444, 427, 4294, 3, 2, 3, 632, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
How many titles were directed in series 79?
CREATE TABLE table_16782 ( "No. in series" real, "No. in season" real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text, "U.S. viewers (millions)" text )
SELECT COUNT("Directed by") FROM table_16782 WHERE "No. in series" = '79'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 27650, 4613, 41, 96, 4168, 5, 16, 939, 121, 490, 6, 96, 4168, 5, 16, 774, 121, 490, 6, 96, 382, 155, 109, 121, 1499, 6, 96, 23620, 15, 26, 57, 121, 1499, 6, 96, 24965...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 121, 23620, 15, 26, 57, 8512, 21680, 953, 834, 27650, 4613, 549, 17444, 427, 96, 4168, 5, 16, 939, 121, 3274, 3, 31, 4440, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the position of the player with a height of m (ft 6in)?
CREATE TABLE table_name_53 ( pos VARCHAR, height VARCHAR )
SELECT pos FROM table_name_53 WHERE height = "m (ft 6in)"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4867, 41, 3, 2748, 584, 4280, 28027, 6, 3902, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 1102, 13, 8, 1959, 28, 3, 9, 3902, 13, 3, 5...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 2748, 21680, 953, 834, 4350, 834, 4867, 549, 17444, 427, 3902, 3274, 96, 51, 41, 89, 17, 431, 77, 61, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Who drove for team Circle Sport?
CREATE TABLE table_539 ( "Team" text, "Car(s)" text, "#" real, "Driver(s)" text, "Primary Sponsor(s)" text, "Owner(s)" text, "Crew Chief" text, "Rounds" real )
SELECT "Driver(s)" FROM table_539 WHERE "Team" = 'Circle Sport'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 755, 3288, 41, 96, 18699, 121, 1499, 6, 96, 6936, 599, 7, 61, 121, 1499, 6, 96, 4663, 121, 490, 6, 96, 20982, 52, 599, 7, 61, 121, 1499, 6, 96, 7855, 51, 1208, 19254, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 20982, 52, 599, 7, 61, 121, 21680, 953, 834, 755, 3288, 549, 17444, 427, 96, 18699, 121, 3274, 3, 31, 254, 23, 52, 2482, 3349, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What year was the USS Cambridge laid down?
CREATE TABLE table_name_17 (laid_down VARCHAR, name VARCHAR)
SELECT laid_down FROM table_name_17 WHERE name = "uss cambridge"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2517, 41, 40, 6146, 834, 3035, 584, 4280, 28027, 6, 564, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 215, 47, 8, 837, 134, 10096, 7245, 323, 58, 1,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 7245, 834, 3035, 21680, 953, 834, 4350, 834, 2517, 549, 17444, 427, 564, 3274, 96, 302, 7, 5511, 9818, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What is the aircraft for 21 crews?
CREATE TABLE table_26134 ( "Type of unit" text, "Type of aircraft" text, "Number of aircraft" text, "Number of crews" text, "Men per crew" text, "Total personnel" real, "Officers" real, "Enlisted" real )
SELECT "Type of aircraft" FROM table_26134 WHERE "Number of crews" = '21'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2688, 23747, 41, 96, 25160, 13, 1745, 121, 1499, 6, 96, 25160, 13, 6442, 121, 1499, 6, 96, 567, 5937, 49, 13, 6442, 121, 1499, 6, 96, 567, 5937, 49, 13, 4627, 7, 121, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 25160, 13, 6442, 121, 21680, 953, 834, 2688, 23747, 549, 17444, 427, 96, 567, 5937, 49, 13, 4627, 7, 121, 3274, 3, 31, 2658, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What was the wicket ranking for the match featuring partners Mohammad Azharuddin and Ajay Jadeja and also a fielding team of Sri Lanka?
CREATE TABLE table_name_93 (wicket VARCHAR, batting_partners VARCHAR, fielding_team VARCHAR)
SELECT wicket FROM table_name_93 WHERE batting_partners = "mohammad azharuddin and ajay jadeja" AND fielding_team = "sri lanka"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4271, 41, 5981, 15, 17, 584, 4280, 28027, 6, 3, 27759, 834, 12300, 7, 584, 4280, 28027, 6, 1057, 53, 834, 11650, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 29719, 21680, 953, 834, 4350, 834, 4271, 549, 17444, 427, 3, 27759, 834, 12300, 7, 3274, 96, 51, 32, 1483, 11374, 3, 9, 172, 1024, 17237, 2644, 11, 3, 9, 1191, 63, 2662, 221, 1191, 121, 3430, 1057, 53, 834, 11650,...
How many races took place on the Indianapolis Motor Speedway track?
CREATE TABLE table_25240 ( "Rnd" real, "Date" text, "Race Name" text, "Length" text, "Track" text, "Location" text, "Type" text, "Pole Position" text, "Winning Driver" text )
SELECT COUNT("Race Name") FROM table_25240 WHERE "Track" = 'Indianapolis Motor Speedway'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1828, 11944, 41, 96, 448, 727, 121, 490, 6, 96, 308, 342, 121, 1499, 6, 96, 448, 3302, 5570, 121, 1499, 6, 96, 434, 4606, 189, 121, 1499, 6, 96, 382, 16729, 121, 1499, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 121, 448, 3302, 5570, 8512, 21680, 953, 834, 1828, 11944, 549, 17444, 427, 96, 382, 16729, 121, 3274, 3, 31, 22126, 29, 9, 15621, 5083, 9913, 1343, 31, 1, -100, -100, -100, -100, -100, -100, -100, ...
How many apartment bookings are there in total?
CREATE TABLE Apartment_Bookings ( Id VARCHAR )
SELECT COUNT(*) FROM Apartment_Bookings
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 15970, 834, 13355, 53, 7, 41, 27, 26, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 4579, 5038, 7, 33, 132, 16, 792, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2847, 17161, 599, 1935, 61, 21680, 15970, 834, 13355, 53, 7, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
besides kshana kshana , which other film is a suspense thriller ?
CREATE TABLE table_204_667 ( id number, "year" number, "film title" text, "genre" text, "cast" text, "notes" text )
SELECT "film title" FROM table_204_667 WHERE "film title" <> 'kshana kshana' AND "genre" = 'suspense thriller'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26363, 834, 3539, 940, 41, 3, 23, 26, 381, 6, 96, 1201, 121, 381, 6, 96, 9988, 2233, 121, 1499, 6, 96, 729, 60, 121, 1499, 6, 96, 5254, 121, 1499, 6, 96, 7977, 7, 121...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 9988, 2233, 121, 21680, 953, 834, 26363, 834, 3539, 940, 549, 17444, 427, 96, 9988, 2233, 121, 3, 2, 3155, 3, 31, 157, 7, 2618, 9, 3, 157, 7, 2618, 9, 31, 3430, 96, 729, 60, 121, 3274, 3, 31, 7, 302, 380...
how many hours has it passed since the first time that patient 027-85328 stayed in ward 996 during this hospital encounter?
CREATE TABLE lab ( labid number, patientunitstayid number, labname text, labresult number, labresulttime time ) CREATE TABLE intakeoutput ( intakeoutputid number, patientunitstayid number, cellpath text, celllabel text, cellvaluenumeric number, intakeoutputtime time ) CREAT...
SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', patient.unitadmittime)) FROM patient WHERE patient.uniquepid = '027-85328' AND patient.wardid = 996 AND patient.hospitaldischargetime IS NULL ORDER BY patient.unitadmittime LIMIT 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7690, 41, 50, 9824, 381, 6, 1868, 15129, 21545, 23, 26, 381, 6, 7690, 4350, 1499, 6, 50, 1999, 7, 83, 17, 381, 6, 50, 1999, 7, 83, 17, 715, 97, 3, 61, 3, 32102, 32103, 32102, 2...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 997, 1429, 41, 13733, 6245, 15382, 599, 31, 1454, 354, 31, 6, 3, 5211, 12224, 6431, 834, 382, 15382, 9960, 61, 3, 18, 3, 13733, 6245, 15382, 599, 31, 1454, 354, 31, 6, 1868, 5, 15129, 20466, 17, 715, 61, 61, 216...
Which college with a position of rb had a pick larger than 6 in round 28?
CREATE TABLE table_9606 ( "Round" real, "Pick" real, "Overall" real, "Name" text, "Position" text, "College" text )
SELECT "College" FROM table_9606 WHERE "Pick" > '6' AND "Position" = 'rb' AND "Round" = '28'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4314, 5176, 41, 96, 448, 32, 1106, 121, 490, 6, 96, 345, 3142, 121, 490, 6, 96, 23847, 1748, 121, 490, 6, 96, 23954, 121, 1499, 6, 96, 345, 32, 7, 4749, 121, 1499, 6, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 9939, 7883, 121, 21680, 953, 834, 4314, 5176, 549, 17444, 427, 96, 345, 3142, 121, 2490, 3, 31, 948, 31, 3430, 96, 345, 32, 7, 4749, 121, 3274, 3, 31, 52, 115, 31, 3430, 96, 448, 32, 1106, 121, 3274, 3, 31...
What is the away team from st kilda?
CREATE TABLE table_name_89 ( away_team VARCHAR, home_team VARCHAR )
SELECT away_team FROM table_name_89 WHERE home_team = "st kilda"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3914, 41, 550, 834, 11650, 584, 4280, 28027, 6, 234, 834, 11650, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 550, 372, 45, 3, 7, 17, 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, 550, 834, 11650, 21680, 953, 834, 4350, 834, 3914, 549, 17444, 427, 234, 834, 11650, 3274, 96, 7, 17, 3, 157, 173, 26, 9, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which Pinyin has a Chinese of ?
CREATE TABLE table_name_89 ( pinyin VARCHAR, chinese VARCHAR )
SELECT pinyin FROM table_name_89 WHERE chinese = "臺南"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3914, 41, 4522, 63, 77, 584, 4280, 28027, 6, 3, 1436, 1496, 15, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 4073, 8050, 63, 77, 65, 3, 9, 2830, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4522, 63, 77, 21680, 953, 834, 4350, 834, 3914, 549, 17444, 427, 3, 1436, 1496, 15, 3274, 96, 2, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
How many viewers did Episode 5 have?
CREATE TABLE table_12919003_2 (viewers_millions_ VARCHAR, episode VARCHAR)
SELECT viewers_millions_ FROM table_12919003_2 WHERE episode = "episode 5"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 22174, 11776, 4928, 834, 357, 41, 4576, 277, 834, 17030, 7, 834, 584, 4280, 28027, 6, 5640, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 13569, 410, 16112, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 13569, 834, 17030, 7, 834, 21680, 953, 834, 22174, 11776, 4928, 834, 357, 549, 17444, 427, 5640, 3274, 96, 15, 102, 159, 32, 221, 3, 17395, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the opponent for the date of august 5?
CREATE TABLE table_name_75 ( opponent VARCHAR, date VARCHAR )
SELECT opponent FROM table_name_75 WHERE date = "august 5"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3072, 41, 15264, 584, 4280, 28027, 6, 833, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 15264, 21, 8, 833, 13, 14663, 305, 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, 15264, 21680, 953, 834, 4350, 834, 3072, 549, 17444, 427, 833, 3274, 96, 402, 17198, 3, 17395, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What was the home team that scored 20.21 (141)?
CREATE TABLE table_52087 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Home team" FROM table_52087 WHERE "Home team score" = '20.21 (141)'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 25356, 4225, 41, 96, 19040, 372, 121, 1499, 6, 96, 19040, 372, 2604, 121, 1499, 6, 96, 188, 1343, 372, 121, 1499, 6, 96, 188, 1343, 372, 2604, 121, 1499, 6, 96, 553, 35, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 19040, 372, 121, 21680, 953, 834, 25356, 4225, 549, 17444, 427, 96, 19040, 372, 2604, 121, 3274, 3, 31, 1755, 5, 2658, 41, 26059, 61, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What are the different role codes for users, and how many users have each. Show bar chart.
CREATE TABLE Images ( image_id INTEGER, image_alt_text VARCHAR(80), image_name VARCHAR(40), image_url VARCHAR(255) ) CREATE TABLE Functional_Areas ( functional_area_code VARCHAR(15), parent_functional_area_code VARCHAR(15), functional_area_description VARCHAR(80) ) CREATE TABLE Roles ( ...
SELECT role_code, COUNT(*) FROM Users GROUP BY role_code
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 15180, 41, 1023, 834, 23, 26, 3, 21342, 17966, 6, 1023, 834, 2920, 834, 6327, 584, 4280, 28027, 599, 2079, 201, 1023, 834, 4350, 584, 4280, 28027, 599, 2445, 201, 1023, 834, 16137, 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, 1075, 834, 4978, 6, 2847, 17161, 599, 1935, 61, 21680, 13504, 350, 4630, 6880, 272, 476, 1075, 834, 4978, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Show the number of the musical nominee with award 'Bob Fosse' or 'Cleavant Derricks', and show by the total number in ascending please.
CREATE TABLE musical ( Musical_ID int, Name text, Year int, Award text, Category text, Nominee text, Result text ) CREATE TABLE actor ( Actor_ID int, Name text, Musical_ID int, Character text, Duration text, age int )
SELECT Nominee, COUNT(Nominee) FROM musical WHERE Award = "Tony Award" OR Award = "Cleavant Derricks" GROUP BY Nominee ORDER BY COUNT(Nominee)
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 4183, 41, 22307, 834, 4309, 16, 17, 6, 5570, 1499, 6, 2929, 16, 17, 6, 3677, 1499, 6, 17459, 1499, 6, 465, 8695, 15, 1499, 6, 3, 20119, 1499, 3, 61, 3, 32102, 32103, 32102, 205, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 465, 8695, 15, 6, 2847, 17161, 599, 4168, 8695, 15, 61, 21680, 4183, 549, 17444, 427, 3677, 3274, 96, 382, 106, 63, 3677, 121, 4674, 3677, 3274, 96, 254, 109, 15990, 660, 5206, 7, 121, 350, 4630, 6880, 272, 476, 4...
Which week had 39,056 people in attendance?
CREATE TABLE table_55181 ( "Week" text, "Date" text, "Opponent" text, "Result" text, "Kickoff [a ]" text, "Game site" text, "Attendance" text, "Record" text )
SELECT "Week" FROM table_55181 WHERE "Attendance" = '39,056'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3769, 2606, 536, 41, 96, 518, 10266, 121, 1499, 6, 96, 308, 342, 121, 1499, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 20119, 121, 1499, 6, 96, 439, 3142, 1647, 784, 9, 3...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 518, 10266, 121, 21680, 953, 834, 3769, 2606, 536, 549, 17444, 427, 96, 188, 17, 324, 26, 663, 121, 3274, 3, 31, 3288, 6, 3076, 948, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What Kerry number does Taylor county have with more than 65 others#?
CREATE TABLE table_68133 ( "County" text, "Kerry%" text, "Kerry#" real, "Bush%" text, "Bush#" real, "Others%" text, "Others#" real )
SELECT COUNT("Kerry#") FROM table_68133 WHERE "County" = 'taylor' AND "Others#" > '65'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3651, 22974, 41, 96, 10628, 63, 121, 1499, 6, 96, 439, 49, 651, 1454, 121, 1499, 6, 96, 439, 49, 651, 4663, 121, 490, 6, 96, 279, 8489, 1454, 121, 1499, 6, 96, 279, 848...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 121, 439, 49, 651, 4663, 8512, 21680, 953, 834, 3651, 22974, 549, 17444, 427, 96, 10628, 63, 121, 3274, 3, 31, 17, 9, 63, 322, 31, 3430, 96, 667, 189, 277, 4663, 121, 2490, 3, 31, 4122, 31, 1, ...
What is Finish, when To Par is less than 14, and when Year(s) Won is '1952 , 1963'?
CREATE TABLE table_name_85 ( finish VARCHAR, to_par VARCHAR, year_s__won VARCHAR )
SELECT finish FROM table_name_85 WHERE to_par < 14 AND year_s__won = "1952 , 1963"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4433, 41, 1992, 584, 4280, 28027, 6, 12, 834, 1893, 584, 4280, 28027, 6, 215, 834, 7, 834, 834, 210, 106, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 1992, 21680, 953, 834, 4350, 834, 4433, 549, 17444, 427, 12, 834, 1893, 3, 2, 968, 3430, 215, 834, 7, 834, 834, 210, 106, 3274, 96, 22464, 357, 3, 6, 20613, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, ...
wendlinger finished 8th . who finished next ?
CREATE TABLE table_204_788 ( id number, "pos" text, "no" number, "driver" text, "constructor" text, "laps" number, "time/retired" text, "grid" number, "points" number )
SELECT "driver" FROM table_204_788 WHERE "pos" = 8 + 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 26363, 834, 3940, 927, 41, 3, 23, 26, 381, 6, 96, 2748, 121, 1499, 6, 96, 29, 32, 121, 381, 6, 96, 13739, 52, 121, 1499, 6, 96, 15982, 5317, 121, 1499, 6, 96, 8478, 7...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 13739, 52, 121, 21680, 953, 834, 26363, 834, 3940, 927, 549, 17444, 427, 96, 2748, 121, 3274, 505, 1768, 209, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What was the word for the episode that aired February 11?
CREATE TABLE table_27995 ( "Episode #" real, "The W\u00f8rd" text, "Guest" text, "Introductory phrase" text, "Original airdate" text, "Production code" real )
SELECT "The W\u00f8rd" FROM table_27995 WHERE "Original airdate" = 'February 11'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 357, 4440, 3301, 41, 96, 427, 102, 159, 32, 221, 1713, 121, 490, 6, 96, 634, 549, 2, 76, 1206, 89, 927, 52, 26, 121, 1499, 6, 96, 9105, 222, 121, 1499, 6, 96, 1570, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 634, 549, 2, 76, 1206, 89, 927, 52, 26, 121, 21680, 953, 834, 357, 4440, 3301, 549, 17444, 427, 96, 667, 3380, 10270, 799, 5522, 121, 3274, 3, 31, 31122, 850, 31, 1, -100, -100, -100, -100, -100, -100, -100, ...
What was the new membership total at the nchc (men only) conference?
CREATE TABLE table_27671835_3 ( new_membership_total VARCHAR, conference VARCHAR )
SELECT new_membership_total FROM table_27671835_3 WHERE conference = "NCHC (men only)"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2555, 3708, 2606, 2469, 834, 519, 41, 126, 834, 12066, 2009, 834, 235, 1947, 584, 4280, 28027, 6, 2542, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 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, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 126, 834, 12066, 2009, 834, 235, 1947, 21680, 953, 834, 2555, 3708, 2606, 2469, 834, 519, 549, 17444, 427, 2542, 3274, 96, 8137, 8095, 41, 904, 163, 61, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Who is the competitor with a downhill of more than 55, and 1st DQ run?
CREATE TABLE table_50574 ( "Place" text, "Downhill" real, "Competitor" text, "1st run" text, "2nd run" text, "Points" text )
SELECT "Competitor" FROM table_50574 WHERE "Downhill" > '55' AND "1st run" = 'dq'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1752, 3436, 591, 41, 96, 345, 11706, 121, 1499, 6, 96, 308, 9197, 6321, 121, 490, 6, 96, 5890, 19427, 127, 121, 1499, 6, 96, 536, 7, 17, 661, 121, 1499, 6, 96, 357, 727...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 5890, 19427, 127, 121, 21680, 953, 834, 1752, 3436, 591, 549, 17444, 427, 96, 308, 9197, 6321, 121, 2490, 3, 31, 3769, 31, 3430, 96, 536, 7, 17, 661, 121, 3274, 3, 31, 26, 1824, 31, 1, -100, -100, -100, -100...
What is the Outcome of the Melbourne Tournament?
CREATE TABLE table_35163 ( "Outcome" text, "Date" text, "Tournament" text, "Surface" text, "Partner" text, "Opponents" text, "Score" text )
SELECT "Outcome" FROM table_35163 WHERE "Tournament" = 'melbourne'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2469, 2938, 519, 41, 96, 15767, 287, 15, 121, 1499, 6, 96, 308, 342, 121, 1499, 6, 96, 382, 1211, 20205, 17, 121, 1499, 6, 96, 134, 450, 4861, 121, 1499, 6, 96, 13725, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 15767, 287, 15, 121, 21680, 953, 834, 2469, 2938, 519, 549, 17444, 427, 96, 382, 1211, 20205, 17, 121, 3274, 3, 31, 2341, 26255, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
what is the number of patients admitted in hospital before 2180 who had albumin, pleural lab test?
CREATE TABLE lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text ) CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob text, gender text, ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.admityear < "2180" AND lab.label = "Albumin, Pleural"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7690, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 2118, 23, 26, 1499, 6, 5059, 715, 1499, 6, 5692, 1499, 6, 701, 834, 15129, 1499, 6, 3783, 1499, 6, 5798, 1499...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 7690, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 7690, 5, 8399, 51, 834, 23, 26, 549, 17444,...
Which Venue has a Goal larger than 3, and a Competition of 2011 afc asian cup?
CREATE TABLE table_15450 ( "Goal" real, "Date" text, "Venue" text, "Score" text, "Result" text, "Competition" text )
SELECT "Venue" FROM table_15450 WHERE "Goal" > '3' AND "Competition" = '2011 afc asian cup'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 1808, 10593, 41, 96, 6221, 138, 121, 490, 6, 96, 308, 342, 121, 1499, 6, 96, 553, 35, 76, 15, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 20119, 121, 1499, 6, 96, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 553, 35, 76, 15, 121, 21680, 953, 834, 1808, 10593, 549, 17444, 427, 96, 6221, 138, 121, 2490, 3, 31, 519, 31, 3430, 96, 5890, 4995, 4749, 121, 3274, 3, 31, 13907, 3, 9, 89, 75, 3, 9, 10488, 4119, 31, 1, ...
How many times did the team with an average start of 18.9 make the top 10?
CREATE TABLE table_name_82 (top_10 INTEGER, avg_start VARCHAR)
SELECT SUM(top_10) FROM table_name_82 WHERE avg_start = 18.9
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4613, 41, 2916, 834, 1714, 3, 21342, 17966, 6, 3, 9, 208, 122, 834, 10208, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 648, 410, 8, 372, 28, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 180, 6122, 599, 2916, 834, 16968, 21680, 953, 834, 4350, 834, 4613, 549, 17444, 427, 3, 9, 208, 122, 834, 10208, 3274, 12265, 1298, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
How many entries for highest when the low team was baltimore rays?
CREATE TABLE table_2937 ( "Season" real, "Lowest" real, "Low Team" text, "Average" real, "Highest" real, "High Team" text, "2nd Highest" real, "2nd Team" text )
SELECT COUNT("Highest") FROM table_2937 WHERE "Low Team" = 'Baltimore Rays'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3166, 4118, 41, 96, 134, 15, 9, 739, 121, 490, 6, 96, 434, 32, 12425, 121, 490, 6, 96, 434, 2381, 2271, 121, 1499, 6, 96, 188, 624, 545, 121, 490, 6, 96, 21417, 222, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 121, 21417, 222, 8512, 21680, 953, 834, 3166, 4118, 549, 17444, 427, 96, 434, 2381, 2271, 121, 3274, 3, 31, 279, 2920, 23, 3706, 8279, 7, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Draw a bar chart of manager name versus how many manager name
CREATE TABLE company ( Company_ID int, Rank int, Company text, Headquarters text, Main_Industry text, Sales_billion real, Profits_billion real, Assets_billion real, Market_Value real ) CREATE TABLE station_company ( Station_ID int, Company_ID int, Rank_of_the_Year int ) ...
SELECT Manager_Name, COUNT(Manager_Name) FROM gas_station GROUP BY Manager_Name
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 349, 41, 1958, 834, 4309, 16, 17, 6, 3, 22557, 16, 17, 6, 1958, 1499, 6, 31282, 1499, 6, 5140, 834, 1570, 8655, 8224, 1499, 6, 7107, 834, 115, 14916, 490, 6, 14717, 7, 834, 115, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 3440, 834, 23954, 6, 2847, 17161, 599, 27272, 834, 23954, 61, 21680, 1807, 834, 6682, 350, 4630, 6880, 272, 476, 3440, 834, 23954, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What Silver has a Golf of Li AO?
CREATE TABLE table_name_20 ( silver VARCHAR, gold VARCHAR )
SELECT silver FROM table_name_20 WHERE gold = "li ao"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1755, 41, 4294, 584, 4280, 28027, 6, 2045, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 5642, 65, 3, 9, 7063, 13, 1414, 3, 17249, 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, 4294, 21680, 953, 834, 4350, 834, 1755, 549, 17444, 427, 2045, 3274, 96, 40, 23, 3, 9, 32, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What's the post position when the lengths behind is 0?
CREATE TABLE table_76593 ( "Finish Position" text, "Lengths Behind" text, "Post Position" real, "Horse name" text, "Trainer" text, "Jockey" text, "Owner" text, "Post Time Odds" text )
SELECT AVG("Post Position") FROM table_76593 WHERE "Lengths Behind" = '0'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3959, 3390, 519, 41, 96, 371, 77, 1273, 14258, 121, 1499, 6, 96, 434, 4606, 189, 7, 17088, 121, 1499, 6, 96, 22507, 14258, 121, 490, 6, 96, 566, 127, 7, 15, 564, 121, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 71, 17217, 599, 121, 22507, 14258, 8512, 21680, 953, 834, 3959, 3390, 519, 549, 17444, 427, 96, 434, 4606, 189, 7, 17088, 121, 3274, 3, 31, 632, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the latest date for a game over 69 with a St. Louis Blues opponent?
CREATE TABLE table_35231 ( "Game" real, "Date" real, "Opponent" text, "Score" text, "Location/attendance" text, "Record" text )
SELECT MAX("Date") FROM table_35231 WHERE "Game" > '69' AND "Opponent" = 'st. louis blues'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2469, 357, 3341, 41, 96, 23055, 121, 490, 6, 96, 308, 342, 121, 490, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 434, 32, 75, 257, 87, 15116, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 4800, 4, 599, 121, 308, 342, 8512, 21680, 953, 834, 2469, 357, 3341, 549, 17444, 427, 96, 23055, 121, 2490, 3, 31, 3951, 31, 3430, 96, 667, 102, 9977, 121, 3274, 3, 31, 7, 17, 5, 16585, 159, 1692, 7, 31, 1, -1...
What is the name of the museum located in Malta with no associated field digs?
CREATE TABLE table_35683 ( "Name" text, "Town/City" text, "Region" text, "On Dinosaur Trail?" text, "Education programs/ Guided tours?" text, "Associated Field Digs?" text )
SELECT "Name" FROM table_35683 WHERE "Associated Field Digs?" = 'no' AND "Town/City" = 'malta'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2469, 3651, 519, 41, 96, 23954, 121, 1499, 6, 96, 382, 9197, 87, 254, 485, 121, 1499, 6, 96, 17748, 23, 106, 121, 1499, 6, 96, 7638, 3181, 32, 7, 9, 450, 8939, 4609, 14...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 23954, 121, 21680, 953, 834, 2469, 3651, 519, 549, 17444, 427, 96, 26138, 7257, 18759, 7, 4609, 3274, 3, 31, 29, 32, 31, 3430, 96, 382, 9197, 87, 254, 485, 121, 3274, 3, 31, 1982, 17, 9, 31, 1, -100, -100, ...
What's the voltage for the pentium dual-core e2140?
CREATE TABLE table_name_49 ( voltage VARCHAR, model_number VARCHAR )
SELECT voltage FROM table_name_49 WHERE model_number = "pentium dual-core e2140"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3647, 41, 10594, 584, 4280, 28027, 6, 825, 834, 5525, 1152, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 31, 7, 8, 10594, 21, 8, 4550, 17, 2552, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 10594, 21680, 953, 834, 4350, 834, 3647, 549, 17444, 427, 825, 834, 5525, 1152, 3274, 96, 102, 295, 2552, 7013, 18, 9022, 3, 15, 2658, 2445, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
How much Played has an Against larger than 37, and a Lost of 15, and Points smaller than 11?
CREATE TABLE table_name_63 (played INTEGER, points VARCHAR, against VARCHAR, lost VARCHAR)
SELECT SUM(played) FROM table_name_63 WHERE against > 37 AND lost = 15 AND points < 11
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3891, 41, 4895, 15, 26, 3, 21342, 17966, 6, 979, 584, 4280, 28027, 6, 581, 584, 4280, 28027, 6, 1513, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 571, 2...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 180, 6122, 599, 4895, 15, 26, 61, 21680, 953, 834, 4350, 834, 3891, 549, 17444, 427, 581, 2490, 6862, 3430, 1513, 3274, 627, 3430, 979, 3, 2, 850, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
List the name of actors in ascending alphabetical order.
CREATE TABLE actor ( Name VARCHAR )
SELECT Name FROM actor ORDER BY Name
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7556, 41, 5570, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 6792, 8, 564, 13, 10485, 16, 25200, 53, 20688, 1950, 455, 5, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 5570, 21680, 7556, 4674, 11300, 272, 476, 5570, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
When a private individual is the source and 018 is the story number what is the total footage remaining from missing episodes (mm:ss)?
CREATE TABLE table_22662 ( "Doctor" text, "Season" text, "Story no." text, "Serial" text, "Number of episodes" text, "Total footage remaining from missing episodes (mm:ss)" text, "Missing episodes with recovered footage" text, "Country/Territory" text, "Source" text, "Format" tex...
SELECT "Total footage remaining from missing episodes (mm:ss)" FROM table_22662 WHERE "Story no." = '018' AND "Source" = 'Private individual'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2884, 3539, 357, 41, 96, 4135, 5317, 121, 1499, 6, 96, 134, 15, 9, 739, 121, 1499, 6, 96, 134, 10972, 150, 535, 1499, 6, 96, 134, 15, 12042, 121, 1499, 6, 96, 567, 5937...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 3696, 1947, 13420, 4080, 45, 3586, 13562, 41, 635, 10, 7, 7, 61, 121, 21680, 953, 834, 2884, 3539, 357, 549, 17444, 427, 96, 134, 10972, 150, 535, 3274, 3, 31, 632, 2606, 31, 3430, 96, 23799, 121, 3274, 3, 3...
What is the total rank with a total larger than 2, and less than 0 gold
CREATE TABLE table_66721 ( "Rank" real, "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real )
SELECT SUM("Rank") FROM table_66721 WHERE "Total" > '2' AND "Gold" < '0'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3539, 940, 2658, 41, 96, 22557, 121, 490, 6, 96, 567, 257, 121, 1499, 6, 96, 23576, 121, 490, 6, 96, 134, 173, 624, 121, 490, 6, 96, 22780, 29, 776, 121, 490, 6, 96, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 180, 6122, 599, 121, 22557, 8512, 21680, 953, 834, 3539, 940, 2658, 549, 17444, 427, 96, 3696, 1947, 121, 2490, 3, 31, 357, 31, 3430, 96, 23576, 121, 3, 2, 3, 31, 632, 31, 1, -100, -100, -100, -100, -100, -100, ...
body mass index ( bmi ) > 30 kg / m2
CREATE TABLE table_train_148 ( "id" int, "hemoglobin_a1c_hba1c" float, "renal_disease" bool, "hematocrit_hct" float, "serum_creatinine" float, "albumin" float, "body_mass_index_bmi" float, "NOUSE" float )
SELECT * FROM table_train_148 WHERE body_mass_index_bmi >= 30
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 9719, 834, 24748, 41, 96, 23, 26, 121, 16, 17, 6, 96, 6015, 32, 14063, 77, 834, 9, 536, 75, 834, 107, 115, 9, 536, 75, 121, 3, 12660, 6, 96, 1536, 138, 834, 26, 159, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1429, 21680, 953, 834, 9719, 834, 24748, 549, 17444, 427, 643, 834, 2754, 7, 834, 18288, 834, 115, 51, 23, 2490, 2423, 604, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the 2004 value with A in 2005, A in 2008, and lq in 2009?
CREATE TABLE table_48546 ( "Tournament" text, "2002" text, "2003" text, "2004" text, "2005" text, "2006" text, "2007" text, "2008" text, "2009" text, "2010" text, "Career SR" text, "Career W\u2013L" text )
SELECT "2004" FROM table_48546 WHERE "2005" = 'a' AND "2008" = 'a' AND "2009" = 'lq'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 591, 4433, 4448, 41, 96, 382, 1211, 20205, 17, 121, 1499, 6, 96, 24898, 121, 1499, 6, 96, 23948, 121, 1499, 6, 96, 21653, 121, 1499, 6, 96, 22594, 121, 1499, 6, 96, 21196...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 21653, 121, 21680, 953, 834, 591, 4433, 4448, 549, 17444, 427, 96, 22594, 121, 3274, 3, 31, 9, 31, 3430, 96, 16128, 121, 3274, 3, 31, 9, 31, 3430, 96, 16660, 121, 3274, 3, 31, 40, 1824, 31, 1, -100, -100, ...
What is the zip code of the address where the teacher with first name "Lyla" lives?
CREATE TABLE Teachers (address_id VARCHAR, first_name VARCHAR); CREATE TABLE Addresses (zip_postcode VARCHAR, address_id VARCHAR)
SELECT T1.zip_postcode FROM Addresses AS T1 JOIN Teachers AS T2 ON T1.address_id = T2.address_id WHERE T2.first_name = "Lyla"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 18991, 41, 9, 26, 12039, 834, 23, 26, 584, 4280, 28027, 6, 166, 834, 4350, 584, 4280, 28027, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 13246, 15, 7, 41, 13453, 834, 59...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 332, 5411, 13453, 834, 5950, 4978, 21680, 13246, 15, 7, 6157, 332, 536, 3, 15355, 3162, 18991, 6157, 332, 357, 9191, 332, 5411, 9, 26, 12039, 834, 23, 26, 3274, 332, 4416, 9, 26, 12039, 834, 23, 26, 549, 17444, 42...
List all payment methods and number of payments using each payment methods Plot them as bar chart, and could you display in descending by the bar?
CREATE TABLE Customer_Payments ( customer_id INTEGER, datetime_payment DATETIME, payment_method_code VARCHAR(10), amount_payment DOUBLE ) CREATE TABLE Lessons ( lesson_id INTEGER, customer_id INTEGER, lesson_status_code VARCHAR(15), staff_id INTEGER, vehicle_id INTEGER, lesson_d...
SELECT payment_method_code, COUNT(*) FROM Customer_Payments GROUP BY payment_method_code ORDER BY payment_method_code DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7327, 834, 19702, 4128, 41, 884, 834, 23, 26, 3, 21342, 17966, 6, 833, 715, 834, 21752, 309, 6048, 382, 15382, 6, 1942, 834, 23152, 834, 4978, 584, 4280, 28027, 599, 16968, 6, 866, 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, 1942, 834, 23152, 834, 4978, 6, 2847, 17161, 599, 1935, 61, 21680, 7327, 834, 19702, 4128, 350, 4630, 6880, 272, 476, 1942, 834, 23152, 834, 4978, 4674, 11300, 272, 476, 1942, 834, 23152, 834, 4978, 309, 25067, 1, -10...
What's the wold ranking of the index by Transparency International?
CREATE TABLE table_19948664_1 ( world_ranking__1_ VARCHAR, author___editor___source VARCHAR )
SELECT world_ranking__1_ FROM table_19948664_1 WHERE author___editor___source = "Transparency International"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2294, 4240, 3840, 4389, 834, 536, 41, 296, 834, 6254, 53, 834, 834, 536, 834, 584, 4280, 28027, 6, 2291, 834, 834, 834, 11272, 127, 834, 834, 834, 7928, 584, 4280, 28027, 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, 296, 834, 6254, 53, 834, 834, 536, 834, 21680, 953, 834, 2294, 4240, 3840, 4389, 834, 536, 549, 17444, 427, 2291, 834, 834, 834, 11272, 127, 834, 834, 834, 7928, 3274, 96, 18474, 1893, 4392, 1331, 121, 1, -100, -100...
Name the number of rank world for bhutan
CREATE TABLE table_25053 ( "Rank Subcontinent" real, "Rank Asia" real, "Rank World" real, "Country" text, "2011 GDP (PPP) billions of USD" text )
SELECT COUNT("Rank World") FROM table_25053 WHERE "Country" = 'Bhutan'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 11434, 4867, 41, 96, 22557, 3325, 27339, 121, 490, 6, 96, 22557, 3826, 121, 490, 6, 96, 22557, 1150, 121, 490, 6, 96, 10628, 651, 121, 1499, 6, 96, 13907, 11284, 41, 345, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 121, 22557, 1150, 8512, 21680, 953, 834, 11434, 4867, 549, 17444, 427, 96, 10628, 651, 121, 3274, 3, 31, 279, 13985, 152, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
who directed s01e13
CREATE TABLE table_73199 ( "No." real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text, "Production code" real, "Television order" text )
SELECT "Directed by" FROM table_73199 WHERE "Television order" = 'S01E13'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4552, 19479, 41, 96, 4168, 535, 490, 6, 96, 382, 155, 109, 121, 1499, 6, 96, 23620, 15, 26, 57, 121, 1499, 6, 96, 24965, 324, 57, 121, 1499, 6, 96, 667, 3380, 10270, 79...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 23620, 15, 26, 57, 121, 21680, 953, 834, 4552, 19479, 549, 17444, 427, 96, 382, 400, 6610, 455, 121, 3274, 3, 31, 134, 4542, 427, 2368, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the highest rank for the airport with a code of HKG/VHHH?
CREATE TABLE table_name_56 ( rank INTEGER, code__iata_icao_ VARCHAR )
SELECT MAX(rank) FROM table_name_56 WHERE code__iata_icao_ = "hkg/vhhh"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4834, 41, 11003, 3, 21342, 17966, 6, 1081, 834, 834, 17221, 834, 2617, 32, 834, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 2030, 11003, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 6254, 61, 21680, 953, 834, 4350, 834, 4834, 549, 17444, 427, 1081, 834, 834, 17221, 834, 2617, 32, 834, 3274, 96, 107, 8711, 87, 208, 24303, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What episode number in the season was 'my comedy show'?
CREATE TABLE table_2764 ( "Series #" real, "Season #" real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text, "Production code" real, "U.S. viewers (millions)" text )
SELECT "Season #" FROM table_2764 WHERE "Title" = 'My Comedy Show'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2555, 4389, 41, 96, 12106, 7, 1713, 121, 490, 6, 96, 134, 15, 9, 739, 1713, 121, 490, 6, 96, 382, 155, 109, 121, 1499, 6, 96, 23620, 15, 26, 57, 121, 1499, 6, 96, 249...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 134, 15, 9, 739, 1713, 121, 21680, 953, 834, 2555, 4389, 549, 17444, 427, 96, 382, 155, 109, 121, 3274, 3, 31, 7008, 26984, 3111, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Give me the comparison about the average of Weight over the Sex , and group by attribute Sex by a bar chart, I want to sort X in ascending order.
CREATE TABLE people ( People_ID int, Sex text, Name text, Date_of_Birth text, Height real, Weight real ) CREATE TABLE candidate ( Candidate_ID int, People_ID int, Poll_Source text, Date text, Support_rate real, Consider_rate real, Oppose_rate real, Unsure_rate re...
SELECT Sex, AVG(Weight) FROM people GROUP BY Sex ORDER BY Sex
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 151, 41, 2449, 834, 4309, 16, 17, 6, 679, 226, 1499, 6, 5570, 1499, 6, 7678, 834, 858, 834, 279, 23, 52, 189, 1499, 6, 24231, 490, 6, 14230, 490, 3, 61, 3, 32102, 32103, 32102, 2...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 679, 226, 6, 71, 17217, 599, 1326, 2632, 61, 21680, 151, 350, 4630, 6880, 272, 476, 679, 226, 4674, 11300, 272, 476, 679, 226, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
what is the margin of victory for the tournament travelers championship?
CREATE TABLE table_name_30 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_30 WHERE tournament = "travelers championship"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1458, 41, 1635, 122, 77, 834, 858, 834, 7287, 10972, 584, 4280, 28027, 6, 5892, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 125, 19, 8, 6346, 13, 6224, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 6346, 834, 858, 834, 7287, 10972, 21680, 953, 834, 4350, 834, 1458, 549, 17444, 427, 5892, 3274, 96, 25687, 277, 10183, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What Date is Northern Spur Breeders' Cup Stakes Race?
CREATE TABLE table_name_31 ( date VARCHAR, race VARCHAR )
SELECT date FROM table_name_31 WHERE race = "northern spur breeders' cup stakes"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3341, 41, 833, 584, 4280, 28027, 6, 1964, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 7678, 19, 5961, 17740, 28814, 277, 31, 3802, 180, 4914, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 833, 21680, 953, 834, 4350, 834, 3341, 549, 17444, 427, 1964, 3274, 96, 29, 127, 189, 49, 29, 18421, 8885, 277, 31, 4119, 8474, 7, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What is the MIntage after 2006 of the Ruby-Throated Hummingbird Theme coin?
CREATE TABLE table_79102 ( "Year" real, "Theme" text, "Face Value" text, "Weight" text, "Diameter" text, "Mintage" real, "Issue Price" text )
SELECT MAX("Mintage") FROM table_79102 WHERE "Year" > '2006' AND "Theme" = 'ruby-throated hummingbird'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4440, 14388, 41, 96, 476, 2741, 121, 490, 6, 96, 634, 526, 121, 1499, 6, 96, 371, 3302, 12419, 121, 1499, 6, 96, 1326, 2632, 121, 1499, 6, 96, 23770, 4401, 121, 1499, 6, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 4800, 4, 599, 121, 12858, 6505, 8512, 21680, 953, 834, 4440, 14388, 549, 17444, 427, 96, 476, 2741, 121, 2490, 3, 31, 21196, 31, 3430, 96, 634, 526, 121, 3274, 3, 31, 14446, 63, 18, 8514, 920, 3, 107, 23434, 9414,...