NATURAL_LANG
stringlengths
0
446
SCHEMA
stringlengths
27
2.21k
SQL
stringlengths
18
453
input_ids
list
attention_mask
list
labels
list
Which Opposition has a Year smaller than 1977, and a City of manchester?
CREATE TABLE table_name_53 (opposition VARCHAR, year VARCHAR, city VARCHAR)
SELECT opposition FROM table_name_53 WHERE year < 1977 AND city = "manchester"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4867, 41, 29585, 584, 4280, 28027, 6, 215, 584, 4280, 28027, 6, 690, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 4495, 4718, 65, 3, 9, 2929, 2755, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 8263, 21680, 953, 834, 4350, 834, 4867, 549, 17444, 427, 215, 3, 2, 16433, 3430, 690, 3274, 96, 348, 13263, 121, 1, -100, -100, -100, -100, -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 the sum of code , and group by attribute name, could you show by the Y-axis from low to high?
CREATE TABLE Products ( Code INTEGER, Name VARCHAR(255), Price DECIMAL, Manufacturer INTEGER ) CREATE TABLE Manufacturers ( Code INTEGER, Name VARCHAR(255), Headquarter VARCHAR(255), Founder VARCHAR(255), Revenue REAL )
SELECT T1.Name, T1.Code FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T1.Name ORDER BY T1.Code
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7554, 41, 3636, 3, 21342, 17966, 6, 5570, 584, 4280, 28027, 599, 25502, 201, 5312, 3396, 254, 26330, 434, 6, 15248, 3, 21342, 17966, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 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, 332, 5411, 2...
Which Week has a Result of w 20-13?
CREATE TABLE table_name_20 (week INTEGER, result VARCHAR)
SELECT AVG(week) FROM table_name_20 WHERE result = "w 20-13"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1755, 41, 8041, 3, 21342, 17966, 6, 741, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 6551, 65, 3, 9, 3, 20119, 13, 3, 210, 460, 13056, 58, 1, 0,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 71, 17217, 599, 8041, 61, 21680, 953, 834, 4350, 834, 1755, 549, 17444, 427, 741, 3274, 96, 210, 460, 13056, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
what was the total number of games played ?
CREATE TABLE table_203_371 ( id number, "round" number, "opponent" text, "result" text, "bro." number, "opp." number, "date" text, "venue" text, "crowd" number, "position" text )
SELECT COUNT(*) FROM table_203_371
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 23330, 834, 4118, 536, 41, 3, 23, 26, 381, 6, 96, 7775, 121, 381, 6, 96, 32, 102, 9977, 121, 1499, 6, 96, 60, 7, 83, 17, 121, 1499, 6, 96, 5702, 535, 381, 6, 96, 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, 2847, 17161, 599, 1935, 61, 21680, 953, 834, 23330, 834, 4118, 536, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Which country is ranked 24?
CREATE TABLE table_10641 ( "Publication" text, "Country" text, "Accolade" text, "Year" real, "Rank" text )
SELECT "Country" FROM table_10641 WHERE "Rank" = '24'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 16431, 4853, 41, 96, 30931, 257, 121, 1499, 6, 96, 10628, 651, 121, 1499, 6, 96, 19543, 32, 14712, 121, 1499, 6, 96, 476, 2741, 121, 490, 6, 96, 22557, 121, 1499, 3, 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, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 96, 10628, 651, 121, 21680, 953, 834, 16431, 4853, 549, 17444, 427, 96, 22557, 121, 3274, 3, 31, 2266, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
how many patients under the age of 27 had the lab test called human chorionic gonadotropin?
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.age < "27" AND lab.label = "Human Chorionic Gonadotropin"
[ 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,...
WHAT IS TOTAL NUMBER OF PR TOP-UPS THAT HAVE A PERCENTAGE OF 0.8%, TOTAL LARGER THAN 1?
CREATE TABLE table_name_92 (pr_top_up VARCHAR, percentage VARCHAR, total VARCHAR)
SELECT COUNT(pr_top_up) FROM table_name_92 WHERE percentage = "0.8%" AND total > 1
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4508, 41, 102, 52, 834, 2916, 834, 413, 584, 4280, 28027, 6, 5294, 584, 4280, 28027, 6, 792, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 21665, 6827, 3001...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 102, 52, 834, 2916, 834, 413, 61, 21680, 953, 834, 4350, 834, 4508, 549, 17444, 427, 5294, 3274, 96, 22384, 1454, 121, 3430, 792, 2490, 209, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Display a line chart for what is the average prices of wines for each each?, and display in ascending by the x-axis.
CREATE TABLE appellations ( No INTEGER, Appelation TEXT, County TEXT, State TEXT, Area TEXT, isAVA TEXT ) CREATE TABLE grapes ( ID INTEGER, Grape TEXT, Color TEXT ) CREATE TABLE wine ( No INTEGER, Grape TEXT, Winery TEXT, Appelation TEXT, State TEXT, Name TE...
SELECT Year, AVG(Price) FROM wine GROUP BY Year ORDER BY Year
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 8319, 6105, 7, 41, 465, 3, 21342, 17966, 6, 3, 27794, 257, 3, 3463, 4, 382, 6, 1334, 3, 3463, 4, 382, 6, 1015, 3, 3463, 4, 382, 6, 5690, 3, 3463, 4, 382, 6, 19, 6968, 188, 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, 2929, 6, 71, 17217, 599, 345, 4920, 61, 21680, 2013, 350, 4630, 6880, 272, 476, 2929, 4674, 11300, 272, 476, 2929, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Which hometown has a player of Ray Drew?
CREATE TABLE table_name_19 ( hometown VARCHAR, player VARCHAR )
SELECT hometown FROM table_name_19 WHERE player = "ray drew"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2294, 41, 22295, 584, 4280, 28027, 6, 1959, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 4073, 22295, 65, 3, 9, 1959, 13, 8279, 24348, 58, 1, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 22295, 21680, 953, 834, 4350, 834, 2294, 549, 17444, 427, 1959, 3274, 96, 2866, 3, 26, 60, 210, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is the position of the player from round 2 from Sweden?
CREATE TABLE table_77560 ( "Round" real, "Player" text, "Position" text, "Nationality" text, "College/Junior/Club Team (League)" text )
SELECT "Position" FROM table_77560 WHERE "Round" = '2' AND "Nationality" = 'sweden'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 940, 3072, 3328, 41, 96, 448, 32, 1106, 121, 490, 6, 96, 15800, 49, 121, 1499, 6, 96, 345, 32, 7, 4749, 121, 1499, 6, 96, 24732, 485, 121, 1499, 6, 96, 9939, 7883, 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, 345, 32, 7, 4749, 121, 21680, 953, 834, 940, 3072, 3328, 549, 17444, 427, 96, 448, 32, 1106, 121, 3274, 3, 31, 357, 31, 3430, 96, 24732, 485, 121, 3274, 3, 31, 7, 1123, 537, 31, 1, -100, -100, -100, -100, ...
Which Prominence (m) has a Peak of nakanai mountains high point, and an Elevation (m) smaller than 2,316?
CREATE TABLE table_name_37 (prominence__m_ INTEGER, peak VARCHAR, elevation__m_ VARCHAR)
SELECT AVG(prominence__m_) FROM table_name_37 WHERE peak = "nakanai mountains high point" AND elevation__m_ < 2 OFFSET 316
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4118, 41, 1409, 1109, 1433, 834, 834, 51, 834, 3, 21342, 17966, 6, 6734, 584, 4280, 28027, 6, 16417, 834, 834, 51, 834, 584, 4280, 28027, 61, 3, 32102, 32103, 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, 71, 17217, 599, 1409, 1109, 1433, 834, 834, 51, 834, 61, 21680, 953, 834, 4350, 834, 4118, 549, 17444, 427, 6734, 3274, 96, 29, 9, 3304, 9, 23, 8022, 306, 500, 121, 3430, 16417, 834, 834, 51, 834, 3, 2, 204, 3, ...
What is Charlie Wi's To par?
CREATE TABLE table_12715 ( "Place" text, "Player" text, "Country" text, "Score" text, "To par" text )
SELECT "To par" FROM table_12715 WHERE "Player" = 'charlie wi'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 22367, 1808, 41, 96, 345, 11706, 121, 1499, 6, 96, 15800, 49, 121, 1499, 6, 96, 10628, 651, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 3696, 260, 121, 1499, 3, 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, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 96, 3696, 260, 121, 21680, 953, 834, 22367, 1808, 549, 17444, 427, 96, 15800, 49, 121, 3274, 3, 31, 4059, 1896, 11064, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What date was the team @ Detroit?
CREATE TABLE table_44152 ( "Game" real, "Date" text, "Team" text, "Score" text, "High points" text, "High rebounds" text, "High assists" text, "Location Attendance" text, "Record" text )
SELECT "Date" FROM table_44152 WHERE "Team" = '@ detroit'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3628, 26320, 41, 96, 23055, 121, 490, 6, 96, 308, 342, 121, 1499, 6, 96, 18699, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 21417, 979, 121, 1499, 6, 96, 21417, 3, 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, 96, 308, 342, 121, 21680, 953, 834, 3628, 26320, 549, 17444, 427, 96, 18699, 121, 3274, 3, 31, 1741, 3, 26, 15252, 155, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
what is the cost of the diagnostic of facial bone fracture - maxillary fracture?
CREATE TABLE lab ( labid number, patientunitstayid number, labname text, labresult number, labresulttime time ) CREATE TABLE vitalperiodic ( vitalperiodicid number, patientunitstayid number, temperature number, sao2 number, heartrate number, respiration number, systemics...
SELECT DISTINCT cost.cost FROM cost WHERE cost.eventtype = 'diagnosis' AND cost.eventid IN (SELECT diagnosis.diagnosisid FROM diagnosis WHERE diagnosis.diagnosisname = 'facial bone fracture - maxillary fracture')
[ 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, 3, 15438, 25424, 6227, 583, 5, 11290, 21680, 583, 549, 17444, 427, 583, 5, 15, 2169, 6137, 3274, 3, 31, 25930, 4844, 159, 31, 3430, 583, 5, 15, 2169, 23, 26, 3388, 41, 23143, 14196, 8209, 5, 25930, 4844, 159, 23, ...
List the names of entrepreneurs and their companies in descending order of money requested?
CREATE TABLE entrepreneur ( Company VARCHAR, People_ID VARCHAR, Money_Requested VARCHAR ) CREATE TABLE people ( Name VARCHAR, People_ID VARCHAR )
SELECT T2.Name, T1.Company FROM entrepreneur AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Money_Requested
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 3, 12290, 41, 1958, 584, 4280, 28027, 6, 2449, 834, 4309, 584, 4280, 28027, 6, 8833, 834, 1649, 835, 6265, 584, 4280, 28027, 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, 332, 4416, 23954, 6, 332, 5411, 5890, 2837, 63, 21680, 3, 12290, 6157, 332, 536, 3, 15355, 3162, 151, 6157, 332, 357, 9191, 332, 5411, 24337, 834, 4309, 3274, 332, 4416, 24337, 834, 4309, 4674, 11300, 272, 476, 332, ...
Return a pie on how many faculty members does each building have? List the result with the name of the building.
CREATE TABLE Participates_in ( stuid INTEGER, actid INTEGER ) CREATE TABLE Faculty_Participates_in ( FacID INTEGER, actid INTEGER ) CREATE TABLE Activity ( actid INTEGER, activity_name varchar(25) ) CREATE TABLE Faculty ( FacID INTEGER, Lname VARCHAR(15), Fname VARCHAR(15), Ra...
SELECT Building, COUNT(*) FROM Faculty GROUP BY Building
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 15077, 6203, 834, 77, 41, 21341, 23, 26, 3, 21342, 17966, 6, 1810, 23, 26, 3, 21342, 17966, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 16896, 834, 13725, 23, 3389, 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, 5450, 6, 2847, 17161, 599, 1935, 61, 21680, 16896, 350, 4630, 6880, 272, 476, 5450, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the Tuesday 1 June total number if Monday 31 May is 20' 15.35 111.761mph?
CREATE TABLE table_27456 ( "Rank" real, "Rider" text, "Sat 29 May" text, "Mon 31 May" text, "Tues 1 June" text, "Wed 2 June" text, "Thurs 3 June" text, "Fri 4 June" text )
SELECT COUNT("Tues 1 June") FROM table_27456 WHERE "Mon 31 May" = '20'' 15.35 111.761mph'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2555, 2128, 948, 41, 96, 22557, 121, 490, 6, 96, 448, 23, 588, 121, 1499, 6, 96, 134, 144, 2838, 932, 121, 1499, 6, 96, 9168, 2664, 932, 121, 1499, 6, 96, 382, 76, 15, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 121, 382, 76, 15, 7, 209, 1515, 8512, 21680, 953, 834, 2555, 2128, 948, 549, 17444, 427, 96, 9168, 2664, 932, 121, 3274, 3, 31, 1755, 31, 31, 9996, 2469, 850, 18596, 4241, 7656, 31, 1, -100, -100...
What's the Municipal code of the FRP Party with an area of 100?
CREATE TABLE table_name_35 (municipal_code INTEGER, party VARCHAR, area VARCHAR)
SELECT SUM(municipal_code) FROM table_name_35 WHERE party = "frp" AND area = 100
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2469, 41, 11760, 3389, 138, 834, 4978, 3, 21342, 17966, 6, 1088, 584, 4280, 28027, 6, 616, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 31, 7, 8, 16...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 180, 6122, 599, 11760, 3389, 138, 834, 4978, 61, 21680, 953, 834, 4350, 834, 2469, 549, 17444, 427, 1088, 3274, 96, 89, 52, 102, 121, 3430, 616, 3274, 910, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
count the number of patients whose marital status is married and diagnoses long title is mechanical complication due to other implant and internal device, not elsewhere classified?
CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text ) CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob te...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.marital_status = "MARRIED" AND diagnoses.long_title = "Mechanical complication due to other implant and internal device, not elsewhere classified"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7744, 7, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 3, 23, 1071, 21545, 834, 23, 26, 1499, 6, 2672, 834, 6137, 1499, 6, 2672, 1499, 6, 5403, 651, 834, 26, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 18730, 7, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 18730, 7, 5, 8399, 51, 834, 23, 26, 5...
What was the aggregate total for the match against Koper?
CREATE TABLE table_7712 ( "Season" text, "Competition" text, "Round" text, "Opponent" text, "Home" text, "Away" text, "Agg." text )
SELECT "Agg." FROM table_7712 WHERE "Opponent" = 'koper'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4013, 2122, 41, 96, 134, 15, 9, 739, 121, 1499, 6, 96, 5890, 4995, 4749, 121, 1499, 6, 96, 448, 32, 1106, 121, 1499, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 19040, 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, 188, 4102, 535, 21680, 953, 834, 4013, 2122, 549, 17444, 427, 96, 667, 102, 9977, 121, 3274, 3, 31, 17466, 49, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Show the number of accounts for different statement details in a bar chart, and rank by the Y-axis from high to low.
CREATE TABLE Documents ( Document_ID INTEGER, Document_Type_Code CHAR(15), Project_ID INTEGER, Document_Date DATETIME, Document_Name VARCHAR(255), Document_Description VARCHAR(255), Other_Details VARCHAR(255) ) CREATE TABLE Statements ( Statement_ID INTEGER, Statement_Details VARCHA...
SELECT Statement_Details, COUNT(Statement_Details) FROM Accounts AS T1 JOIN Statements AS T2 ON T1.Statement_ID = T2.Statement_ID GROUP BY Statement_Details ORDER BY COUNT(Statement_Details) DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 11167, 7, 41, 11167, 834, 4309, 3, 21342, 17966, 6, 11167, 834, 25160, 834, 22737, 3, 28027, 599, 1808, 201, 2786, 834, 4309, 3, 21342, 17966, 6, 11167, 834, 308, 342, 309, 6048, 382, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 16836, 834, 2962, 5756, 7, 6, 2847, 17161, 599, 134, 4748, 297, 834, 2962, 5756, 7, 61, 21680, 6288, 7, 6157, 332, 536, 3, 15355, 3162, 16836, 7, 6157, 332, 357, 9191, 332, 5411, 134, 4748, 297, 834, 4309, 3274, 3...
What is the number of points for the vehicle with a mp4-17d chassis earlier than 2003?
CREATE TABLE table_name_83 ( points INTEGER, chassis VARCHAR, year VARCHAR )
SELECT SUM(points) FROM table_name_83 WHERE chassis = "mp4-17d" AND year < 2003
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4591, 41, 979, 3, 21342, 17966, 6, 22836, 584, 4280, 28027, 6, 215, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 381, 13, 979, 21, 8, 16...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 180, 6122, 599, 2700, 7, 61, 21680, 953, 834, 4350, 834, 4591, 549, 17444, 427, 22836, 3274, 96, 1167, 591, 10794, 26, 121, 3430, 215, 3, 2, 3888, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is the Theme Song of the show on Fuji TV Station with Average Ratings of 16.65%?
CREATE TABLE table_79254 ( "Japanese Title" text, "Romaji Title" text, "TV Station" text, "Theme Song(s)" text, "Episodes" real, "Average Ratings" text )
SELECT "Theme Song(s)" FROM table_79254 WHERE "TV Station" = 'fuji tv' AND "Average Ratings" = '16.65%'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4440, 1828, 591, 41, 96, 683, 9750, 1496, 15, 11029, 121, 1499, 6, 96, 448, 32, 16547, 23, 11029, 121, 1499, 6, 96, 4562, 5939, 121, 1499, 6, 96, 634, 526, 11263, 599, 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, 634, 526, 11263, 599, 7, 61, 121, 21680, 953, 834, 4440, 1828, 591, 549, 17444, 427, 96, 4562, 5939, 121, 3274, 3, 31, 89, 76, 354, 23, 3, 17, 208, 31, 3430, 96, 188, 624, 545, 21662, 7, 121, 3274, 3, 31, ...
What is the pick# from South Dakota college?
CREATE TABLE table_name_23 ( pick__number VARCHAR, college VARCHAR )
SELECT pick__number FROM table_name_23 WHERE college = "south dakota"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2773, 41, 1432, 834, 834, 5525, 1152, 584, 4280, 28027, 6, 1900, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 1432, 4663, 45, 1013, 16711, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1432, 834, 834, 5525, 1152, 21680, 953, 834, 4350, 834, 2773, 549, 17444, 427, 1900, 3274, 96, 7, 670, 107, 836, 15414, 9, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the HDTV when the Package/Option is sky famiglia, and a Television service of boomerang +1?
CREATE TABLE table_name_67 (hdtv VARCHAR, package_option VARCHAR, television_service VARCHAR)
SELECT hdtv FROM table_name_67 WHERE package_option = "sky famiglia" AND television_service = "boomerang +1"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3708, 41, 107, 26, 17, 208, 584, 4280, 28027, 6, 2642, 834, 11803, 584, 4280, 28027, 6, 4390, 834, 5114, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 107, 26, 17, 208, 21680, 953, 834, 4350, 834, 3708, 549, 17444, 427, 2642, 834, 11803, 3274, 96, 5352, 3, 89, 3690, 4707, 9, 121, 3430, 4390, 834, 5114, 3274, 96, 12840, 935, 1468, 3, 18446, 121, 1, -100, -100,...
Which opponent has a loss of trout (7-4)?
CREATE TABLE table_37073 ( "Date" text, "Opponent" text, "Score" text, "Loss" text, "Save" text )
SELECT "Opponent" FROM table_37073 WHERE "Loss" = 'trout (7-4)'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 22520, 4552, 41, 96, 308, 342, 121, 1499, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 434, 32, 7, 7, 121, 1499, 6, 96, 23163, 121, 1499, 3, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 667, 102, 9977, 121, 21680, 953, 834, 22520, 4552, 549, 17444, 427, 96, 434, 32, 7, 7, 121, 3274, 3, 31, 17, 52, 670, 13649, 18, 7256, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Who directed the episode written cyrus nowrasteh?
CREATE TABLE table_name_85 (directed_by VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_name_85 WHERE written_by = "cyrus nowrasteh"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4433, 41, 22955, 834, 969, 584, 4280, 28027, 6, 1545, 834, 969, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 2645, 6640, 8, 5640, 1545, 3, 75, 63, 4502, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 6640, 834, 969, 21680, 953, 834, 4350, 834, 4433, 549, 17444, 427, 1545, 834, 969, 3274, 96, 75, 63, 4502, 230, 20484, 15, 107, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Name the date that has a friendly competition at rheinpark stadion, vaduz
CREATE TABLE table_name_71 ( date VARCHAR, competition VARCHAR, venue VARCHAR )
SELECT date FROM table_name_71 WHERE competition = "friendly" AND venue = "rheinpark stadion, vaduz"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4450, 41, 833, 584, 4280, 28027, 6, 2259, 584, 4280, 28027, 6, 5669, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 5570, 8, 833, 24, 65, 3, 9, 2609, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 833, 21680, 953, 834, 4350, 834, 4450, 549, 17444, 427, 2259, 3274, 96, 4905, 121, 3430, 5669, 3274, 96, 52, 88, 77, 6334, 3342, 26, 23, 106, 6, 409, 1259, 172, 121, 1, -100, -100, -100, -100, -100, -100, -100, -1...
What year had the largest number of laps over 196?
CREATE TABLE table_14691 ( "Year" text, "Start" text, "Qual" text, "Rank" text, "Finish" text, "Laps" real )
SELECT "Year" FROM table_14691 WHERE "Laps" > '196'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 24300, 4729, 41, 96, 476, 2741, 121, 1499, 6, 96, 7681, 17, 121, 1499, 6, 96, 5991, 138, 121, 1499, 6, 96, 22557, 121, 1499, 6, 96, 371, 77, 1273, 121, 1499, 6, 96, 361...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 476, 2741, 121, 21680, 953, 834, 24300, 4729, 549, 17444, 427, 96, 3612, 102, 7, 121, 2490, 3, 31, 26937, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What tournament did Pemra Özgen play against julia kimmelmann in the finals?
CREATE TABLE table_name_54 (tournament VARCHAR, opponent_in_the_final VARCHAR)
SELECT tournament FROM table_name_54 WHERE opponent_in_the_final = "julia kimmelmann"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 5062, 41, 17, 1211, 20205, 17, 584, 4280, 28027, 6, 15264, 834, 77, 834, 532, 834, 12406, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 5892, 410, 1276...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 5892, 21680, 953, 834, 4350, 834, 5062, 549, 17444, 427, 15264, 834, 77, 834, 532, 834, 12406, 3274, 96, 354, 83, 23, 9, 3, 19754, 2341, 2434, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What is the starting weight if weight lost is 54.6?
CREATE TABLE table_26790 ( "Contestant" text, "Starting Weight (kg)" text, "Final Weight (kg)" text, "Weight Lost (kg)" text, "Percentage Lost" text, "Position (out of Eliminated Contestants)" text )
SELECT "Starting Weight (kg)" FROM table_26790 WHERE "Weight Lost (kg)" = '54.6'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 357, 3708, 2394, 41, 96, 4302, 4377, 288, 121, 1499, 6, 96, 7681, 1222, 14230, 41, 8711, 61, 121, 1499, 6, 96, 371, 10270, 14230, 41, 8711, 61, 121, 1499, 6, 96, 1326, 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...
[ 3, 23143, 14196, 96, 7681, 1222, 14230, 41, 8711, 61, 121, 21680, 953, 834, 357, 3708, 2394, 549, 17444, 427, 96, 1326, 2632, 19576, 41, 8711, 61, 121, 3274, 3, 31, 755, 25652, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the English title for years after 1981 originating from Argentina?
CREATE TABLE table_15529 ( "Year" real, "English title" text, "Original title" text, "Country" text, "Director" text )
SELECT "English title" FROM table_15529 WHERE "Year" > '1981' AND "Country" = 'argentina'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 20896, 3166, 41, 96, 476, 2741, 121, 490, 6, 96, 26749, 2233, 121, 1499, 6, 96, 667, 3380, 10270, 2233, 121, 1499, 6, 96, 10628, 651, 121, 1499, 6, 96, 23620, 127, 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, 26749, 2233, 121, 21680, 953, 834, 20896, 3166, 549, 17444, 427, 96, 476, 2741, 121, 2490, 3, 31, 2294, 4959, 31, 3430, 96, 10628, 651, 121, 3274, 3, 31, 9917, 77, 9, 31, 1, -100, -100, -100, -100, -100, -100,...
What is the number of tickets sold and available for the concert at Long Beach Arena?
CREATE TABLE table_name_18 ( tickets_sold___available VARCHAR, venue VARCHAR )
SELECT tickets_sold___available FROM table_name_18 WHERE venue = "long beach arena"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2606, 41, 3500, 834, 7, 1490, 834, 834, 834, 28843, 584, 4280, 28027, 6, 5669, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 381, 13, 3500,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 3500, 834, 7, 1490, 834, 834, 834, 28843, 21680, 953, 834, 4350, 834, 2606, 549, 17444, 427, 5669, 3274, 96, 2961, 2608, 15134, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
In what tournament is there a result of 46-18?
CREATE TABLE table_name_28 (tournament VARCHAR, result VARCHAR)
SELECT tournament FROM table_name_28 WHERE result = "46-18"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2577, 41, 17, 1211, 20205, 17, 584, 4280, 28027, 6, 741, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 86, 125, 5892, 19, 132, 3, 9, 741, 13, 9668, 6996, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 5892, 21680, 953, 834, 4350, 834, 2577, 549, 17444, 427, 741, 3274, 96, 4448, 6996, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which Date performed has a Main contestant of karanvir bohra?
CREATE TABLE table_name_58 ( date_performed VARCHAR, main_contestant VARCHAR )
SELECT date_performed FROM table_name_58 WHERE main_contestant = "karanvir bohra"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3449, 41, 833, 834, 883, 10816, 584, 4280, 28027, 6, 711, 834, 1018, 4377, 288, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 4073, 7678, 3032, 65, 3, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 833, 834, 883, 10816, 21680, 953, 834, 4350, 834, 3449, 549, 17444, 427, 711, 834, 1018, 4377, 288, 3274, 96, 4031, 152, 5771, 3005, 107, 52, 9, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
Where was the game played on 20 may?
CREATE TABLE table_name_19 ( venue VARCHAR, date VARCHAR )
SELECT venue FROM table_name_19 WHERE date = "20 may"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2294, 41, 5669, 584, 4280, 28027, 6, 833, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 2840, 47, 8, 467, 1944, 30, 460, 164, 58, 1, 0, 0, 0, 0, 0,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 5669, 21680, 953, 834, 4350, 834, 2294, 549, 17444, 427, 833, 3274, 96, 1755, 164, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What's Albufeira's assist/pass?
CREATE TABLE table_65432 ( "Date" text, "Location" text, "Lineup" text, "Assist/pass" text, "Score" text, "Result" text, "Competition" text )
SELECT "Assist/pass" FROM table_65432 WHERE "Location" = 'albufeira'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4122, 591, 2668, 41, 96, 308, 342, 121, 1499, 6, 96, 434, 32, 75, 257, 121, 1499, 6, 96, 21022, 413, 121, 1499, 6, 96, 188, 7, 7, 343, 87, 3968, 121, 1499, 6, 96, 134...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 188, 7, 7, 343, 87, 3968, 121, 21680, 953, 834, 4122, 591, 2668, 549, 17444, 427, 96, 434, 32, 75, 257, 121, 3274, 3, 31, 138, 3007, 89, 15809, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What Opponent played on the Date May 21?
CREATE TABLE table_6471 ( "Date" text, "Opponent" text, "Score" text, "Loss" text, "Save" text )
SELECT "Opponent" FROM table_6471 WHERE "Date" = 'may 21'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4389, 4450, 41, 96, 308, 342, 121, 1499, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 434, 32, 7, 7, 121, 1499, 6, 96, 23163, 121, 1499, 3, 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, 0, 0...
[ 3, 23143, 14196, 96, 667, 102, 9977, 121, 21680, 953, 834, 4389, 4450, 549, 17444, 427, 96, 308, 342, 121, 3274, 3, 31, 13726, 1401, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
Where the ship is Dahlgren what is the build as?
CREATE TABLE table_name_28 ( built_as VARCHAR, ship VARCHAR )
SELECT built_as FROM table_name_28 WHERE ship = "dahlgren"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2577, 41, 1192, 834, 9, 7, 584, 4280, 28027, 6, 4383, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 2840, 8, 4383, 19, 30569, 16677, 125, 19, 8, 918, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1192, 834, 9, 7, 21680, 953, 834, 4350, 834, 2577, 549, 17444, 427, 4383, 3274, 96, 26, 9, 107, 40, 16677, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What system has a current version of 1.4e?
CREATE TABLE table_name_65 (system VARCHAR, current_version VARCHAR)
SELECT system FROM table_name_65 WHERE current_version = "1.4e"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4122, 41, 3734, 584, 4280, 28027, 6, 750, 834, 8674, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 358, 65, 3, 9, 750, 988, 13, 3, 14912, 15, 58, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 358, 21680, 953, 834, 4350, 834, 4122, 549, 17444, 427, 750, 834, 8674, 3274, 96, 14912, 15, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
Which Zero Fighter has a count of 10?
CREATE TABLE table_35534 ( "Date" text, "ID code of his Zero Fighter" text, "Flight hours" text, "Count" text, "Sub-total" text )
SELECT "ID code of his Zero Fighter" FROM table_35534 WHERE "Count" = '10'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2469, 755, 3710, 41, 96, 308, 342, 121, 1499, 6, 96, 4309, 1081, 13, 112, 17971, 27894, 121, 1499, 6, 96, 371, 2242, 716, 121, 1499, 6, 96, 10628, 121, 1499, 6, 96, 25252...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 4309, 1081, 13, 112, 17971, 27894, 121, 21680, 953, 834, 2469, 755, 3710, 549, 17444, 427, 96, 10628, 121, 3274, 3, 31, 1714, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What's the February for the game against the Montreal Canadiens?
CREATE TABLE table_36186 ( "Game" real, "February" real, "Opponent" text, "Score" text, "Record" text, "Points" real )
SELECT SUM("February") FROM table_36186 WHERE "Opponent" = 'montreal canadiens'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3420, 25398, 41, 96, 23055, 121, 490, 6, 96, 31122, 121, 490, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 134, 9022, 121, 1499, 6, 96, 1649, 7621, 121, 1499, 6, 96, 22512, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 31122, 8512, 21680, 953, 834, 3420, 25398, 549, 17444, 427, 96, 667, 102, 9977, 121, 3274, 3, 31, 4662, 6644, 27114, 7, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What was the total number of games on January 20?
CREATE TABLE table_name_75 ( game VARCHAR, january VARCHAR )
SELECT COUNT(game) FROM table_name_75 WHERE january = 20
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3072, 41, 467, 584, 4280, 28027, 6, 3, 7066, 76, 1208, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 792, 381, 13, 1031, 30, 1762, 460, 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, 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, 7261, 61, 21680, 953, 834, 4350, 834, 3072, 549, 17444, 427, 3, 7066, 76, 1208, 3274, 460, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the sum of goals when the league cup goals are 4 and the FA cup goals are 0?
CREATE TABLE table_name_79 (total VARCHAR, league_cup_goals VARCHAR, fa_cup_goals VARCHAR)
SELECT total FROM table_name_79 WHERE league_cup_goals = "4" AND fa_cup_goals = "0"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4440, 41, 235, 1947, 584, 4280, 28027, 6, 5533, 834, 4658, 834, 839, 5405, 584, 4280, 28027, 6, 3, 89, 9, 834, 4658, 834, 839, 5405, 584, 4280, 28027, 61, 3, 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, 792, 21680, 953, 834, 4350, 834, 4440, 549, 17444, 427, 5533, 834, 4658, 834, 839, 5405, 3274, 96, 20364, 3430, 3, 89, 9, 834, 4658, 834, 839, 5405, 3274, 96, 632, 121, 1, -100, -100, -100, -100, -100, -100, -100, ...
When was the event in Dublin?
CREATE TABLE table_79946 ( "Date" text, "City" text, "Event" text, "Winner" text, "Prize" text )
SELECT "Date" FROM table_79946 WHERE "City" = 'dublin'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 940, 3264, 4448, 41, 96, 308, 342, 121, 1499, 6, 96, 254, 485, 121, 1499, 6, 96, 427, 2169, 121, 1499, 6, 96, 18455, 687, 121, 1499, 6, 96, 7855, 776, 121, 1499, 3, 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, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 96, 308, 342, 121, 21680, 953, 834, 940, 3264, 4448, 549, 17444, 427, 96, 254, 485, 121, 3274, 3, 31, 1259, 21746, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is Instant Messaging, when Telephony is "Yes with integrated Sametime"?
CREATE TABLE table_name_26 (instant_messaging VARCHAR, telephony VARCHAR)
SELECT instant_messaging FROM table_name_26 WHERE telephony = "yes with integrated sametime"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2688, 41, 26166, 834, 2687, 7, 5855, 584, 4280, 28027, 6, 3, 1931, 9621, 63, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 18882, 6598, 5855, 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, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 5087, 834, 2687, 7, 5855, 21680, 953, 834, 4350, 834, 2688, 549, 17444, 427, 3, 1931, 9621, 63, 3274, 96, 10070, 28, 4580, 337, 715, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
what is the public vote on graeme & kristina
CREATE TABLE table_19744915_3 (public_vote VARCHAR, couple VARCHAR)
SELECT public_vote FROM table_19744915_3 WHERE couple = "Graeme & Kristina"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2294, 4581, 3647, 1808, 834, 519, 41, 15727, 834, 1621, 17, 15, 584, 4280, 28027, 6, 1158, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 125, 19, 8, 452, 2902, 30, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 452, 834, 1621, 17, 15, 21680, 953, 834, 2294, 4581, 3647, 1808, 834, 519, 549, 17444, 427, 1158, 3274, 96, 4744, 15, 526, 3, 184, 9375, 17, 77, 9, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Who is the November playmate with the July playmate Hope Marie Carlton?
CREATE TABLE table_69252 ( "January" text, "February" text, "March" text, "April" text, "June" text, "July" text, "August" text, "September" text, "October" text, "November" text, "December" text )
SELECT "November" FROM table_69252 WHERE "July" = 'hope marie carlton'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3951, 1828, 357, 41, 96, 30404, 121, 1499, 6, 96, 31122, 121, 1499, 6, 96, 25019, 121, 1499, 6, 96, 23323, 121, 1499, 6, 96, 683, 444, 121, 1499, 6, 96, 683, 83, 63, 12...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 28635, 121, 21680, 953, 834, 3951, 1828, 357, 549, 17444, 427, 96, 683, 83, 63, 121, 3274, 3, 31, 10776, 15, 2774, 15, 443, 7377, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the College of Rice's highest overall for the guard position?
CREATE TABLE table_38280 ( "Round" real, "Pick #" real, "Overall" real, "Name" text, "Position" text, "College" text )
SELECT MAX("Overall") FROM table_38280 WHERE "Position" = 'guard' AND "College" = 'rice'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3747, 17518, 41, 96, 448, 32, 1106, 121, 490, 6, 96, 345, 3142, 1713, 121, 490, 6, 96, 23847, 1748, 121, 490, 6, 96, 23954, 121, 1499, 6, 96, 345, 32, 7, 4749, 121, 149...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 4800, 4, 599, 121, 23847, 1748, 8512, 21680, 953, 834, 3747, 17518, 549, 17444, 427, 96, 345, 32, 7, 4749, 121, 3274, 3, 31, 11010, 31, 3430, 96, 9939, 7883, 121, 3274, 3, 31, 4920, 31, 1, -100, -100, -100, -100, ...
What champion has north melbourne as the runner-up?
CREATE TABLE table_name_92 ( champion VARCHAR, runner_up VARCHAR )
SELECT champion FROM table_name_92 WHERE runner_up = "north melbourne"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4508, 41, 6336, 584, 4280, 28027, 6, 3, 10806, 834, 413, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 6336, 65, 3457, 3, 2341, 26255, 38, 8, 3, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 6336, 21680, 953, 834, 4350, 834, 4508, 549, 17444, 427, 3, 10806, 834, 413, 3274, 96, 29, 127, 189, 3, 2341, 26255, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
List all headquarters and the number of companies in each headquarter.
CREATE TABLE company ( headquarters VARCHAR )
SELECT headquarters, COUNT(*) FROM company GROUP BY headquarters
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 349, 41, 13767, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 6792, 66, 13767, 11, 8, 381, 13, 688, 16, 284, 819, 19973, 5, 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, 13767, 6, 2847, 17161, 599, 1935, 61, 21680, 349, 350, 4630, 6880, 272, 476, 13767, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Name the home team score for larger crowd than 11,918 for windy hill venue
CREATE TABLE table_77623 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Home team score" FROM table_77623 WHERE "Crowd" > '11,918' AND "Venue" = 'windy hill'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4013, 4056, 519, 41, 96, 19040, 372, 121, 1499, 6, 96, 19040, 372, 2604, 121, 1499, 6, 96, 188, 1343, 372, 121, 1499, 6, 96, 188, 1343, 372, 2604, 121, 1499, 6, 96, 553, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 19040, 372, 2604, 121, 21680, 953, 834, 4013, 4056, 519, 549, 17444, 427, 96, 254, 3623, 26, 121, 2490, 3, 31, 2596, 6, 1298, 2606, 31, 3430, 96, 553, 35, 76, 15, 121, 3274, 3, 31, 5165, 63, 9956, 31, 1, -...
What CFL team did simeon rottier play for?
CREATE TABLE table_23570 ( "Pick #" real, "CFL Team" text, "Player" text, "Position" text, "College" text )
SELECT "CFL Team" FROM table_23570 WHERE "Player" = 'Simeon Rottier'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 25174, 2518, 41, 96, 345, 3142, 1713, 121, 490, 6, 96, 254, 10765, 2271, 121, 1499, 6, 96, 15800, 49, 121, 1499, 6, 96, 345, 32, 7, 4749, 121, 1499, 6, 96, 9939, 7883, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 254, 10765, 2271, 121, 21680, 953, 834, 25174, 2518, 549, 17444, 427, 96, 15800, 49, 121, 3274, 3, 31, 134, 5445, 106, 8704, 3276, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What is the average year with an award of platinum?
CREATE TABLE table_name_44 (year INTEGER, award_description_s_ VARCHAR)
SELECT AVG(year) FROM table_name_44 WHERE award_description_s_ = "platinum"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3628, 41, 1201, 3, 21342, 17966, 6, 2760, 834, 221, 11830, 834, 7, 834, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 1348, 215, 28, 46, 2760,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 71, 17217, 599, 1201, 61, 21680, 953, 834, 4350, 834, 3628, 549, 17444, 427, 2760, 834, 221, 11830, 834, 7, 834, 3274, 96, 102, 14098, 440, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Which points has the driver Paul Tracy?
CREATE TABLE table_name_56 (points VARCHAR, driver VARCHAR)
SELECT points FROM table_name_56 WHERE driver = "paul tracy"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4834, 41, 2700, 7, 584, 4280, 28027, 6, 2535, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 979, 65, 8, 2535, 1838, 29464, 58, 1, 0, 0, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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...
[ 3, 23143, 14196, 979, 21680, 953, 834, 4350, 834, 4834, 549, 17444, 427, 2535, 3274, 96, 102, 9, 83, 3, 6471, 63, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
When total goals is 11 what was the league apps (sub)?
CREATE TABLE table_1112176_1 ( league_apps__sub_ INTEGER, total_goals VARCHAR )
SELECT MAX(league_apps__sub_) FROM table_1112176_1 WHERE total_goals = 11
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 15866, 2658, 3959, 834, 536, 41, 5533, 834, 3096, 7, 834, 834, 7304, 834, 3, 21342, 17966, 6, 792, 834, 839, 5405, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 3...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 29512, 834, 3096, 7, 834, 834, 7304, 834, 61, 21680, 953, 834, 15866, 2658, 3959, 834, 536, 549, 17444, 427, 792, 834, 839, 5405, 3274, 850, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the Name of the Mill Built in 1802?
CREATE TABLE table_name_73 (name_of_mill VARCHAR, built VARCHAR)
SELECT name_of_mill FROM table_name_73 WHERE built = "1802"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4552, 41, 4350, 834, 858, 834, 12415, 584, 4280, 28027, 6, 1192, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 5570, 13, 8, 4185, 14862, 16, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 564, 834, 858, 834, 12415, 21680, 953, 834, 4350, 834, 4552, 549, 17444, 427, 1192, 3274, 96, 20829, 357, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What is the date when the Lakers were the home team?
CREATE TABLE table_name_1 (date VARCHAR, home VARCHAR)
SELECT date FROM table_name_1 WHERE home = "lakers"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 536, 41, 5522, 584, 4280, 28027, 6, 234, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 833, 116, 8, 325, 11758, 130, 8, 234, 372, 58, 1, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 833, 21680, 953, 834, 4350, 834, 536, 549, 17444, 427, 234, 3274, 96, 521, 11758, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
How many number in series's are written by Greg Haddrick?
CREATE TABLE table_21666472_1 ( no_in_series VARCHAR, written_by VARCHAR )
SELECT COUNT(no_in_series) FROM table_21666472_1 WHERE written_by = "Greg Haddrick"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 27184, 3539, 4177, 357, 834, 536, 41, 150, 834, 77, 834, 10833, 7, 584, 4280, 28027, 6, 1545, 834, 969, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 38...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 29, 32, 834, 77, 834, 10833, 7, 61, 21680, 953, 834, 27184, 3539, 4177, 357, 834, 536, 549, 17444, 427, 1545, 834, 969, 3274, 96, 517, 60, 122, 10118, 26, 5206, 121, 1, -100, -100, -100, -100, -1...
Find the government form name and total population for each government form whose average life expectancy is longer than 72.
CREATE TABLE country (GovernmentForm VARCHAR, Population INTEGER, LifeExpectancy INTEGER)
SELECT SUM(Population), GovernmentForm FROM country GROUP BY GovernmentForm HAVING AVG(LifeExpectancy) > 72
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 684, 41, 27304, 297, 3809, 51, 584, 4280, 28027, 6, 29659, 3, 21342, 17966, 6, 2330, 12882, 15, 75, 17, 6833, 3, 21342, 17966, 61, 3, 32102, 32103, 32101, 32103, 2588, 8, 789, 607, 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, 0, 0...
[ 3, 23143, 14196, 180, 6122, 599, 27773, 7830, 201, 3141, 3809, 51, 21680, 684, 350, 4630, 6880, 272, 476, 3141, 3809, 51, 454, 6968, 2365, 71, 17217, 599, 16427, 12882, 15, 75, 17, 6833, 61, 2490, 9455, 1, -100, -100, -100, -100, -1...
what is the mission when the location is brasilia?
CREATE TABLE table_name_18 ( mission VARCHAR, location VARCHAR )
SELECT mission FROM table_name_18 WHERE location = "brasilia"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2606, 41, 2253, 584, 4280, 28027, 6, 1128, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 125, 19, 8, 2253, 116, 8, 1128, 19, 3858, 10578, 9, 58, 1, 0...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2253, 21680, 953, 834, 4350, 834, 2606, 549, 17444, 427, 1128, 3274, 96, 1939, 10578, 9, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which home team's venue is Windy Hill?
CREATE TABLE table_name_86 ( home_team VARCHAR, venue VARCHAR )
SELECT home_team FROM table_name_86 WHERE venue = "windy hill"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3840, 41, 234, 834, 11650, 584, 4280, 28027, 6, 5669, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 4073, 234, 372, 31, 7, 5669, 19, 5634, 63, 3588, 58...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 234, 834, 11650, 21680, 953, 834, 4350, 834, 3840, 549, 17444, 427, 5669, 3274, 96, 5165, 63, 9956, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Which station is from China and has a frequency of 684khz?
CREATE TABLE table_64209 ( "Frequency" text, "Station" text, "Operator" text, "Country of origin" text, "Transmitter location" text, "Format" text )
SELECT "Station" FROM table_64209 WHERE "Country of origin" = 'china' AND "Frequency" = '684khz'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4389, 357, 4198, 41, 96, 371, 60, 835, 11298, 121, 1499, 6, 96, 134, 6821, 121, 1499, 6, 96, 667, 883, 1016, 121, 1499, 6, 96, 10628, 651, 13, 5233, 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, 1...
[ 3, 23143, 14196, 96, 134, 6821, 121, 21680, 953, 834, 4389, 357, 4198, 549, 17444, 427, 96, 10628, 651, 13, 5233, 121, 3274, 3, 31, 5675, 9, 31, 3430, 96, 371, 60, 835, 11298, 121, 3274, 3, 31, 3651, 591, 157, 107, 172, 31, 1, ...
What was the 2nd's season's ranking?
CREATE TABLE table_299121_2 ( ranking VARCHAR, season VARCHAR )
SELECT ranking FROM table_299121_2 WHERE season = "2nd"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 357, 3264, 22011, 834, 357, 41, 11592, 584, 4280, 28027, 6, 774, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 47, 8, 204, 727, 31, 7, 774, 31, 7, 11592, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 11592, 21680, 953, 834, 357, 3264, 22011, 834, 357, 549, 17444, 427, 774, 3274, 96, 357, 727, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
When brive is the proceed to quarter final how many were eliminated from competition?
CREATE TABLE table_27987767_3 (eliminated_from_competition VARCHAR, proceed_to_quarter_final VARCHAR)
SELECT COUNT(eliminated_from_competition) FROM table_27987767_3 WHERE proceed_to_quarter_final = "Brive"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2555, 3916, 4013, 3708, 834, 519, 41, 15, 4941, 77, 920, 834, 7152, 834, 287, 4995, 4749, 584, 4280, 28027, 6, 8669, 834, 235, 834, 19973, 834, 12406, 584, 4280, 28027, 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, 2847, 17161, 599, 15, 4941, 77, 920, 834, 7152, 834, 287, 4995, 4749, 61, 21680, 953, 834, 2555, 3916, 4013, 3708, 834, 519, 549, 17444, 427, 8669, 834, 235, 834, 19973, 834, 12406, 3274, 96, 279, 52, 757, 121, 1, ...
HOW MUCH IS THE PERCENTAGE OF GLOBAL TOTAL EMISSIONS IN THE COUNTRY THAT PRODUCED 4.9 TONS PER PERSON IN 2007?
CREATE TABLE table_16585 ( "Country" text, "Carbon dioxide emissions per year (10 6 Tons) (2006)" real, "Percentage of global total" text, "Avg. emission per km 2 of its land (tons)" real, "Carbon dioxide emissions per year (Tons per person) (2007)" text )
SELECT "Percentage of global total" FROM table_16585 WHERE "Carbon dioxide emissions per year (Tons per person) (2007)" = '4.9'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 22823, 4433, 41, 96, 10628, 651, 121, 1499, 6, 96, 6936, 5407, 22122, 9830, 399, 215, 11704, 431, 8475, 7, 61, 28272, 121, 490, 6, 96, 12988, 3728, 545, 13, 1252, 792, 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, 12988, 3728, 545, 13, 1252, 792, 121, 21680, 953, 834, 22823, 4433, 549, 17444, 427, 96, 6936, 5407, 22122, 9830, 399, 215, 41, 382, 106, 7, 399, 568, 61, 3, 27964, 121, 3274, 3, 31, 27336, 31, 1, -100, -100, ...
List the companies of entrepreneurs in descending order of money requested.
CREATE TABLE entrepreneur (Company VARCHAR, Money_Requested VARCHAR)
SELECT Company FROM entrepreneur ORDER BY Money_Requested DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 3, 12290, 41, 5890, 2837, 63, 584, 4280, 28027, 6, 8833, 834, 1649, 835, 6265, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 6792, 8, 688, 13, 9970, 16, 3, 30960, 455, 13, 540...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1958, 21680, 3, 12290, 4674, 11300, 272, 476, 8833, 834, 1649, 835, 6265, 309, 25067, 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 English title of Ladrones Y Mentirosos?
CREATE TABLE table_27423508_1 (english_title VARCHAR, spanish_title VARCHAR)
SELECT english_title FROM table_27423508_1 WHERE spanish_title = "Ladrones y mentirosos"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2555, 4165, 2469, 4018, 834, 536, 41, 4606, 40, 1273, 834, 21869, 584, 4280, 28027, 6, 8438, 1273, 834, 21869, 584, 4280, 28027, 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, 1, 1, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 22269, 834, 21869, 21680, 953, 834, 2555, 4165, 2469, 4018, 834, 536, 549, 17444, 427, 8438, 1273, 834, 21869, 3274, 96, 3612, 18935, 15, 7, 3, 63, 3, 297, 23, 1859, 32, 7, 121, 1, -100, -100, -100, -100, -100, -1...
What was date of appointment for Erg n Penbe?
CREATE TABLE table_29307 ( "Team" text, "Outgoing manager" text, "Manner of departure" text, "Date of vacancy" text, "Replaced by" text, "Date of appointment" text )
SELECT "Date of appointment" FROM table_29307 WHERE "Replaced by" = 'Ergün Penbe'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3166, 1458, 940, 41, 96, 18699, 121, 1499, 6, 96, 15767, 9545, 2743, 121, 1499, 6, 96, 7296, 687, 13, 12028, 121, 1499, 6, 96, 308, 342, 13, 3, 29685, 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, 308, 342, 13, 4141, 121, 21680, 953, 834, 3166, 1458, 940, 549, 17444, 427, 96, 1649, 4687, 26, 57, 121, 3274, 3, 31, 10575, 122, 1272, 29, 4511, 346, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What was the lowest attendance at a game against the St. Louis Cardinals?
CREATE TABLE table_39462 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Record" text, "Game Site" text, "Attendance" real )
SELECT MIN("Attendance") FROM table_39462 WHERE "Opponent" = 'st. louis cardinals'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3288, 4448, 357, 41, 96, 518, 10266, 121, 490, 6, 96, 308, 342, 121, 1499, 6, 96, 667, 102, 9977, 121, 1499, 6, 96, 20119, 121, 1499, 6, 96, 1649, 7621, 121, 1499, 6, 9...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 17684, 599, 121, 188, 17, 324, 26, 663, 8512, 21680, 953, 834, 3288, 4448, 357, 549, 17444, 427, 96, 667, 102, 9977, 121, 3274, 3, 31, 7, 17, 5, 16585, 159, 895, 10270, 7, 31, 1, -100, -100, -100, -100, -100,...
What's the Nordbayern with a Württemberg of Union Böckingen in the year before 1932?
CREATE TABLE table_name_92 (nordbayern VARCHAR, year VARCHAR, württemberg VARCHAR)
SELECT nordbayern FROM table_name_92 WHERE year < 1932 AND württemberg = "union böckingen"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4508, 41, 29, 127, 26, 11119, 49, 29, 584, 4280, 28027, 6, 215, 584, 4280, 28027, 6, 3, 14638, 17, 3524, 2235, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 3210...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 9532, 11119, 49, 29, 21680, 953, 834, 4350, 834, 4508, 549, 17444, 427, 215, 3, 2, 957, 2668, 3430, 3, 14638, 17, 3524, 2235, 3274, 96, 16598, 3, 115, 28142, 53, 35, 121, 1, -100, -100, -100, -100, -100, -100, -10...
How many students are there for each major?
CREATE TABLE allergy_type ( allergy text, allergytype text ) CREATE TABLE has_allergy ( stuid number, allergy text ) CREATE TABLE student ( stuid number, lname text, fname text, age number, sex text, major number, advisor number, city_code text )
SELECT major, COUNT(*) FROM student GROUP BY major
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 23886, 834, 6137, 41, 23886, 1499, 6, 23886, 6137, 1499, 3, 61, 3, 32102, 32103, 32102, 205, 4386, 6048, 332, 17098, 65, 834, 11211, 122, 63, 41, 21341, 23, 26, 381, 6, 23886, 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, 779, 6, 2847, 17161, 599, 1935, 61, 21680, 1236, 350, 4630, 6880, 272, 476, 779, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
how many of the male patients had dysthymic disorder?
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 diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.gender = "M" AND diagnoses.long_title = "Dysthymic disorder"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7690, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 2118, 23, 26, 1499, 6, 5059, 715, 1499, 6, 5692, 1499, 6, 701, 834, 15129, 1499, 6, 3783, 1499, 6, 5798, 1499...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 18730, 7, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 18730, 7, 5, 8399, 51, 834, 23, 26, 5...
What's the name of the team that went 113.316mph?
CREATE TABLE table_name_18 ( team VARCHAR, speed VARCHAR )
SELECT team FROM table_name_18 WHERE speed = "113.316mph"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2606, 41, 372, 584, 4280, 28027, 6, 1634, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 31, 7, 8, 564, 13, 8, 372, 24, 877, 3, 20522, 5, 25946, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 372, 21680, 953, 834, 4350, 834, 2606, 549, 17444, 427, 1634, 3274, 96, 20522, 5, 25946, 7656, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
How many games were lost when the club got 34 points
CREATE TABLE table_19179465_1 ( lost INTEGER, points VARCHAR )
SELECT MIN(lost) FROM table_19179465_1 WHERE points = 34
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2294, 2517, 4240, 4122, 834, 536, 41, 1513, 3, 21342, 17966, 6, 979, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 571, 186, 1031, 130, 1513, 116, 8, 1886, 530, 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, 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, 2298, 17, 61, 21680, 953, 834, 2294, 2517, 4240, 4122, 834, 536, 549, 17444, 427, 979, 3274, 6154, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Can you tell me the sum of Laps that has the Manufacturer of kawasaki, and the Grid smaller than 7?
CREATE TABLE table_name_88 ( laps INTEGER, manufacturer VARCHAR, grid VARCHAR )
SELECT SUM(laps) FROM table_name_88 WHERE manufacturer = "kawasaki" AND grid < 7
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4060, 41, 14941, 7, 3, 21342, 17966, 6, 4818, 584, 4280, 28027, 6, 8634, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 1072, 25, 817, 140, 8, 4505, 13,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 180, 6122, 599, 8478, 7, 61, 21680, 953, 834, 4350, 834, 4060, 549, 17444, 427, 4818, 3274, 96, 1258, 9491, 11259, 121, 3430, 8634, 3, 2, 489, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Wha episode number in the series had 24.8 million u.s. viewers?
CREATE TABLE table_29801 ( "No. in series" real, "No. in season" real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text, "Production code" real, "U.S. viewers (millions)" text )
SELECT MIN("No. in series") FROM table_29801 WHERE "U.S. viewers (millions)" = '24.8'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3166, 2079, 536, 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, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 17684, 599, 121, 4168, 5, 16, 939, 8512, 21680, 953, 834, 3166, 2079, 536, 549, 17444, 427, 96, 1265, 5, 134, 5, 13569, 41, 17030, 7, 61, 121, 3274, 3, 31, 357, 27441, 31, 1, -100, -100, -100, -100, -100, -10...
provide the number of patients with diagnoses icd9 code 317 who were admitted for more than 34 days.
CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_dose text ) CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob te...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.days_stay > "34" AND diagnoses.icd9_code = "317"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 7744, 7, 41, 1426, 834, 23, 26, 1499, 6, 141, 51, 834, 23, 26, 1499, 6, 3, 23, 1071, 21545, 834, 23, 26, 1499, 6, 2672, 834, 6137, 1499, 6, 2672, 1499, 6, 5403, 651, 834, 26, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 15438, 25424, 6227, 14798, 5, 7304, 11827, 834, 23, 26, 61, 21680, 14798, 3388, 18206, 3, 15355, 3162, 18730, 7, 9191, 14798, 5, 8399, 51, 834, 23, 26, 3274, 18730, 7, 5, 8399, 51, 834, 23, 26, 5...
What is the highest amount of silver when gold is 1 and bronze larger than 0?
CREATE TABLE table_name_40 (silver INTEGER, gold VARCHAR, bronze VARCHAR)
SELECT MAX(silver) FROM table_name_40 WHERE gold = 1 AND bronze > 0
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2445, 41, 7, 173, 624, 3, 21342, 17966, 6, 2045, 584, 4280, 28027, 6, 13467, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 2030, 866, 13, 4294...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 7, 173, 624, 61, 21680, 953, 834, 4350, 834, 2445, 549, 17444, 427, 2045, 3274, 209, 3430, 13467, 2490, 3, 632, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
For which constructor does Juan Manuel Fangio drive?
CREATE TABLE table_name_59 (constructor VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_59 WHERE driver = "juan manuel fangio"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3390, 41, 15982, 5317, 584, 4280, 28027, 6, 2535, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 242, 84, 6774, 127, 405, 15597, 21630, 8362, 10253, 1262, 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, 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, 6774, 127, 21680, 953, 834, 4350, 834, 3390, 549, 17444, 427, 2535, 3274, 96, 2047, 152, 19901, 1819, 10253, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Who was the bachelorette of the season where ian mckee was the winner?
CREATE TABLE table_47517 ( "Season" real, "Premiered" text, "Bachelorette" text, "Profile" text, "Winner" text, "Runner(s)-Up" text, "Proposal" text )
SELECT "Bachelorette" FROM table_47517 WHERE "Winner" = 'ian mckee'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 591, 3072, 2517, 41, 96, 134, 15, 9, 739, 121, 490, 6, 96, 10572, 2720, 1271, 121, 1499, 6, 96, 279, 4933, 322, 1954, 121, 1499, 6, 96, 23057, 699, 121, 1499, 6, 96, 18...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 279, 4933, 322, 1954, 121, 21680, 953, 834, 591, 3072, 2517, 549, 17444, 427, 96, 18455, 687, 121, 3274, 3, 31, 23, 152, 3, 51, 8849, 15, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
what is the year when the position is 1/22 promoted and the leading scorer is james dean (27)?
CREATE TABLE table_name_81 (year VARCHAR, position VARCHAR, leading_scorer VARCHAR)
SELECT year FROM table_name_81 WHERE position = "1/22 promoted" AND leading_scorer = "james dean (27)"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4959, 41, 1201, 584, 4280, 28027, 6, 1102, 584, 4280, 28027, 6, 1374, 834, 7, 5715, 49, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 125, 19, 8, 215, 116...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 215, 21680, 953, 834, 4350, 834, 4959, 549, 17444, 427, 1102, 3274, 96, 17637, 357, 14742, 121, 3430, 1374, 834, 7, 5715, 49, 3274, 96, 1191, 2687, 20, 152, 4743, 12703, 121, 1, -100, -100, -100, -100, -100, -100, -...
With a record of 48-51 for the team, the lowest 2005 attendance was listed as how many?
CREATE TABLE table_name_35 ( attendance INTEGER, record VARCHAR )
SELECT MIN(attendance) FROM table_name_35 WHERE record = "48-51"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2469, 41, 11364, 3, 21342, 17966, 6, 1368, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 438, 3, 9, 1368, 13, 4678, 18, 5553, 21, 8, 372, 6, 8, 7402,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 17684, 599, 15116, 663, 61, 21680, 953, 834, 4350, 834, 2469, 549, 17444, 427, 1368, 3274, 96, 3707, 18, 5553, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Who is the player in 20th place?
CREATE TABLE table_64425 ( "Player" text, "Original Season" text, "Gender" text, "Eliminated" text, "Placing" text )
SELECT "Player" FROM table_64425 WHERE "Placing" = '20th place'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4389, 591, 1828, 41, 96, 15800, 49, 121, 1499, 6, 96, 667, 3380, 10270, 7960, 121, 1499, 6, 96, 517, 3868, 121, 1499, 6, 96, 427, 4941, 77, 920, 121, 1499, 6, 96, 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, 96, 15800, 49, 121, 21680, 953, 834, 4389, 591, 1828, 549, 17444, 427, 96, 345, 9700, 53, 121, 3274, 3, 31, 1755, 189, 286, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which City has a Lead of tyler forrest?
CREATE TABLE table_49159 ( "Skip" text, "Third/Vice skip" text, "Second" text, "Lead" text, "City" text )
SELECT "City" FROM table_49159 WHERE "Lead" = 'tyler forrest'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 3647, 27904, 41, 96, 134, 2168, 102, 121, 1499, 6, 96, 382, 9288, 26, 87, 553, 867, 11202, 121, 1499, 6, 96, 134, 15, 1018, 26, 121, 1499, 6, 96, 2796, 9, 26, 121, 1499...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 96, 254, 485, 121, 21680, 953, 834, 3647, 27904, 549, 17444, 427, 96, 2796, 9, 26, 121, 3274, 3, 31, 17, 63, 1171, 21, 6216, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the week 4 opponent for the year with a week 10 opponent of Michigan State (8-2)?
CREATE TABLE table_name_30 (week_4_sept_21 VARCHAR, week_10_nov_2 VARCHAR)
SELECT week_4_sept_21 FROM table_name_30 WHERE week_10_nov_2 = "michigan state (8-2)"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1458, 41, 8041, 834, 591, 834, 7, 6707, 834, 2658, 584, 4280, 28027, 6, 471, 834, 1714, 834, 5326, 834, 357, 584, 4280, 28027, 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, 471, 834, 591, 834, 7, 6707, 834, 2658, 21680, 953, 834, 4350, 834, 1458, 549, 17444, 427, 471, 834, 1714, 834, 5326, 834, 357, 3274, 96, 51, 362, 12588, 538, 13642, 18, 7318, 121, 1, -100, -100, -100, -100, -100, ...
How many different genres appear for the Jimi Hendrix Experience?
CREATE TABLE table_28749 ( "Song title" text, "Artist" text, "Year Year of songs original release, as listed in Rock Band 3" real, "Genre" text, "Keyboard support" text, "Vocal parts" real, "Nintendo DS setlist" text )
SELECT COUNT("Genre") FROM table_28749 WHERE "Artist" = 'The Jimi Hendrix Experience'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 357, 4225, 3647, 41, 96, 134, 2444, 2233, 121, 1499, 6, 96, 7754, 343, 121, 1499, 6, 96, 476, 2741, 2929, 13, 3605, 926, 1576, 6, 38, 2616, 16, 3120, 4483, 220, 121, 490,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 121, 13714, 60, 8512, 21680, 953, 834, 357, 4225, 3647, 549, 17444, 427, 96, 7754, 343, 121, 3274, 3, 31, 634, 6006, 23, 216, 727, 52, 2407, 7187, 31, 1, -100, -100, -100, -100, -100, -100, -100, ...
Show all origins and the number of flights from each origin by a bar chart, display by the y axis in descending.
CREATE TABLE flight ( flno number(4,0), origin varchar2(20), destination varchar2(20), distance number(6,0), departure_date date, arrival_date date, price number(7,2), aid number(9,0) ) CREATE TABLE certificate ( eid number(9,0), aid number(9,0) ) CREATE TABLE aircraft ( ai...
SELECT origin, COUNT(*) FROM flight GROUP BY origin ORDER BY COUNT(*) DESC
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 3777, 41, 3, 89, 40, 29, 32, 381, 599, 8525, 632, 201, 5233, 3, 4331, 4059, 357, 599, 1755, 201, 3954, 3, 4331, 4059, 357, 599, 1755, 201, 2357, 381, 599, 11071, 632, 201, 12028, 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, 5233, 6, 2847, 17161, 599, 1935, 61, 21680, 3777, 350, 4630, 6880, 272, 476, 5233, 4674, 11300, 272, 476, 2847, 17161, 599, 1935, 61, 309, 25067, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What is the round where there was a KO (punch)?
CREATE TABLE table_name_64 ( round VARCHAR, method VARCHAR )
SELECT round FROM table_name_64 WHERE method = "ko (punch)"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4389, 41, 1751, 584, 4280, 28027, 6, 1573, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 1751, 213, 132, 47, 3, 9, 3, 12725, 41, 6225, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1751, 21680, 953, 834, 4350, 834, 4389, 549, 17444, 427, 1573, 3274, 96, 157, 32, 41, 6225, 524, 61, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which Year has a Qual of 144.683 and Lap larger than 27?
CREATE TABLE table_name_66 (year VARCHAR, laps VARCHAR, qual VARCHAR)
SELECT year FROM table_name_66 WHERE laps > 27 AND qual = "144.683"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3539, 41, 1201, 584, 4280, 28027, 6, 14941, 7, 584, 4280, 28027, 6, 3, 11433, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 4073, 2929, 65, 3, 9, 2415, 13...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 215, 21680, 953, 834, 4350, 834, 3539, 549, 17444, 427, 14941, 7, 2490, 2307, 3430, 3, 11433, 3274, 96, 2534, 25652, 4591, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
Name the least week for l 26 42
CREATE TABLE table_26401898_2 ( week INTEGER, final_score VARCHAR )
SELECT MIN(week) FROM table_26401898_2 WHERE final_score = "L 26–42"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 2688, 2445, 2606, 3916, 834, 357, 41, 471, 3, 21342, 17966, 6, 804, 834, 7, 9022, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 5570, 8, 709, 471, 21, 3, 40, 22...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 17684, 599, 8041, 61, 21680, 953, 834, 2688, 2445, 2606, 3916, 834, 357, 549, 17444, 427, 804, 834, 7, 9022, 3274, 96, 434, 2208, 104, 4165, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Name the episode for jenny bicks and cindy chupack nominees in 2004
CREATE TABLE table_name_16 (episode VARCHAR, year VARCHAR, nominee_s_ VARCHAR)
SELECT episode FROM table_name_16 WHERE year = 2004 AND nominee_s_ = "jenny bicks and cindy chupack"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2938, 41, 15, 102, 159, 32, 221, 584, 4280, 28027, 6, 215, 584, 4280, 28027, 6, 21077, 834, 7, 834, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 5570, 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, 5640, 21680, 953, 834, 4350, 834, 2938, 549, 17444, 427, 215, 3274, 4406, 3430, 21077, 834, 7, 834, 3274, 96, 354, 35, 29, 63, 3, 115, 3142, 7, 11, 3, 23623, 63, 3, 8019, 5745, 121, 1, -100, -100, -100, -100, -1...
what is the total number of sesamin were secoisolariciresinol is 240?
CREATE TABLE table_1831262_2 (sesamin VARCHAR, secoisolariciresinol VARCHAR)
SELECT sesamin FROM table_1831262_2 WHERE secoisolariciresinol = 240
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 24361, 2122, 4056, 834, 357, 41, 2260, 9, 1109, 584, 4280, 28027, 6, 142, 509, 159, 17401, 1294, 60, 7, 77, 32, 40, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 125...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 1394, 9, 1109, 21680, 953, 834, 24361, 2122, 4056, 834, 357, 549, 17444, 427, 142, 509, 159, 17401, 1294, 60, 7, 77, 32, 40, 3274, 3, 11944, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is the On-air ID of the broadcaster at frequency 0 801?
CREATE TABLE table_8765 ( "Callsign" text, "Frequency" text, "Band" text, "On-air ID" text, "Purpose" text )
SELECT "On-air ID" FROM table_8765 WHERE "Frequency" = '0 801'
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4225, 4122, 41, 96, 254, 1748, 6732, 121, 1499, 6, 96, 371, 60, 835, 11298, 121, 1499, 6, 96, 279, 232, 121, 1499, 6, 96, 7638, 18, 2256, 4699, 121, 1499, 6, 96, 345, 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, 7638, 18, 2256, 4699, 121, 21680, 953, 834, 4225, 4122, 549, 17444, 427, 96, 371, 60, 835, 11298, 121, 3274, 3, 31, 632, 2775, 536, 31, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the class of the word who's second participle is laug?
CREATE TABLE table_1745843_5 (class VARCHAR, part_2 VARCHAR)
SELECT class FROM table_1745843_5 WHERE part_2 = "laug"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 27693, 3449, 4906, 834, 755, 41, 4057, 584, 4280, 28027, 6, 294, 834, 357, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 853, 13, 8, 1448, 113, 31, 7, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 853, 21680, 953, 834, 27693, 3449, 4906, 834, 755, 549, 17444, 427, 294, 834, 357, 3274, 96, 40, 402, 122, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the score of the game that had a visiting team of Edmonton?
CREATE TABLE table_name_93 ( score VARCHAR, visitor VARCHAR )
SELECT score FROM table_name_93 WHERE visitor = "edmonton"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4271, 41, 2604, 584, 4280, 28027, 6, 7019, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 8, 2604, 13, 8, 467, 24, 141, 3, 9, 3644, 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, 2604, 21680, 953, 834, 4350, 834, 4271, 549, 17444, 427, 7019, 3274, 96, 15, 26, 4662, 106, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the network brand name of the company vodafone group in Germany?
CREATE TABLE table_name_45 ( network_brand_name VARCHAR, company_name VARCHAR, country VARCHAR )
SELECT network_brand_name FROM table_name_45 WHERE company_name = "vodafone group" AND country = "germany"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2128, 41, 1229, 834, 12164, 834, 4350, 584, 4280, 28027, 6, 349, 834, 4350, 584, 4280, 28027, 6, 684, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 363, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0...
[ 3, 23143, 14196, 1229, 834, 12164, 834, 4350, 21680, 953, 834, 4350, 834, 2128, 549, 17444, 427, 349, 834, 4350, 3274, 96, 1621, 26, 9, 89, 782, 563, 121, 3430, 684, 3274, 96, 1304, 348, 63, 121, 1, -100, -100, -100, -100, -100, -...
What is H/A/N, when Record is 20-48?
CREATE TABLE table_name_64 (h_a_n VARCHAR, record VARCHAR)
SELECT h_a_n FROM table_name_64 WHERE record = "20-48"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4389, 41, 107, 834, 9, 834, 29, 584, 4280, 28027, 6, 1368, 584, 4280, 28027, 61, 3, 32102, 32103, 32101, 32103, 363, 19, 454, 87, 188, 87, 567, 6, 116, 11392, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 107, 834, 9, 834, 29, 21680, 953, 834, 4350, 834, 4389, 549, 17444, 427, 1368, 3274, 96, 1755, 18, 3707, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Who was the away team at the game at Kardinia Park?
CREATE TABLE table_name_99 ( away_team VARCHAR, venue VARCHAR )
SELECT away_team FROM table_name_99 WHERE venue = "kardinia park"
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3264, 41, 550, 834, 11650, 584, 4280, 28027, 6, 5669, 584, 4280, 28027, 3, 61, 3, 32102, 32103, 32101, 32103, 2645, 47, 8, 550, 372, 44, 8, 467, 44, 4556, 2644, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 550, 834, 11650, 21680, 953, 834, 4350, 834, 3264, 549, 17444, 427, 5669, 3274, 96, 4031, 2644, 23, 9, 2447, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What is the total number of FA Cup Goals, when FLT Goals is greater than 0?
CREATE TABLE table_name_47 ( fa_cup_goals VARCHAR, flt_goals INTEGER )
SELECT COUNT(fa_cup_goals) FROM table_name_47 WHERE flt_goals > 0
[ 32100, 32103, 32102, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4177, 41, 3, 89, 9, 834, 4658, 834, 839, 5405, 584, 4280, 28027, 6, 3, 89, 40, 17, 834, 839, 5405, 3, 21342, 17966, 3, 61, 3, 32102, 32103, 32101, 32103, 363, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 89, 9, 834, 4658, 834, 839, 5405, 61, 21680, 953, 834, 4350, 834, 4177, 549, 17444, 427, 3, 89, 40, 17, 834, 839, 5405, 2490, 3, 632, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...