NATURAL_LANG
stringlengths
12
244
SQL
stringlengths
18
336
SCHEMA
stringlengths
27
355
input_ids
list
attention_mask
list
labels
list
What is the highest position of the team having played under 10 matches?
SELECT MAX(position) FROM table_name_73 WHERE played < 10
CREATE TABLE table_name_73 (position INTEGER, played INTEGER)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4552, 41, 4718, 3, 21342, 17966, 6, 1944, 3, 21342, 17966, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 2030, 1102, 13, 8, 372, 578, 1944, 365, 335, 6407, 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, 4800, 4, 599, 4718, 61, 21680, 953, 834, 4350, 834, 4552, 549, 17444, 427, 1944, 3, 2, 335, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the total number of played values for teams with more than 14 points and more than 1 draw?
SELECT COUNT(played) FROM table_name_84 WHERE points > 14 AND drawn > 1
CREATE TABLE table_name_84 (played VARCHAR, points VARCHAR, drawn VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4608, 41, 4895, 15, 26, 584, 4280, 28027, 6, 979, 584, 4280, 28027, 6, 6796, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 792, 381, 13, 1944,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 4895, 15, 26, 61, 21680, 953, 834, 4350, 834, 4608, 549, 17444, 427, 979, 2490, 968, 3430, 6796, 2490, 209, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What is the total number of positions having points over 2, more than 4 losses, and under 10 matches played?
SELECT COUNT(position) FROM table_name_20 WHERE points > 2 AND lost > 4 AND played < 10
CREATE TABLE table_name_20 (position VARCHAR, played VARCHAR, points VARCHAR, lost VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1755, 41, 4718, 584, 4280, 28027, 6, 1944, 584, 4280, 28027, 6, 979, 584, 4280, 28027, 6, 1513, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 4718, 61, 21680, 953, 834, 4350, 834, 1755, 549, 17444, 427, 979, 2490, 204, 3430, 1513, 2490, 314, 3430, 1944, 3, 2, 335, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
WHich Televotes has a Performer of biljana dodeva, and a Draw larger than 10?
SELECT MIN(televotes) FROM table_name_59 WHERE performer = "biljana dodeva" AND draw > 10
CREATE TABLE table_name_59 (televotes INTEGER, performer VARCHAR, draw VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3390, 41, 1931, 1621, 1422, 3, 21342, 17966, 6, 1912, 49, 584, 4280, 28027, 6, 3314, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 3, 15313, 362, 7338, 1621...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1931, 1621, 1422, 61, 21680, 953, 834, 4350, 834, 3390, 549, 17444, 427, 1912, 49, 3274, 96, 3727, 7066, 9, 103, 9776, 9, 121, 3430, 3314, 2490, 335, 1, -100, -100, -100, -100, -100, -100, -100, -100,...
Name the highest Draw which has a Rank of 14, and a Televotes larger than 908?
SELECT MAX(draw) FROM table_name_77 WHERE rank = 14 AND televotes > 908
CREATE TABLE table_name_77 (draw INTEGER, rank VARCHAR, televotes VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4013, 41, 19489, 3, 21342, 17966, 6, 11003, 584, 4280, 28027, 6, 3, 1931, 1621, 1422, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 5570, 8, 2030, 19183, 84...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 4800, 4, 599, 19489, 61, 21680, 953, 834, 4350, 834, 4013, 549, 17444, 427, 11003, 3274, 968, 3430, 3, 1931, 1621, 1422, 2490, 2777, 927, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Name the lowest Televotes which has monika sokolovska and a Rank larger than 15?
SELECT MIN(televotes) FROM table_name_54 WHERE performer = "monika sokolovska" AND rank > 15
CREATE TABLE table_name_54 (televotes INTEGER, performer VARCHAR, rank VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 5062, 41, 1931, 1621, 1422, 3, 21342, 17966, 6, 1912, 49, 584, 4280, 28027, 6, 11003, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 5570, 8, 7402, 7338, 162...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0...
[ 3, 23143, 14196, 3, 17684, 599, 1931, 1621, 1422, 61, 21680, 953, 834, 4350, 834, 5062, 549, 17444, 427, 1912, 49, 3274, 96, 8823, 1258, 3, 7, 12948, 5850, 10717, 121, 3430, 11003, 2490, 627, 1, -100, -100, -100, -100, -100, -100, -...
Name the lowest Draw which has a Performer of kaliopi and a Televotes larger than 3834?
SELECT MIN(draw) FROM table_name_18 WHERE performer = "kaliopi" AND televotes > 3834
CREATE TABLE table_name_18 (draw INTEGER, performer VARCHAR, televotes VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2606, 41, 19489, 3, 21342, 17966, 6, 1912, 49, 584, 4280, 28027, 6, 3, 1931, 1621, 1422, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 5570, 8, 7402, 19183,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 19489, 61, 21680, 953, 834, 4350, 834, 2606, 549, 17444, 427, 1912, 49, 3274, 96, 4766, 23, 15405, 121, 3430, 3, 1931, 1621, 1422, 2490, 6654, 3710, 1, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is Total, when Player is "Hale Irwin"?
SELECT total FROM table_name_12 WHERE player = "hale irwin"
CREATE TABLE table_name_12 (total VARCHAR, player VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2122, 41, 235, 1947, 584, 4280, 28027, 6, 1959, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 9273, 6, 116, 12387, 19, 96, 566, 9, 109, 27, 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, 792, 21680, 953, 834, 4350, 834, 2122, 549, 17444, 427, 1959, 3274, 96, 3828, 15, 3, 23, 52, 3757, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is Player, when Country is "United States", and when To Par is "WD"?
SELECT player FROM table_name_79 WHERE country = "united states" AND to_par = "wd"
CREATE TABLE table_name_79 (player VARCHAR, country VARCHAR, to_par VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4440, 41, 20846, 584, 4280, 28027, 6, 684, 584, 4280, 28027, 6, 12, 834, 1893, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 12387, 6, 116, 6993, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1959, 21680, 953, 834, 4350, 834, 4440, 549, 17444, 427, 684, 3274, 96, 15129, 15, 26, 2315, 121, 3430, 12, 834, 1893, 3274, 96, 210, 26, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is Player, when Total is "154"?
SELECT player FROM table_name_73 WHERE total = "154"
CREATE TABLE table_name_73 (player VARCHAR, total VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4552, 41, 20846, 584, 4280, 28027, 6, 792, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 12387, 6, 116, 9273, 19, 96, 27308, 121, 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, 1959, 21680, 953, 834, 4350, 834, 4552, 549, 17444, 427, 792, 3274, 96, 27308, 121, 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 Player, when Country is "United States", and when Total is "154"?
SELECT player FROM table_name_48 WHERE country = "united states" AND total = "154"
CREATE TABLE table_name_48 (player VARCHAR, country VARCHAR, total VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3707, 41, 20846, 584, 4280, 28027, 6, 684, 584, 4280, 28027, 6, 792, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 12387, 6, 116, 6993, 19, 96, 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, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1959, 21680, 953, 834, 4350, 834, 3707, 549, 17444, 427, 684, 3274, 96, 15129, 15, 26, 2315, 121, 3430, 792, 3274, 96, 27308, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is Country, when To Par is "+11"?
SELECT country FROM table_name_37 WHERE to_par = "+11"
CREATE TABLE table_name_37 (country VARCHAR, to_par VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4118, 41, 17529, 584, 4280, 28027, 6, 12, 834, 1893, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 6993, 6, 116, 304, 2180, 19, 96, 1220, 2596, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 684, 21680, 953, 834, 4350, 834, 4118, 549, 17444, 427, 12, 834, 1893, 3274, 96, 1220, 2596, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What is Country, when Player is "Hale Irwin"?
SELECT country FROM table_name_96 WHERE player = "hale irwin"
CREATE TABLE table_name_96 (country VARCHAR, player VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4314, 41, 17529, 584, 4280, 28027, 6, 1959, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 6993, 6, 116, 12387, 19, 96, 566, 9, 109, 27, 52, 3757,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 684, 21680, 953, 834, 4350, 834, 4314, 549, 17444, 427, 1959, 3274, 96, 3828, 15, 3, 23, 52, 3757, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the lowest interview score for Missouri, where the swimsuit score was highter than 9.433?
SELECT MIN(interview) FROM table_name_66 WHERE country = "missouri" AND swimsuit > 9.433
CREATE TABLE table_name_66 (interview INTEGER, country VARCHAR, swimsuit VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3539, 41, 3870, 4576, 3, 21342, 17966, 6, 684, 584, 4280, 28027, 6, 9728, 7628, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 7402, 2772, 2604, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 17684, 599, 3870, 4576, 61, 21680, 953, 834, 4350, 834, 3539, 549, 17444, 427, 684, 3274, 96, 11502, 32, 459, 121, 3430, 9728, 7628, 2490, 5835, 4906, 519, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the sum of Preliminary scores where the interview score is 9.654 and the average score is lower than 9.733?
SELECT SUM(preliminary) FROM table_name_84 WHERE interview = 9.654 AND average < 9.733
CREATE TABLE table_name_84 (preliminary INTEGER, interview VARCHAR, average VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4608, 41, 2026, 4941, 77, 1208, 3, 21342, 17966, 6, 2772, 584, 4280, 28027, 6, 1348, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 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, 1...
[ 3, 23143, 14196, 180, 6122, 599, 2026, 4941, 77, 1208, 61, 21680, 953, 834, 4350, 834, 4608, 549, 17444, 427, 2772, 3274, 5835, 4122, 591, 3430, 1348, 3, 2, 5835, 4552, 519, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What is the sum of Swimsuit scores where the average score is 9.733 and the interview score is higher than 9.654?
SELECT SUM(swimsuit) FROM table_name_79 WHERE average = 9.733 AND interview > 9.654
CREATE TABLE table_name_79 (swimsuit INTEGER, average VARCHAR, interview VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4440, 41, 7, 210, 603, 7628, 3, 21342, 17966, 6, 1348, 584, 4280, 28027, 6, 2772, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 4505, 13, 2781...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 7, 210, 603, 7628, 61, 21680, 953, 834, 4350, 834, 4440, 549, 17444, 427, 1348, 3274, 5835, 4552, 519, 3430, 2772, 2490, 5835, 4122, 591, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the sum of Evening Gown scores where the swimsuit score is higher than 9.4 and the average score is lower than 9.733?
SELECT SUM(evening_gown) FROM table_name_88 WHERE swimsuit > 9.4 AND average < 9.733
CREATE TABLE table_name_88 (evening_gown INTEGER, swimsuit VARCHAR, average VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4060, 41, 6190, 53, 834, 122, 9197, 3, 21342, 17966, 6, 9728, 7628, 584, 4280, 28027, 6, 1348, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 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, 180, 6122, 599, 6190, 53, 834, 122, 9197, 61, 21680, 953, 834, 4350, 834, 4060, 549, 17444, 427, 9728, 7628, 2490, 5835, 591, 3430, 1348, 3, 2, 5835, 4552, 519, 1, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the lowest average score where the evening gown score was 8.811?
SELECT MIN(average) FROM table_name_48 WHERE evening_gown = 8.811
CREATE TABLE table_name_48 (average INTEGER, evening_gown VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3707, 41, 28951, 3, 21342, 17966, 6, 2272, 834, 122, 9197, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 7402, 1348, 2604, 213, 8, 2272, 19879, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 17684, 599, 28951, 61, 21680, 953, 834, 4350, 834, 3707, 549, 17444, 427, 2272, 834, 122, 9197, 3274, 4848, 927, 2596, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
For a team with a goals against less than 58, a position of 10, and a points 2 more than 53, what is the average lost?
SELECT AVG(lost) FROM table_name_37 WHERE goals_against < 58 AND position = 10 AND points_2 > 53
CREATE TABLE table_name_37 (lost INTEGER, points_2 VARCHAR, goals_against VARCHAR, position VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4118, 41, 2298, 17, 3, 21342, 17966, 6, 979, 834, 357, 584, 4280, 28027, 6, 1766, 834, 9, 16720, 7, 17, 584, 4280, 28027, 6, 1102, 584, 4280, 28027, 61, 3, 321...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2298, 17, 61, 21680, 953, 834, 4350, 834, 4118, 549, 17444, 427, 1766, 834, 9, 16720, 7, 17, 3, 2, 3, 3449, 3430, 1102, 3274, 335, 3430, 979, 834, 357, 2490, 12210, 1, -100, -100, -100, -100, -100,...
For a team having goals for more than 95, what is the lowest position?
SELECT MIN(position) FROM table_name_95 WHERE goals_for > 95
CREATE TABLE table_name_95 (position INTEGER, goals_for INTEGER)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3301, 41, 4718, 3, 21342, 17966, 6, 1766, 834, 1161, 3, 21342, 17966, 61, 3, 32105, 32106, 32107, 32106, 242, 3, 9, 372, 578, 1766, 21, 72, 145, 11923, 6, 125, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 17684, 599, 4718, 61, 21680, 953, 834, 4350, 834, 3301, 549, 17444, 427, 1766, 834, 1161, 2490, 11923, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the function percentage when the estimated function percentage is 20?
SELECT function__percentage FROM table_name_30 WHERE estimated_function__percentage = 20
CREATE TABLE table_name_30 (function__percentage VARCHAR, estimated_function__percentage VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1458, 41, 23993, 834, 834, 883, 3728, 545, 584, 4280, 28027, 6, 5861, 834, 23993, 834, 834, 883, 3728, 545, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 36...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1681, 834, 834, 883, 3728, 545, 21680, 953, 834, 4350, 834, 1458, 549, 17444, 427, 5861, 834, 23993, 834, 834, 883, 3728, 545, 3274, 460, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What is the measurement where the estimated function % is less than 20?
SELECT measurement FROM table_name_21 WHERE estimated_function__percentage < 20
CREATE TABLE table_name_21 (measurement VARCHAR, estimated_function__percentage INTEGER)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2658, 41, 31038, 297, 584, 4280, 28027, 6, 5861, 834, 23993, 834, 834, 883, 3728, 545, 3, 21342, 17966, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 9753, 213, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 9753, 21680, 953, 834, 4350, 834, 2658, 549, 17444, 427, 5861, 834, 23993, 834, 834, 883, 3728, 545, 3, 2, 460, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the estimated function % when the measurement is 8/8?
SELECT estimated_function__percentage FROM table_name_43 WHERE measurement = "8/8"
CREATE TABLE table_name_43 (estimated_function__percentage VARCHAR, measurement VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4906, 41, 3340, 51, 920, 834, 23993, 834, 834, 883, 3728, 545, 584, 4280, 28027, 6, 9753, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 5861, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 5861, 834, 23993, 834, 834, 883, 3728, 545, 21680, 953, 834, 4350, 834, 4906, 549, 17444, 427, 9753, 3274, 96, 927, 9483, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What place did jacky cupit take when his To par was under 13?
SELECT place FROM table_name_67 WHERE to_par < 13 AND player = "jacky cupit"
CREATE TABLE table_name_67 (place VARCHAR, to_par VARCHAR, player VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3708, 41, 4687, 584, 4280, 28027, 6, 12, 834, 1893, 584, 4280, 28027, 6, 1959, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 286, 410, 3, 9325, 63, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 286, 21680, 953, 834, 4350, 834, 3708, 549, 17444, 427, 12, 834, 1893, 3, 2, 1179, 3430, 1959, 3274, 96, 9325, 63, 123, 5230, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Which united states player had a To par of 12?
SELECT player FROM table_name_63 WHERE to_par = 12 AND country = "united states"
CREATE TABLE table_name_63 (player VARCHAR, to_par VARCHAR, country VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3891, 41, 20846, 584, 4280, 28027, 6, 12, 834, 1893, 584, 4280, 28027, 6, 684, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 4073, 18279, 2315, 1959, 141, 3...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1959, 21680, 953, 834, 4350, 834, 3891, 549, 17444, 427, 12, 834, 1893, 3274, 586, 3430, 684, 3274, 96, 15129, 15, 26, 2315, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Which player had a To par of 13?
SELECT player FROM table_name_78 WHERE to_par = 13
CREATE TABLE table_name_78 (player VARCHAR, to_par VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3940, 41, 20846, 584, 4280, 28027, 6, 12, 834, 1893, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 4073, 1959, 141, 3, 9, 304, 260, 13, 1179, 58, 1, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1959, 21680, 953, 834, 4350, 834, 3940, 549, 17444, 427, 12, 834, 1893, 3274, 1179, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What did vijay singh score with a +5 to par?
SELECT score FROM table_name_92 WHERE to_par = "+5" AND player = "vijay singh"
CREATE TABLE table_name_92 (score VARCHAR, to_par VARCHAR, player VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4508, 41, 7, 9022, 584, 4280, 28027, 6, 12, 834, 1893, 584, 4280, 28027, 6, 1959, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 410, 5931, 1191, 63, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2604, 21680, 953, 834, 4350, 834, 4508, 549, 17444, 427, 12, 834, 1893, 3274, 96, 1220, 17395, 3430, 1959, 3274, 96, 2099, 1191, 63, 10159, 107, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What was the average rank for south africa when they had more than 8 silver medals?
SELECT AVG(rank) FROM table_name_64 WHERE nation = "south africa" AND silver > 8
CREATE TABLE table_name_64 (rank INTEGER, nation VARCHAR, silver VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4389, 41, 6254, 3, 21342, 17966, 6, 2982, 584, 4280, 28027, 6, 4294, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 47, 8, 1348, 11003, 21, 3414, 24040,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 71, 17217, 599, 6254, 61, 21680, 953, 834, 4350, 834, 4389, 549, 17444, 427, 2982, 3274, 96, 7, 670, 107, 24040, 121, 3430, 4294, 2490, 505, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the average number of gold medals the netherlands got when they had more than 4 bronze medals?
SELECT AVG(gold) FROM table_name_47 WHERE nation = "netherlands" AND bronze > 4
CREATE TABLE table_name_47 (gold INTEGER, nation VARCHAR, bronze VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4177, 41, 14910, 3, 21342, 17966, 6, 2982, 584, 4280, 28027, 6, 13467, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 1348, 381, 13, 2045, 9365, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 71, 17217, 599, 14910, 61, 21680, 953, 834, 4350, 834, 4177, 549, 17444, 427, 2982, 3274, 96, 29, 16764, 6347, 121, 3430, 13467, 2490, 314, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What is the sum of the gold medals for the nation of Great britain who had more than 8 silvers and a total of less than 61 medals?
SELECT SUM(gold) FROM table_name_18 WHERE silver > 8 AND nation = "great britain" AND total < 61
CREATE TABLE table_name_18 (gold INTEGER, total VARCHAR, silver VARCHAR, nation VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2606, 41, 14910, 3, 21342, 17966, 6, 792, 584, 4280, 28027, 6, 4294, 584, 4280, 28027, 6, 2982, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 180, 6122, 599, 14910, 61, 21680, 953, 834, 4350, 834, 2606, 549, 17444, 427, 4294, 2490, 505, 3430, 2982, 3274, 96, 20288, 3, 115, 10694, 77, 121, 3430, 792, 3, 2, 3, 4241, 1, -100, -100, -100, -100, -100, -100, ...
What is the highest number of bronze medals that israel acheived when they got less than 3 silver medals?
SELECT MAX(bronze) FROM table_name_29 WHERE nation = "israel" AND silver < 3
CREATE TABLE table_name_29 (bronze INTEGER, nation VARCHAR, silver VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3166, 41, 13711, 776, 3, 21342, 17966, 6, 2982, 584, 4280, 28027, 6, 4294, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 2030, 381, 13, 13467, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 13711, 776, 61, 21680, 953, 834, 4350, 834, 3166, 549, 17444, 427, 2982, 3274, 96, 30178, 121, 3430, 4294, 3, 2, 220, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What is the total number of gold medals when the team got 2 bronze and more than 5 silver medals?
SELECT COUNT(gold) FROM table_name_93 WHERE bronze = 2 AND silver > 5
CREATE TABLE table_name_93 (gold VARCHAR, bronze VARCHAR, silver VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4271, 41, 14910, 584, 4280, 28027, 6, 13467, 584, 4280, 28027, 6, 4294, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 792, 381, 13, 2045, 9365, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 14910, 61, 21680, 953, 834, 4350, 834, 4271, 549, 17444, 427, 13467, 3274, 204, 3430, 4294, 2490, 305, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is Partner, when Surface is Hard, and when Score is 6–3, 7–6(0)?
SELECT partner FROM table_name_94 WHERE surface = "hard" AND score = "6–3, 7–6(0)"
CREATE TABLE table_name_94 (partner VARCHAR, surface VARCHAR, score VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4240, 41, 12300, 584, 4280, 28027, 6, 1774, 584, 4280, 28027, 6, 2604, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 5793, 6, 116, 18884, 19, 6424,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2397, 21680, 953, 834, 4350, 834, 4240, 549, 17444, 427, 1774, 3274, 96, 5651, 121, 3430, 2604, 3274, 96, 948, 104, 6355, 489, 104, 948, 31862, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is Opponents, when Partner is Vitalia Diatchenko?
SELECT opponents FROM table_name_60 WHERE partner = "vitalia diatchenko"
CREATE TABLE table_name_60 (opponents VARCHAR, partner VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3328, 41, 32, 102, 9977, 7, 584, 4280, 28027, 6, 2397, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 4495, 9977, 7, 6, 116, 5793, 19, 23736, 23, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 16383, 21680, 953, 834, 4350, 834, 3328, 549, 17444, 427, 2397, 3274, 96, 5566, 5434, 1227, 14547, 18994, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is Partner, when Outcome is Winner, and when Date is 12 October 2003?
SELECT partner FROM table_name_73 WHERE outcome = "winner" AND date = "12 october 2003"
CREATE TABLE table_name_73 (partner VARCHAR, outcome VARCHAR, date VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4552, 41, 12300, 584, 4280, 28027, 6, 6138, 584, 4280, 28027, 6, 833, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 5793, 6, 116, 3387, 287, 15, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2397, 21680, 953, 834, 4350, 834, 4552, 549, 17444, 427, 6138, 3274, 96, 3757, 687, 121, 3430, 833, 3274, 96, 2122, 3, 32, 75, 235, 1152, 3888, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is Opponents, when Partner is Mervana Jugić-Salkić?
SELECT opponents FROM table_name_8 WHERE partner = "mervana jugić-salkić"
CREATE TABLE table_name_8 (opponents VARCHAR, partner VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 927, 41, 32, 102, 9977, 7, 584, 4280, 28027, 6, 2397, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 4495, 9977, 7, 6, 116, 5793, 19, 4039, 2132, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 16383, 21680, 953, 834, 4350, 834, 927, 549, 17444, 427, 2397, 3274, 96, 935, 2132, 9, 3, 354, 25297, 2, 18, 7, 138, 2168, 2, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What is the lowest Minutes Played, when Rebounds is 25, and when Field Goal % is less than "0.315"?
SELECT MIN(minutes_played) FROM table_name_95 WHERE rebounds = 25 AND field_goal__percentage < 0.315
CREATE TABLE table_name_95 (minutes_played INTEGER, rebounds VARCHAR, field_goal__percentage VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3301, 41, 6890, 7, 834, 4895, 15, 26, 3, 21342, 17966, 6, 3, 23768, 584, 4280, 28027, 6, 1057, 834, 839, 138, 834, 834, 883, 3728, 545, 584, 4280, 28027, 61, 3...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 17684, 599, 6890, 7, 834, 4895, 15, 26, 61, 21680, 953, 834, 4350, 834, 3301, 549, 17444, 427, 3, 23768, 3274, 944, 3430, 1057, 834, 839, 138, 834, 834, 883, 3728, 545, 3, 2, 3, 19997, 1808, 1, -100, -100, -1...
What is the average Rebounds, when Minutes Played is "113", and when Games Played is greater than "18"?
SELECT AVG(rebounds) FROM table_name_4 WHERE minutes_played = 113 AND games_played > 18
CREATE TABLE table_name_4 (rebounds INTEGER, minutes_played VARCHAR, games_played VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 591, 41, 23768, 3, 21342, 17966, 6, 676, 834, 4895, 15, 26, 584, 4280, 28027, 6, 1031, 834, 4895, 15, 26, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 36...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 71, 17217, 599, 23768, 61, 21680, 953, 834, 4350, 834, 591, 549, 17444, 427, 676, 834, 4895, 15, 26, 3274, 3, 20522, 3430, 1031, 834, 4895, 15, 26, 2490, 507, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is the score on March 17?
SELECT score FROM table_name_10 WHERE date = "march 17"
CREATE TABLE table_name_10 (score VARCHAR, date VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1714, 41, 7, 9022, 584, 4280, 28027, 6, 833, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 2604, 30, 1332, 1003, 58, 1, 0, 0, 0, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2604, 21680, 953, 834, 4350, 834, 1714, 549, 17444, 427, 833, 3274, 96, 51, 7064, 1003, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Which event led to a loss against Josh Diekman?
SELECT event FROM table_name_37 WHERE res = "loss" AND opponent = "josh diekman"
CREATE TABLE table_name_37 (event VARCHAR, res VARCHAR, opponent VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4118, 41, 15, 2169, 584, 4280, 28027, 6, 3, 60, 7, 584, 4280, 28027, 6, 15264, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 4073, 605, 2237, 12, 3, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 605, 21680, 953, 834, 4350, 834, 4118, 549, 17444, 427, 3, 60, 7, 3274, 96, 2298, 7, 121, 3430, 15264, 3274, 96, 1927, 7, 107, 67, 157, 348, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Which location led to a decision and a record of 1-2?
SELECT location FROM table_name_36 WHERE method = "decision" AND record = "1-2"
CREATE TABLE table_name_36 (location VARCHAR, method VARCHAR, record VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3420, 41, 14836, 584, 4280, 28027, 6, 1573, 584, 4280, 28027, 6, 1368, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 4073, 1128, 2237, 12, 3, 9, 1357, 11, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1128, 21680, 953, 834, 4350, 834, 3420, 549, 17444, 427, 1573, 3274, 96, 221, 18901, 121, 3430, 1368, 3274, 96, 9596, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Which method took place against Chris Herring?
SELECT method FROM table_name_73 WHERE opponent = "chris herring"
CREATE TABLE table_name_73 (method VARCHAR, opponent VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4552, 41, 23152, 584, 4280, 28027, 6, 15264, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 4073, 1573, 808, 286, 581, 4409, 8816, 53, 58, 1, 0, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1573, 21680, 953, 834, 4350, 834, 4552, 549, 17444, 427, 15264, 3274, 96, 524, 52, 159, 160, 1007, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What is the highest number of laps that max biaggi rode on a grid larger than 2?
SELECT MAX(laps) FROM table_name_12 WHERE rider = "max biaggi" AND grid > 2
CREATE TABLE table_name_12 (laps INTEGER, rider VARCHAR, grid VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2122, 41, 8478, 7, 3, 21342, 17966, 6, 2564, 52, 584, 4280, 28027, 6, 8634, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 2030, 381, 13, 14941...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 8478, 7, 61, 21680, 953, 834, 4350, 834, 2122, 549, 17444, 427, 2564, 52, 3274, 96, 9128, 3, 15500, 15406, 121, 3430, 8634, 2490, 204, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the highest grid that tetsuya harada rode in?
SELECT MAX(grid) FROM table_name_71 WHERE rider = "tetsuya harada"
CREATE TABLE table_name_71 (grid INTEGER, rider VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4450, 41, 3496, 26, 3, 21342, 17966, 6, 2564, 52, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 2030, 8634, 24, 3, 17, 15, 17, 7, 76, 63, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 3496, 26, 61, 21680, 953, 834, 4350, 834, 4450, 549, 17444, 427, 2564, 52, 3274, 96, 17, 15, 17, 7, 76, 63, 9, 4244, 14842, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the average number of laps that were made when the race took a time of +48.325?
SELECT AVG(laps) FROM table_name_89 WHERE time_retired = "+48.325"
CREATE TABLE table_name_89 (laps INTEGER, time_retired VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3914, 41, 8478, 7, 3, 21342, 17966, 6, 97, 834, 10682, 1271, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 1348, 381, 13, 14941, 7, 24, 130, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 71, 17217, 599, 8478, 7, 61, 21680, 953, 834, 4350, 834, 3914, 549, 17444, 427, 97, 834, 10682, 1271, 3274, 96, 1220, 3707, 5, 2668, 17395, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the total number of laps during the race that had a time of +9.682?
SELECT COUNT(laps) FROM table_name_6 WHERE time_retired = "+9.682"
CREATE TABLE table_name_6 (laps VARCHAR, time_retired VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 948, 41, 8478, 7, 584, 4280, 28027, 6, 97, 834, 10682, 1271, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 792, 381, 13, 14941, 7, 383, 8, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 8478, 7, 61, 21680, 953, 834, 4350, 834, 948, 549, 17444, 427, 97, 834, 10682, 1271, 3274, 96, 1220, 8797, 3651, 357, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the highest Pick, when College is "Syracuse", and when Overall is less than 18?
SELECT MAX(pick) FROM table_name_40 WHERE college = "syracuse" AND overall < 18
CREATE TABLE table_name_40 (pick INTEGER, college VARCHAR, overall VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2445, 41, 17967, 3, 21342, 17966, 6, 1900, 584, 4280, 28027, 6, 1879, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 2030, 8356, 6, 116, 1888, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 17967, 61, 21680, 953, 834, 4350, 834, 2445, 549, 17444, 427, 1900, 3274, 96, 7, 63, 3738, 1074, 121, 3430, 1879, 3, 2, 507, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is Position, when College is "Houston"?
SELECT position FROM table_name_97 WHERE college = "houston"
CREATE TABLE table_name_97 (position VARCHAR, college VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4327, 41, 4718, 584, 4280, 28027, 6, 1900, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 14258, 6, 116, 1888, 19, 96, 4489, 76, 4411, 121, 58, 1,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1102, 21680, 953, 834, 4350, 834, 4327, 549, 17444, 427, 1900, 3274, 96, 9492, 4411, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the number of networks when the size of rest bit field is 8?
SELECT number_of_networks FROM table_name_93 WHERE size_of_rest_bit_field = "8"
CREATE TABLE table_name_93 (number_of_networks VARCHAR, size_of_rest_bit_field VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4271, 41, 5525, 1152, 834, 858, 834, 1582, 13631, 584, 4280, 28027, 6, 812, 834, 858, 834, 6216, 834, 2360, 834, 1846, 584, 4280, 28027, 61, 3, 32105, 32106, 32107...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0...
[ 3, 23143, 14196, 381, 834, 858, 834, 1582, 13631, 21680, 953, 834, 4350, 834, 4271, 549, 17444, 427, 812, 834, 858, 834, 6216, 834, 2360, 834, 1846, 3274, 96, 927, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the start address when the network number bit field is 16?
SELECT start_address FROM table_name_88 WHERE size_of_network_number_bit_field = "16"
CREATE TABLE table_name_88 (start_address VARCHAR, size_of_network_number_bit_field VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4060, 41, 10208, 834, 9, 26, 12039, 584, 4280, 28027, 6, 812, 834, 858, 834, 1582, 1981, 834, 5525, 1152, 834, 2360, 834, 1846, 584, 4280, 28027, 61, 3, 32105, 3...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0...
[ 3, 23143, 14196, 456, 834, 9, 26, 12039, 21680, 953, 834, 4350, 834, 4060, 549, 17444, 427, 812, 834, 858, 834, 1582, 1981, 834, 5525, 1152, 834, 2360, 834, 1846, 3274, 96, 2938, 121, 1, -100, -100, -100, -100, -100, -100, -100, -10...
What is the end address for the Class E (Reserved)?
SELECT end_address FROM table_name_61 WHERE class = "class e (reserved)"
CREATE TABLE table_name_61 (end_address VARCHAR, class VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4241, 41, 989, 834, 9, 26, 12039, 584, 4280, 28027, 6, 853, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 414, 1115, 21, 8, 4501, 262, 41, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 414, 834, 9, 26, 12039, 21680, 953, 834, 4350, 834, 4241, 549, 17444, 427, 853, 3274, 96, 4057, 3, 15, 41, 60, 3473, 15, 26, 61, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What is the size of the rest bit field when the leading bits are more than 110 and the start address is 224.0.0.0?
SELECT size_of_rest_bit_field FROM table_name_12 WHERE leading_bits > 110 AND start_address = "224.0.0.0"
CREATE TABLE table_name_12 (size_of_rest_bit_field VARCHAR, leading_bits VARCHAR, start_address VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2122, 41, 7991, 834, 858, 834, 6216, 834, 2360, 834, 1846, 584, 4280, 28027, 6, 1374, 834, 2360, 7, 584, 4280, 28027, 6, 456, 834, 9, 26, 12039, 584, 4280, 28027...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 812, 834, 858, 834, 6216, 834, 2360, 834, 1846, 21680, 953, 834, 4350, 834, 2122, 549, 17444, 427, 1374, 834, 2360, 7, 2490, 11190, 3430, 456, 834, 9, 26, 12039, 3274, 96, 2884, 15021, 5, 11739, 121, 1, -100, -100, ...
W hat was the lowest Goals For when they played Team Goole Town and had a position lower than 9?
SELECT MIN(goals_for) FROM table_name_65 WHERE team = "goole town" AND position < 9
CREATE TABLE table_name_65 (goals_for INTEGER, team VARCHAR, position VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4122, 41, 839, 5405, 834, 1161, 3, 21342, 17966, 6, 372, 584, 4280, 28027, 6, 1102, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 549, 3, 547, 47, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 17684, 599, 839, 5405, 834, 1161, 61, 21680, 953, 834, 4350, 834, 4122, 549, 17444, 427, 372, 3274, 96, 839, 32, 109, 1511, 121, 3430, 1102, 3, 2, 668, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Which team has a position higher than 3, a Drawn lower than 12, and a Goals Against higher than 85?
SELECT team FROM table_name_15 WHERE drawn < 12 AND position > 3 AND goals_against > 85
CREATE TABLE table_name_15 (team VARCHAR, goals_against VARCHAR, drawn VARCHAR, position VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1808, 41, 11650, 584, 4280, 28027, 6, 1766, 834, 9, 16720, 7, 17, 584, 4280, 28027, 6, 6796, 584, 4280, 28027, 6, 1102, 584, 4280, 28027, 61, 3, 32105, 32106, 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, 372, 21680, 953, 834, 4350, 834, 1808, 549, 17444, 427, 6796, 3, 2, 586, 3430, 1102, 2490, 220, 3430, 1766, 834, 9, 16720, 7, 17, 2490, 11989, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
When the Points 1 were 44 and the Goals For were larger than 65, what was the total number of Goals Against?
SELECT COUNT(goals_against) FROM table_name_14 WHERE points_1 = 44 AND goals_for > 65
CREATE TABLE table_name_14 (goals_against VARCHAR, points_1 VARCHAR, goals_for VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2534, 41, 839, 5405, 834, 9, 16720, 7, 17, 584, 4280, 28027, 6, 979, 834, 536, 584, 4280, 28027, 6, 1766, 834, 1161, 584, 4280, 28027, 61, 3, 32105, 32106, 32107...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 2847, 17161, 599, 839, 5405, 834, 9, 16720, 7, 17, 61, 21680, 953, 834, 4350, 834, 2534, 549, 17444, 427, 979, 834, 536, 3274, 8537, 3430, 1766, 834, 1161, 2490, 7123, 1, -100, -100, -100, -100, -100, -100, -100, -1...
What was the year when the diameter was 729 km?
SELECT year_named FROM table_name_59 WHERE diameter__km_ = 729
CREATE TABLE table_name_59 (year_named VARCHAR, diameter__km_ VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3390, 41, 1201, 834, 4350, 26, 584, 4280, 28027, 6, 9260, 834, 834, 5848, 834, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 47, 8, 215, 116, 8, 9260...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 215, 834, 4350, 26, 21680, 953, 834, 4350, 834, 3390, 549, 17444, 427, 9260, 834, 834, 5848, 834, 3274, 489, 3166, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the highest diameter when the latitude is 43.5s?
SELECT MAX(diameter__km_) FROM table_name_3 WHERE latitude = "43.5s"
CREATE TABLE table_name_3 (diameter__km_ INTEGER, latitude VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 519, 41, 26, 23, 9, 4401, 834, 834, 5848, 834, 3, 21342, 17966, 6, 50, 6592, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 2030, 9260, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 4800, 4, 599, 26, 23, 9, 4401, 834, 834, 5848, 834, 61, 21680, 953, 834, 4350, 834, 519, 549, 17444, 427, 50, 6592, 3274, 96, 591, 9285, 7, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
On what Date was the Attendance 75,891?
SELECT date FROM table_name_77 WHERE attendance = "75,891"
CREATE TABLE table_name_77 (date VARCHAR, attendance VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4013, 41, 5522, 584, 4280, 28027, 6, 11364, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 461, 125, 7678, 47, 8, 22497, 663, 6374, 6, 3914, 536, 58, 1, 0,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 833, 21680, 953, 834, 4350, 834, 4013, 549, 17444, 427, 11364, 3274, 96, 3072, 6, 3914, 536, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What was the Week on September 5, 1993?
SELECT week FROM table_name_37 WHERE date = "september 5, 1993"
CREATE TABLE table_name_37 (week VARCHAR, date VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4118, 41, 8041, 584, 4280, 28027, 6, 833, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 47, 8, 6551, 30, 1600, 7836, 8388, 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, 471, 21680, 953, 834, 4350, 834, 4118, 549, 17444, 427, 833, 3274, 96, 7, 6707, 18247, 7836, 8388, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
Who was the Opponent on October 31, 1993?
SELECT opponent FROM table_name_71 WHERE date = "october 31, 1993"
CREATE TABLE table_name_71 (opponent VARCHAR, date VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4450, 41, 32, 102, 9977, 584, 4280, 28027, 6, 833, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 2645, 47, 8, 4495, 9977, 30, 1797, 12074, 8388, 58, 1, 0,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 15264, 21680, 953, 834, 4350, 834, 4450, 549, 17444, 427, 833, 3274, 96, 32, 75, 235, 1152, 12074, 8388, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
what is the date for traction type electric with calgary location?
SELECT date__from_ FROM table_name_18 WHERE traction_type = "electric" AND location = "calgary"
CREATE TABLE table_name_18 (date__from_ VARCHAR, traction_type VARCHAR, location VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2606, 41, 5522, 834, 834, 7152, 834, 584, 4280, 28027, 6, 3, 10559, 834, 6137, 584, 4280, 28027, 6, 1128, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 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, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 833, 834, 834, 7152, 834, 21680, 953, 834, 4350, 834, 2606, 549, 17444, 427, 3, 10559, 834, 6137, 3274, 96, 17470, 121, 3430, 1128, 3274, 96, 1489, 1478, 63, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -...
Which date has date started from 30 Sep 1913?
SELECT date__to_ FROM table_name_79 WHERE date__from_ = "30 sep 1913"
CREATE TABLE table_name_79 (date__to_ VARCHAR, date__from_ VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4440, 41, 5522, 834, 834, 235, 834, 584, 4280, 28027, 6, 833, 834, 834, 7152, 834, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 4073, 833, 65, 833, 708, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 833, 834, 834, 235, 834, 21680, 953, 834, 4350, 834, 4440, 549, 17444, 427, 833, 834, 834, 7152, 834, 3274, 96, 1458, 142, 102, 957, 2368, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What is the 1st leg of 2q round?
SELECT 1 AS st_leg FROM table_name_33 WHERE round = "2q"
CREATE TABLE table_name_33 (round VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4201, 41, 7775, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 209, 7, 17, 4553, 13, 204, 1824, 1751, 58, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 209, 6157, 3, 7, 17, 834, 5772, 21680, 953, 834, 4350, 834, 4201, 549, 17444, 427, 1751, 3274, 96, 357, 1824, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What competition has the club villareal?
SELECT competition FROM table_name_89 WHERE club = "villareal"
CREATE TABLE table_name_89 (competition VARCHAR, club VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3914, 41, 287, 4995, 4749, 584, 4280, 28027, 6, 1886, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 2259, 65, 8, 1886, 12159, 6644, 58, 1, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2259, 21680, 953, 834, 4350, 834, 3914, 549, 17444, 427, 1886, 3274, 96, 24887, 6644, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Which competition has aik club?
SELECT competition FROM table_name_32 WHERE club = "aik"
CREATE TABLE table_name_32 (competition VARCHAR, club VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2668, 41, 287, 4995, 4749, 584, 4280, 28027, 6, 1886, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 4073, 2259, 65, 3, 9, 23, 157, 1886, 58, 1, 0, 0, 0,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2259, 21680, 953, 834, 4350, 834, 2668, 549, 17444, 427, 1886, 3274, 96, 9, 23, 157, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What is the round of club bečej?
SELECT round FROM table_name_38 WHERE club = "bečej"
CREATE TABLE table_name_38 (round VARCHAR, club VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3747, 41, 7775, 584, 4280, 28027, 6, 1886, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 1751, 13, 1886, 36, 2, 15, 354, 58, 1, 0, 0, 0, 0...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1751, 21680, 953, 834, 4350, 834, 3747, 549, 17444, 427, 1886, 3274, 96, 346, 2, 15, 354, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What is the 1st leg of the uefa intertoto cup competition with club silkeborg?
SELECT 1 AS st_leg FROM table_name_66 WHERE competition = "uefa intertoto cup" AND club = "silkeborg"
CREATE TABLE table_name_66 (competition VARCHAR, club VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3539, 41, 287, 4995, 4749, 584, 4280, 28027, 6, 1886, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 209, 7, 17, 4553, 13, 8, 3, 76, 15, 89, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 209, 6157, 3, 7, 17, 834, 5772, 21680, 953, 834, 4350, 834, 3539, 549, 17444, 427, 2259, 3274, 96, 76, 15, 89, 9, 1413, 235, 235, 4119, 121, 3430, 1886, 3274, 96, 7, 173, 1050, 23685, 121, 1, -100, -100, -100, -...
Who had the high rebounds when the score was w 105–95 (ot) and Jason Kidd (8) had the high assists?
SELECT high_rebounds FROM table_name_57 WHERE high_assists = "jason kidd (8)" AND score = "w 105–95 (ot)"
CREATE TABLE table_name_57 (high_rebounds VARCHAR, high_assists VARCHAR, score VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3436, 41, 6739, 834, 23768, 584, 4280, 28027, 6, 306, 834, 6500, 7, 17, 7, 584, 4280, 28027, 6, 2604, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 2645, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 306, 834, 23768, 21680, 953, 834, 4350, 834, 3436, 549, 17444, 427, 306, 834, 6500, 7, 17, 7, 3274, 96, 1191, 739, 4984, 26, 3, 28007, 121, 3430, 2604, 3274, 96, 210, 3, 12869, 104, 3301, 41, 32, 17, 61, 121, 1,...
Which team scored l 87–115 (ot)?
SELECT team FROM table_name_61 WHERE score = "l 87–115 (ot)"
CREATE TABLE table_name_61 (team VARCHAR, score VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4241, 41, 11650, 584, 4280, 28027, 6, 2604, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 4073, 372, 5799, 3, 40, 3, 4225, 104, 15660, 41, 32, 17, 61, 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, 372, 21680, 953, 834, 4350, 834, 4241, 549, 17444, 427, 2604, 3274, 96, 40, 3, 4225, 104, 15660, 41, 32, 17, 61, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
What's the record of Game 56?
SELECT record FROM table_name_37 WHERE game = 56
CREATE TABLE table_name_37 (record VARCHAR, game VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4118, 41, 60, 7621, 584, 4280, 28027, 6, 467, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 31, 7, 8, 1368, 13, 4435, 11526, 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, 1368, 21680, 953, 834, 4350, 834, 4118, 549, 17444, 427, 467, 3274, 11526, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
Who was the team that played at Energysolutions Arena 19,911?
SELECT team FROM table_name_29 WHERE location_attendance = "energysolutions arena 19,911"
CREATE TABLE table_name_29 (team VARCHAR, location_attendance VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3166, 41, 11650, 584, 4280, 28027, 6, 1128, 834, 15116, 663, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 2645, 47, 8, 372, 24, 1944, 44, 4654, 14913, 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, 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, 3166, 549, 17444, 427, 1128, 834, 15116, 663, 3274, 96, 24310, 14913, 7, 15134, 12370, 4729, 536, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
Who had the high assists when the game was at American Airlines Center 20,223?
SELECT high_assists FROM table_name_8 WHERE location_attendance = "american airlines center 20,223"
CREATE TABLE table_name_8 (high_assists VARCHAR, location_attendance VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 927, 41, 6739, 834, 6500, 7, 17, 7, 584, 4280, 28027, 6, 1128, 834, 15116, 663, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 2645, 141, 8, 306, 13041, 11...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 306, 834, 6500, 7, 17, 7, 21680, 953, 834, 4350, 834, 927, 549, 17444, 427, 1128, 834, 15116, 663, 3274, 96, 23064, 29, 19184, 1530, 16047, 357, 2773, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
What team has a Record of 50–28?
SELECT team FROM table_name_9 WHERE record = "50–28"
CREATE TABLE table_name_9 (team VARCHAR, record VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1298, 41, 11650, 584, 4280, 28027, 6, 1368, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 372, 65, 3, 9, 11392, 13, 943, 104, 2577, 58, 1, 0, 0, 0,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 372, 21680, 953, 834, 4350, 834, 1298, 549, 17444, 427, 1368, 3274, 96, 1752, 104, 2577, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What was the date of game 75?
SELECT date FROM table_name_93 WHERE game = 75
CREATE TABLE table_name_93 (date VARCHAR, game VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4271, 41, 5522, 584, 4280, 28027, 6, 467, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 47, 8, 833, 13, 467, 6374, 58, 1, 0, 0, 0, 0, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 833, 21680, 953, 834, 4350, 834, 4271, 549, 17444, 427, 467, 3274, 6374, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
Which manufacturer was used after 1969 with a finish position of 34?
SELECT manufacturer FROM table_name_14 WHERE year > 1969 AND finish = 34
CREATE TABLE table_name_14 (manufacturer VARCHAR, year VARCHAR, finish VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2534, 41, 348, 76, 8717, 450, 49, 584, 4280, 28027, 6, 215, 584, 4280, 28027, 6, 1992, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 4073, 4818, 47, 261, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 4818, 21680, 953, 834, 4350, 834, 2534, 549, 17444, 427, 215, 2490, 17185, 3430, 1992, 3274, 6154, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the total attendance on April 25?
SELECT COUNT(attendance) FROM table_name_28 WHERE date = "april 25"
CREATE TABLE table_name_28 (attendance VARCHAR, date VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2577, 41, 15116, 663, 584, 4280, 28027, 6, 833, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 792, 11364, 30, 1186, 944, 58, 1, 0, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 15116, 663, 61, 21680, 953, 834, 4350, 834, 2577, 549, 17444, 427, 833, 3274, 96, 9, 2246, 40, 944, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the decision of the game with an attendance greater than 19,883?
SELECT decision FROM table_name_49 WHERE attendance > 19 OFFSET 883
CREATE TABLE table_name_49 (decision VARCHAR, attendance INTEGER)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3647, 41, 221, 18901, 584, 4280, 28027, 6, 11364, 3, 21342, 17966, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 1357, 13, 8, 467, 28, 46, 11364, 2123, 145, 123...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1357, 21680, 953, 834, 4350, 834, 3647, 549, 17444, 427, 11364, 2490, 957, 3, 15316, 20788, 505, 4591, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
When the score was 76-73-67-69=285 what was the To par?
SELECT to_par FROM table_name_31 WHERE score = 76 - 73 - 67 - 69 = 285
CREATE TABLE table_name_31 (to_par VARCHAR, score VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3341, 41, 235, 834, 1893, 584, 4280, 28027, 6, 2604, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 366, 8, 2604, 47, 489, 25302, 25342, 940, 18, 3951, 2423,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 12, 834, 1893, 21680, 953, 834, 4350, 834, 3341, 549, 17444, 427, 2604, 3274, 3, 3959, 3, 18, 3, 4552, 3, 18, 3, 3708, 3, 18, 3, 3951, 3274, 204, 4433, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
Which player has a To par of –6?
SELECT player FROM table_name_83 WHERE to_par = "–6"
CREATE TABLE table_name_83 (player VARCHAR, to_par VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4591, 41, 20846, 584, 4280, 28027, 6, 12, 834, 1893, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 4073, 1959, 65, 3, 9, 304, 260, 13, 3, 104, 948, 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, 1959, 21680, 953, 834, 4350, 834, 4591, 549, 17444, 427, 12, 834, 1893, 3274, 96, 104, 948, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
How much memory (RAM) does the Maemo 5 operating system have?
SELECT memory___ram__ FROM table_name_40 WHERE operating_system_version = "maemo 5"
CREATE TABLE table_name_40 (memory___ram__ VARCHAR, operating_system_version VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2445, 41, 526, 2528, 63, 834, 834, 834, 2375, 834, 834, 584, 4280, 28027, 6, 2699, 834, 3734, 834, 8674, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 571, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2594, 834, 834, 834, 2375, 834, 834, 21680, 953, 834, 4350, 834, 2445, 549, 17444, 427, 2699, 834, 3734, 834, 8674, 3274, 96, 51, 9, 15, 51, 32, 3, 17395, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
Which operating system has a storage (flash) of 128MB?
SELECT operating_system_version FROM table_name_18 WHERE storage___flash__ = "128mb"
CREATE TABLE table_name_18 (operating_system_version VARCHAR, storage___flash__ VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2606, 41, 18140, 1222, 834, 3734, 834, 8674, 584, 4280, 28027, 6, 1606, 834, 834, 834, 89, 8058, 834, 834, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 407...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2699, 834, 3734, 834, 8674, 21680, 953, 834, 4350, 834, 2606, 549, 17444, 427, 1606, 834, 834, 834, 89, 8058, 834, 834, 3274, 96, 536, 2577, 51, 115, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the weight and dimensions of an N800?
SELECT weight, _dimensions FROM table_name_42 WHERE model = "n800"
CREATE TABLE table_name_42 (weight VARCHAR, _dimensions VARCHAR, model VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4165, 41, 9378, 584, 4280, 28027, 6, 3, 834, 31987, 7, 584, 4280, 28027, 6, 825, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 1293, 11, 8393,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1293, 6, 3, 834, 31987, 7, 21680, 953, 834, 4350, 834, 4165, 549, 17444, 427, 825, 3274, 96, 29, 6192, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -1...
Which operating system has 1GB (mobile ddr) memory (RAM)?
SELECT operating_system_version FROM table_name_27 WHERE memory___ram__ = "1gb (mobile ddr)"
CREATE TABLE table_name_27 (operating_system_version VARCHAR, memory___ram__ VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2555, 41, 18140, 1222, 834, 3734, 834, 8674, 584, 4280, 28027, 6, 2594, 834, 834, 834, 2375, 834, 834, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 4073, 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, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 2699, 834, 3734, 834, 8674, 21680, 953, 834, 4350, 834, 2555, 549, 17444, 427, 2594, 834, 834, 834, 2375, 834, 834, 3274, 96, 536, 122, 115, 41, 14814, 3, 26, 26, 52, 61, 121, 1, -100, -100, -100, -100, -100, -100...
What is the total number of Pick, when Round is greater than 1, and when Player is "Jim Stack"?
SELECT COUNT(pick) FROM table_name_1 WHERE round > 1 AND player = "jim stack"
CREATE TABLE table_name_1 (pick VARCHAR, round VARCHAR, player VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 536, 41, 17967, 584, 4280, 28027, 6, 1751, 584, 4280, 28027, 6, 1959, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 792, 381, 13, 8356, 6, 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, 0, 0, 0, 0...
[ 3, 23143, 14196, 2847, 17161, 599, 17967, 61, 21680, 953, 834, 4350, 834, 536, 549, 17444, 427, 1751, 2490, 209, 3430, 1959, 3274, 96, 354, 603, 9013, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the lowest Round, when College is "Washington State", and when Pick is less than 48?
SELECT MIN(round) FROM table_name_25 WHERE college = "washington state" AND pick < 48
CREATE TABLE table_name_25 (round INTEGER, college VARCHAR, pick VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 1828, 41, 7775, 3, 21342, 17966, 6, 1900, 584, 4280, 28027, 6, 1432, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 7402, 9609, 6, 116, 1888, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 3, 17684, 599, 7775, 61, 21680, 953, 834, 4350, 834, 1828, 549, 17444, 427, 1900, 3274, 96, 14710, 6029, 538, 121, 3430, 1432, 3, 2, 4678, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -...
What is College, when Round is greater than 1, and when Pick is greater than 163?
SELECT college FROM table_name_11 WHERE round > 1 AND pick > 163
CREATE TABLE table_name_11 (college VARCHAR, round VARCHAR, pick VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2596, 41, 3297, 7883, 584, 4280, 28027, 6, 1751, 584, 4280, 28027, 6, 1432, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 1888, 6, 116, 9609, 19, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 1900, 21680, 953, 834, 4350, 834, 2596, 549, 17444, 427, 1751, 2490, 209, 3430, 1432, 2490, 898, 519, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the location for the software of BIND and an IPv6 address of 2001:503:c27::2:30?
SELECT location__numbersites__global_local_ FROM table_name_90 WHERE software = "bind" AND ipv6_address = "2001:503:c27::2:30"
CREATE TABLE table_name_90 (location__numbersites__global_local_ VARCHAR, software VARCHAR, ipv6_address VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2394, 41, 14836, 834, 834, 5525, 1152, 3585, 7, 834, 834, 14063, 138, 834, 16882, 834, 584, 4280, 28027, 6, 889, 584, 4280, 28027, 6, 3, 23, 102, 208, 948, 834, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 1128, 834, 834, 5525, 1152, 3585, 7, 834, 834, 14063, 138, 834, 16882, 834, 21680, 953, 834, 4350, 834, 2394, 549, 17444, 427, 889, 3274, 96, 8610, 121, 3430, 3, 23, 102, 208, 948, 834, 9, 26, 12039, 3274, 96, 236...
Which IPv6 address has an operator of Wide project?
SELECT ipv6_address FROM table_name_65 WHERE operator = "wide project"
CREATE TABLE table_name_65 (ipv6_address VARCHAR, operator VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 4122, 41, 23, 102, 208, 948, 834, 9, 26, 12039, 584, 4280, 28027, 6, 7221, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 4073, 3857, 208, 948, 1115, 65, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 3, 23, 102, 208, 948, 834, 9, 26, 12039, 21680, 953, 834, 4350, 834, 4122, 549, 17444, 427, 7221, 3274, 96, 6728, 516, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Which letter has an operator of VeriSign and an AS-number of AS26415?
SELECT letter FROM table_name_45 WHERE operator = "verisign" AND as_number = "as26415"
CREATE TABLE table_name_45 (letter VARCHAR, operator VARCHAR, as_number VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2128, 41, 16024, 584, 4280, 28027, 6, 7221, 584, 4280, 28027, 6, 38, 834, 5525, 1152, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 4073, 2068, 65, 46, 7221...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 2068, 21680, 953, 834, 4350, 834, 2128, 549, 17444, 427, 7221, 3274, 96, 624, 23, 6732, 121, 3430, 38, 834, 5525, 1152, 3274, 96, 9, 7, 26755, 1808, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100...
Which location has an AS-number of N/A?
SELECT location__numbersites__global_local_ FROM table_name_60 WHERE as_number = "n/a"
CREATE TABLE table_name_60 (location__numbersites__global_local_ VARCHAR, as_number VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3328, 41, 14836, 834, 834, 5525, 1152, 3585, 7, 834, 834, 14063, 138, 834, 16882, 834, 584, 4280, 28027, 6, 38, 834, 5525, 1152, 584, 4280, 28027, 61, 3, 32105, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 1128, 834, 834, 5525, 1152, 3585, 7, 834, 834, 14063, 138, 834, 16882, 834, 21680, 953, 834, 4350, 834, 3328, 549, 17444, 427, 38, 834, 5525, 1152, 3274, 96, 29, 87, 9, 121, 1, -100, -100, -100, -100, -100, -100, ...
Which letter has an operator of the Defense Information Systems Agency?
SELECT letter FROM table_name_32 WHERE operator = "defense information systems agency"
CREATE TABLE table_name_32 (letter VARCHAR, operator VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2668, 41, 16024, 584, 4280, 28027, 6, 7221, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 4073, 2068, 65, 46, 7221, 13, 8, 13143, 2784, 5479, 7038, 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, 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, 2068, 21680, 953, 834, 4350, 834, 2668, 549, 17444, 427, 7221, 3274, 96, 31749, 251, 1002, 3193, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the sum of All-Time, when Amateur Era is less than 0?
SELECT SUM(all_time) FROM table_name_39 WHERE amateur_era < 0
CREATE TABLE table_name_39 (all_time INTEGER, amateur_era INTEGER)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3288, 41, 1748, 834, 715, 3, 21342, 17966, 6, 13217, 834, 1498, 3, 21342, 17966, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 4505, 13, 432, 18, 13368, 6, 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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 180, 6122, 599, 1748, 834, 715, 61, 21680, 953, 834, 4350, 834, 3288, 549, 17444, 427, 13217, 834, 1498, 3, 2, 3, 632, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the lowest All-Time, when First Title is before 1974, when Last Title is "1933", and when Amateur Era is greater than 2?
SELECT MIN(all_time) FROM table_name_95 WHERE first_title < 1974 AND last_title = 1933 AND amateur_era > 2
CREATE TABLE table_name_95 (all_time INTEGER, amateur_era VARCHAR, first_title VARCHAR, last_title VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3301, 41, 1748, 834, 715, 3, 21342, 17966, 6, 13217, 834, 1498, 584, 4280, 28027, 6, 166, 834, 21869, 584, 4280, 28027, 6, 336, 834, 21869, 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, 3, 17684, 599, 1748, 834, 715, 61, 21680, 953, 834, 4350, 834, 3301, 549, 17444, 427, 166, 834, 21869, 3, 2, 17184, 3430, 336, 834, 21869, 3274, 26957, 3430, 13217, 834, 1498, 2490, 204, 1, -100, -100, -100, -100, -...
What is the lowest All-Time, when First Title is "2007, and when Amateur Era is greater than 0?
SELECT MIN(all_time) FROM table_name_35 WHERE first_title = 2007 AND amateur_era > 0
CREATE TABLE table_name_35 (all_time INTEGER, first_title VARCHAR, amateur_era VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2469, 41, 1748, 834, 715, 3, 21342, 17966, 6, 166, 834, 21869, 584, 4280, 28027, 6, 13217, 834, 1498, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19,...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 17684, 599, 1748, 834, 715, 61, 21680, 953, 834, 4350, 834, 2469, 549, 17444, 427, 166, 834, 21869, 3274, 4101, 3430, 13217, 834, 1498, 2490, 3, 632, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, ...
What is the lowest First Title, when All-Time is greater than 1, when Country is "United States (USA)", and when Amateur Era is greater than 17?
SELECT MIN(first_title) FROM table_name_13 WHERE all_time > 1 AND country = "united states (usa)" AND amateur_era > 17
CREATE TABLE table_name_13 (first_title INTEGER, amateur_era VARCHAR, all_time VARCHAR, country VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2368, 41, 14672, 834, 21869, 3, 21342, 17966, 6, 13217, 834, 1498, 584, 4280, 28027, 6, 66, 834, 715, 584, 4280, 28027, 6, 684, 584, 4280, 28027, 61, 3, 32105, 3...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1...
[ 3, 23143, 14196, 3, 17684, 599, 14672, 834, 21869, 61, 21680, 953, 834, 4350, 834, 2368, 549, 17444, 427, 66, 834, 715, 2490, 209, 3430, 684, 3274, 96, 15129, 15, 26, 2315, 41, 302, 9, 61, 121, 3430, 13217, 834, 1498, 2490, 1003, ...
What is the Place of the Player with a To par of +2 and a Score of 70-72-73=215?
SELECT place FROM table_name_22 WHERE to_par = "+2" AND score = 70 - 72 - 73 = 215
CREATE TABLE table_name_22 (place VARCHAR, to_par VARCHAR, score VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2884, 41, 4687, 584, 4280, 28027, 6, 12, 834, 1893, 584, 4280, 28027, 6, 2604, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 3399, 13, 8, 1238...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 286, 21680, 953, 834, 4350, 834, 2884, 549, 17444, 427, 12, 834, 1893, 3274, 96, 1220, 357, 121, 3430, 2604, 3274, 2861, 3, 18, 9455, 3, 18, 3, 4552, 3274, 204, 1808, 1, -100, -100, -100, -100, -100, -100, -100, -...
From what Country is T6 Place Player Robert Karlsson?
SELECT country FROM table_name_19 WHERE place = "t6" AND player = "robert karlsson"
CREATE TABLE table_name_19 (country VARCHAR, place VARCHAR, player VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 2294, 41, 17529, 584, 4280, 28027, 6, 286, 584, 4280, 28027, 6, 1959, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 1029, 125, 6993, 19, 332, 948, 3399, 123...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0...
[ 3, 23143, 14196, 684, 21680, 953, 834, 4350, 834, 2294, 549, 17444, 427, 286, 3274, 96, 17, 948, 121, 3430, 1959, 3274, 96, 5840, 49, 17, 3, 4031, 40, 7, 739, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -10...
What is the To par of the T4 Place Player with a Score of 72-69-73=214?
SELECT to_par FROM table_name_63 WHERE place = "t4" AND score = 72 - 69 - 73 = 214
CREATE TABLE table_name_63 (to_par VARCHAR, place VARCHAR, score VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3891, 41, 235, 834, 1893, 584, 4280, 28027, 6, 286, 584, 4280, 28027, 6, 2604, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 304, 260, 13, 8, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0...
[ 3, 23143, 14196, 12, 834, 1893, 21680, 953, 834, 4350, 834, 3891, 549, 17444, 427, 286, 3274, 96, 17, 20364, 3430, 2604, 3274, 9455, 3, 18, 3, 3951, 3, 18, 3, 4552, 3274, 3, 27357, 1, -100, -100, -100, -100, -100, -100, -100, -100...
What is the To par of the Player with a Score of 70-72-73=215?
SELECT to_par FROM table_name_7 WHERE score = 70 - 72 - 73 = 215
CREATE TABLE table_name_7 (to_par VARCHAR, score VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 940, 41, 235, 834, 1893, 584, 4280, 28027, 6, 2604, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 19, 8, 304, 260, 13, 8, 12387, 28, 3, 9, 17763, 1...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 12, 834, 1893, 21680, 953, 834, 4350, 834, 940, 549, 17444, 427, 2604, 3274, 2861, 3, 18, 9455, 3, 18, 3, 4552, 3274, 204, 1808, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...
What Country is Rocco Mediate from?
SELECT country FROM table_name_49 WHERE player = "rocco mediate"
CREATE TABLE table_name_49 (country VARCHAR, player VARCHAR)
[ 32100, 32106, 32105, 205, 4386, 6048, 332, 17098, 953, 834, 4350, 834, 3647, 41, 17529, 584, 4280, 28027, 6, 1959, 584, 4280, 28027, 61, 3, 32105, 32106, 32107, 32106, 363, 6993, 19, 3, 28649, 509, 11816, 342, 45, 58, 1, 0, 0, 0, ...
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 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, 684, 21680, 953, 834, 4350, 834, 3647, 549, 17444, 427, 1959, 3274, 96, 7818, 509, 783, 17, 15, 121, 1, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100, -100,...