answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT film_title_used_in_nomination FROM table_name_65 WHERE original_title = "sedamdeset i dva dana"
CREATE TABLE table_name_65 (film_title_used_in_nomination VARCHAR, original_title VARCHAR)
What is the film title used for nomination with the original title sedamdeset i dva dana?
SELECT director_s_ FROM table_name_92 WHERE film_title_used_in_nomination = "cannibal vegetarian"
CREATE TABLE table_name_92 (director_s_ VARCHAR, film_title_used_in_nomination VARCHAR)
Who is the director of Cannibal vegetarian, which is the film title used in nomination?
SELECT AVG(first_downs) FROM table_name_82 WHERE date = "december 4"
CREATE TABLE table_name_82 (first_downs INTEGER, date VARCHAR)
What is the average First Downs for december 4?
SELECT MIN(attendance) FROM table_name_53 WHERE opponent = "tampa bay buccaneers" AND points_against < 7
CREATE TABLE table_name_53 (attendance INTEGER, opponent VARCHAR, points_against VARCHAR)
What is the lowest Attendance against the tampa bay buccaneers, with Points Against of less than 7?
SELECT MAX(points_for) FROM table_name_25 WHERE record = "12–2" AND points_against > 6
CREATE TABLE table_name_25 (points_for INTEGER, record VARCHAR, points_against VARCHAR)
What is the highest Points when the record was 12–2, and the Points Against are larger than 6?
SELECT partial_thromboplastin_time FROM table_name_76 WHERE prothrombin_time = "prolonged" AND condition = "factor v deficiency"
CREATE TABLE table_name_76 (partial_thromboplastin_time VARCHAR, prothrombin_time VARCHAR, condition VARCHAR)
Which Partial thromboplastin time has a Prothrombin time of prolonged and a Condition of factor v deficiency?
SELECT condition FROM table_name_1 WHERE bleeding_time = "prolonged" AND platelet_count = "decreased" AND prothrombin_time = "prolonged"
CREATE TABLE table_name_1 (condition VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR, platelet_count VARCHAR)
Which Condition has a Bleeding time of prolonged, a Platelet count of decreased, and Prothrombin time of prolonged?
SELECT platelet_count FROM table_name_20 WHERE partial_thromboplastin_time = "prolonged or unaffected"
CREATE TABLE table_name_20 (platelet_count VARCHAR, partial_thromboplastin_time VARCHAR)
Which Platelet count has a Partial thromboplastin time of prolonged or unaffected?
SELECT prothrombin_time FROM table_name_6 WHERE partial_thromboplastin_time = "unaffected" AND condition = "thrombocytopenia"
CREATE TABLE table_name_6 (prothrombin_time VARCHAR, partial_thromboplastin_time VARCHAR, condition VARCHAR)
Which Prothrombin time that has a Partial thromboplastin time of unaffected, and a Condition of thrombocytopenia?
SELECT condition FROM table_name_75 WHERE bleeding_time = "unaffected" AND prothrombin_time = "prolonged"
CREATE TABLE table_name_75 (condition VARCHAR, bleeding_time VARCHAR, prothrombin_time VARCHAR)
Which Condition has a Bleeding time of unaffected and a Prothrombin time of prolonged?
SELECT partial_thromboplastin_time FROM table_name_1 WHERE prothrombin_time = "prolonged" AND bleeding_time = "unaffected" AND condition = "vitamin k deficiency or warfarin"
CREATE TABLE table_name_1 (partial_thromboplastin_time VARCHAR, condition VARCHAR, prothrombin_time VARCHAR, bleeding_time VARCHAR)
Which Partial thromboplastin time has a Prothrombin time of prolonged, and a Bleeding time of unaffected, and a Condition of vitamin k deficiency or warfarin? Question 6
SELECT notes FROM table_name_11 WHERE authors = "zhou & zhang"
CREATE TABLE table_name_11 (notes VARCHAR, authors VARCHAR)
What are the notes where the authors are Zhou & Zhang?
SELECT status FROM table_name_60 WHERE notes = "possible jr synonym of sapeornis"
CREATE TABLE table_name_60 (status VARCHAR, notes VARCHAR)
What is the status where the notes are possible jr synonym of sapeornis?
SELECT AVG(top_5) FROM table_name_74 WHERE top_10 = 2 AND top_25 > 4
CREATE TABLE table_name_74 (top_5 INTEGER, top_10 VARCHAR, top_25 VARCHAR)
What is the average Top-5 finishes with 2 as the Top-10 and a greater than 4 Top-25?
SELECT MIN(top_5) FROM table_name_82 WHERE events > 18
CREATE TABLE table_name_82 (top_5 INTEGER, events INTEGER)
What are the least Top-5 finish when the events are greater than 18?
SELECT SUM(wins) FROM table_name_66 WHERE events < 3
CREATE TABLE table_name_66 (wins INTEGER, events INTEGER)
What is the total of wins when the evens is less than 3?
SELECT COUNT(cuts_made) FROM table_name_74 WHERE top_10 > 1 AND wins > 0 AND top_5 > 2 AND events > 18
CREATE TABLE table_name_74 (cuts_made VARCHAR, events VARCHAR, top_5 VARCHAR, top_10 VARCHAR, wins VARCHAR)
How many cuts made when the Top-10 is larger than 1, and the wins greater than 0, and a Top-5 greater than 2, when the events is greater than 18?
SELECT season FROM table_name_9 WHERE name = "omar sneed"
CREATE TABLE table_name_9 (season VARCHAR, name VARCHAR)
What years did Omar Sneed play?
SELECT season FROM table_name_7 WHERE name = "jovy sese"
CREATE TABLE table_name_7 (season VARCHAR, name VARCHAR)
Which season did Jovy Sese play?
SELECT acquisition_via FROM table_name_53 WHERE position = "forward" AND school_club_team = "manuel luis quezon"
CREATE TABLE table_name_53 (acquisition_via VARCHAR, position VARCHAR, school_club_team VARCHAR)
How did the School/Club Team of Manuel Luis Quezon acquire their Forward?
SELECT school_club_team FROM table_name_8 WHERE acquisition_via = "trade" AND name = "jondan salvador"
CREATE TABLE table_name_8 (school_club_team VARCHAR, acquisition_via VARCHAR, name VARCHAR)
Which School/ Club Team acquired Jondan Salvador via trade?
SELECT COUNT(points) FROM table_name_18 WHERE played > 14
CREATE TABLE table_name_18 (points VARCHAR, played INTEGER)
What is the Points with a Played larger than 14?
SELECT AVG(points) FROM table_name_51 WHERE against < 16
CREATE TABLE table_name_51 (points INTEGER, against INTEGER)
What is the Points with an Against smaller than 16?
SELECT team FROM table_name_26 WHERE lost > 2 AND position < 7 AND drawn < 2 AND points = 22
CREATE TABLE table_name_26 (team VARCHAR, points VARCHAR, drawn VARCHAR, lost VARCHAR, position VARCHAR)
Which Team has a Lost larger than 2, and a Position smaller than 7, and a Drawn smaller than 2, and a Points of 22?
SELECT MAX(points) FROM table_name_55 WHERE position = 3 AND drawn < 2
CREATE TABLE table_name_55 (points INTEGER, position VARCHAR, drawn VARCHAR)
Which Points has a Position of 3, and a Drawn smaller than 2?
SELECT AVG(played) FROM table_name_28 WHERE points = 2 AND position < 8
CREATE TABLE table_name_28 (played INTEGER, points VARCHAR, position VARCHAR)
Which Played has a Points of 2, and a Position smaller than 8?
SELECT AVG(played) FROM table_name_4 WHERE points > 14 AND against > 17
CREATE TABLE table_name_4 (played INTEGER, points VARCHAR, against VARCHAR)
How many average plays have points greater than 14, with an against greater than 17?
SELECT AVG(against) FROM table_name_78 WHERE lost < 1
CREATE TABLE table_name_78 (against INTEGER, lost INTEGER)
Which average against has a lost less than 1?
SELECT MAX(drawn) FROM table_name_96 WHERE played < 10
CREATE TABLE table_name_96 (drawn INTEGER, played INTEGER)
Which of the highest drawn has a played less than 10?
SELECT COUNT(played) FROM table_name_25 WHERE drawn = 3 AND position > 4
CREATE TABLE table_name_25 (played VARCHAR, drawn VARCHAR, position VARCHAR)
How many played have 3 as the drawn, and a position greater than 4?
SELECT performer_s_ FROM table_name_20 WHERE composer_s_ = "mariah carey and walter afanasieff"
CREATE TABLE table_name_20 (performer_s_ VARCHAR, composer_s_ VARCHAR)
Who sang the song composed by Mariah Carey and Walter Afanasieff?
SELECT COUNT(year) FROM table_name_51 WHERE performer_s_ = "louis armstrong"
CREATE TABLE table_name_51 (year VARCHAR, performer_s_ VARCHAR)
How many years was Louis Armstrong performing?
SELECT runner_s__up FROM table_name_74 WHERE winning_score = −16(66 - 68 - 70 - 68 = 272)
CREATE TABLE table_name_74 (runner_s__up VARCHAR, winning_score VARCHAR)
Who were the Runner(s)-up with the winning score of −16 (66-68-70-68=272)?
SELECT tournament FROM table_name_3 WHERE winning_score = −27(64 - 64 - 61 = 189)
CREATE TABLE table_name_3 (tournament VARCHAR, winning_score VARCHAR)
What tournament had a winning score of −27 (64-64-61=189)?
SELECT tournament FROM table_name_12 WHERE runner_s__up = "scott hoch & kenny perry"
CREATE TABLE table_name_12 (tournament VARCHAR, runner_s__up VARCHAR)
What tournament had a runner(s)-up of Scott Hoch & Kenny Perry?
SELECT tournament FROM table_name_11 WHERE runner_s__up = "tom kite"
CREATE TABLE table_name_11 (tournament VARCHAR, runner_s__up VARCHAR)
What tournament had a Runner(s)-up of Tom Kite?
SELECT date FROM table_name_94 WHERE tournament = "outback steakhouse pro-am"
CREATE TABLE table_name_94 (date VARCHAR, tournament VARCHAR)
What is the date of the Outback Steakhouse Pro-Am Tournament?
SELECT tournament FROM table_name_47 WHERE runner_s__up = "gary mccord"
CREATE TABLE table_name_47 (tournament VARCHAR, runner_s__up VARCHAR)
Which tournament has a Runner(s)-up of Gary McCord?
SELECT location FROM table_name_90 WHERE score = "2:3"
CREATE TABLE table_name_90 (location VARCHAR, score VARCHAR)
What was the location of the game with a score of 2:3?
SELECT location FROM table_name_62 WHERE home_team = "slovakia"
CREATE TABLE table_name_62 (location VARCHAR, home_team VARCHAR)
What was the location of the home game for Slovakia?
SELECT tournament FROM table_name_21 WHERE away_team = "mexico" AND home_team = "japan"
CREATE TABLE table_name_21 (tournament VARCHAR, away_team VARCHAR, home_team VARCHAR)
What was the tournament where Japan was the home team and Mexico was the away team?
SELECT location FROM table_name_49 WHERE home_team = "japan"
CREATE TABLE table_name_49 (location VARCHAR, home_team VARCHAR)
What was the location of the home game for Japan?
SELECT runner_up FROM table_name_68 WHERE location = "hossegor"
CREATE TABLE table_name_68 (runner_up VARCHAR, location VARCHAR)
Who was the Runner-up in Hossegor?
SELECT date FROM table_name_88 WHERE location = "gold coast"
CREATE TABLE table_name_88 (date VARCHAR, location VARCHAR)
On what Date was the Tournament in Gold Coast?
SELECT winner FROM table_name_29 WHERE event = "billabong pro" AND country = "french polynesia"
CREATE TABLE table_name_29 (winner VARCHAR, event VARCHAR, country VARCHAR)
Who was the Winner of the French Polynesia Billabong Pro Event?
SELECT 2010 FROM table_name_97 WHERE 2007 = "a" AND 2004 = "2r"
CREATE TABLE table_name_97 (Id VARCHAR)
What shows for 2010 when 2007 is a and 2004 is 2r?
SELECT 2005 FROM table_name_99 WHERE 2008 = "grand slam tournaments"
CREATE TABLE table_name_99 (Id VARCHAR)
What is the 2005 when the 2008 shows grand slam tournaments?
SELECT 2002 FROM table_name_85 WHERE 2010 = "69"
CREATE TABLE table_name_85 (Id VARCHAR)
What shows for 2002 when 2010 shows 69?
SELECT 2010 FROM table_name_60 WHERE 2005 = "1r"
CREATE TABLE table_name_60 (Id VARCHAR)
What shows for 2010 when 2005 shows 1r?
SELECT MAX(drawn) FROM table_name_27 WHERE points > 15 AND against = 19 AND lost < 3
CREATE TABLE table_name_27 (drawn INTEGER, lost VARCHAR, points VARCHAR, against VARCHAR)
What is the highest number of draws with more than 15 points, an against of 19, and less than 3 losses?
SELECT stage__winner_ FROM table_name_3 WHERE general_classification = "thor hushovd" AND young_rider_classification = "trent lowe"
CREATE TABLE table_name_3 (stage__winner_ VARCHAR, general_classification VARCHAR, young_rider_classification VARCHAR)
What stage (winner) has thor hushovd as a general classification, and trent lowe as a rider classification?
SELECT stage__winner_ FROM table_name_69 WHERE team_classification = "quick step" AND young_rider_classification = "trent lowe"
CREATE TABLE table_name_69 (stage__winner_ VARCHAR, team_classification VARCHAR, young_rider_classification VARCHAR)
What stage (winner) has quick step as the team classification, and trent lowe as the young rider classification?
SELECT 2000 AS _2001_team FROM table_name_15 WHERE jersey__number = 19
CREATE TABLE table_name_15 (jersey__number VARCHAR)
What is the 2000-2001 Team with a Jersey # that is 19?
SELECT AVG(tied) FROM table_name_33 WHERE wins > 19
CREATE TABLE table_name_33 (tied INTEGER, wins INTEGER)
What is the average number of ties for years with more than 19 wins?
SELECT COUNT(losses) FROM table_name_82 WHERE wins < 9
CREATE TABLE table_name_82 (losses VARCHAR, wins INTEGER)
What is the total number of losses for years with fewer than 9 wins?
SELECT COUNT(division) FROM table_name_7 WHERE team = "chongqing lifan" AND apps > 9
CREATE TABLE table_name_7 (division VARCHAR, team VARCHAR, apps VARCHAR)
What is the total number of Division(s), when Team is Chongqing Lifan, and when Apps is greater than 9?
SELECT season FROM table_name_6 WHERE country = "china" AND team = "dalian shide" AND apps > 8 AND goals = 2
CREATE TABLE table_name_6 (season VARCHAR, goals VARCHAR, apps VARCHAR, country VARCHAR, team VARCHAR)
What is Season, when Country is China, when Team is Dalian Shide, when Apps is greater than 8, and when Goals is 2?
SELECT MAX(apps) FROM table_name_58 WHERE goals > 5
CREATE TABLE table_name_58 (apps INTEGER, goals INTEGER)
What is the highest Apps, when Goals are greater than 5?
SELECT season FROM table_name_48 WHERE country = "china" AND team = "dalian shide" AND goals = 0
CREATE TABLE table_name_48 (season VARCHAR, goals VARCHAR, country VARCHAR, team VARCHAR)
What Season, when Country is China, when Team is Dalian Shide, and when Goals are 0?
SELECT COUNT(division) FROM table_name_32 WHERE country = "china" AND apps > 9 AND season = "2008"
CREATE TABLE table_name_32 (division VARCHAR, season VARCHAR, country VARCHAR, apps VARCHAR)
What is the total number of Division(s), when Country is China, when Apps is greater than 9, and when Season is 2008?
SELECT MIN(division) FROM table_name_79 WHERE goals < 10 AND team = "dalian shide" AND apps < 17 AND season = "2007"
CREATE TABLE table_name_79 (division INTEGER, season VARCHAR, apps VARCHAR, goals VARCHAR, team VARCHAR)
What is the lowest Division, when Goals are less than 10, when Team is Dalian Shide, when Apps are less than 17, and when Season is 2007?
SELECT MIN(area) FROM table_name_75 WHERE density > 234.77 AND rank = 32 AND population < 965 OFFSET 040
CREATE TABLE table_name_75 (area INTEGER, population VARCHAR, density VARCHAR, rank VARCHAR)
What is the lowest area when the density is greater than 234.77, the population is less than 965,040, and the rank is 32?
SELECT home FROM table_name_28 WHERE time = "14:00"
CREATE TABLE table_name_28 (home VARCHAR, time VARCHAR)
What is the Home with a Time that is 14:00?
SELECT score FROM table_name_66 WHERE away = "high park demons"
CREATE TABLE table_name_66 (score VARCHAR, away VARCHAR)
What is the Score with an Away that is high park demons?
SELECT score FROM table_name_60 WHERE home = "etobicoke kangaroos"
CREATE TABLE table_name_60 (score VARCHAR, home VARCHAR)
What is the Score with a Hoe that is etobicoke kangaroos?
SELECT date FROM table_name_65 WHERE score = "46-77"
CREATE TABLE table_name_65 (date VARCHAR, score VARCHAR)
What is the Date with a Score that is 46-77?
SELECT pavilion_depth FROM table_name_49 WHERE crown_angle = "34.0–34.7°"
CREATE TABLE table_name_49 (pavilion_depth VARCHAR, crown_angle VARCHAR)
Which Pavilion depth has a Crown angle of 34.0–34.7°?
SELECT brilliance_grade FROM table_name_69 WHERE benchmark = "practical fine cut"
CREATE TABLE table_name_69 (brilliance_grade VARCHAR, benchmark VARCHAR)
Which Brilliance Grade has a Benchmark of practical fine cut?
SELECT table_diameter FROM table_name_35 WHERE crown_height = "14.45%"
CREATE TABLE table_name_35 (table_diameter VARCHAR, crown_height VARCHAR)
Which Table diameter has a Crown height of 14.45%?
SELECT brilliance_grade FROM table_name_6 WHERE crown_angle = "41.1°"
CREATE TABLE table_name_6 (brilliance_grade VARCHAR, crown_angle VARCHAR)
Which Brilliance Grade has a Crown angle of 41.1°?
SELECT pavilion_depth FROM table_name_36 WHERE brilliance_grade = "100%" AND pavilion_angle = "n/a"
CREATE TABLE table_name_36 (pavilion_depth VARCHAR, brilliance_grade VARCHAR, pavilion_angle VARCHAR)
Which Pavilion depth has a Brilliance Grade of 100% and a Pavilion angle of n/a?
SELECT COUNT(lost) FROM table_name_70 WHERE points = 2
CREATE TABLE table_name_70 (lost VARCHAR, points VARCHAR)
What is the number of lost with 2 points?
SELECT agg FROM table_name_60 WHERE team_2 = "kenya"
CREATE TABLE table_name_60 (agg VARCHAR, team_2 VARCHAR)
What was the aggregate for the match with a team 2 of Kenya?
SELECT agg FROM table_name_28 WHERE team_1 = "sierra leone"
CREATE TABLE table_name_28 (agg VARCHAR, team_1 VARCHAR)
What was the aggregate for the match with Sierra Leone as team 1?
SELECT 1 AS st_leg FROM table_name_14 WHERE team_1 = "lesotho"
CREATE TABLE table_name_14 (team_1 VARCHAR)
What was the 1st leg score for the match with Lesotho as team 1?
SELECT 2 AS nd_leg FROM table_name_82 WHERE team_1 = "lesotho"
CREATE TABLE table_name_82 (team_1 VARCHAR)
What was the 2nd leg score for the match with Lesotho as team 1?
SELECT COUNT(rank) FROM table_name_9 WHERE silver < 3 AND total < 2 AND bronze > 0
CREATE TABLE table_name_9 (rank VARCHAR, bronze VARCHAR, silver VARCHAR, total VARCHAR)
What is the total number of ladies ranked who had less than 3 silvers, less than 2 total medals, and more than 0 bronze medals?
SELECT COUNT(gold) FROM table_name_17 WHERE bronze < 3 AND rank < 11 AND silver > 0
CREATE TABLE table_name_17 (gold VARCHAR, silver VARCHAR, bronze VARCHAR, rank VARCHAR)
What is the total number of gold medals for the skater with less than 3 bronze medals, more than 0 silver medals and a rank smaller than 11?
SELECT award FROM table_name_29 WHERE nominee = "matthew warchus"
CREATE TABLE table_name_29 (award VARCHAR, nominee VARCHAR)
What was Matthew Warchus' Award?
SELECT format FROM table_name_56 WHERE notes = "french" AND call_sign = "ckrl-fm"
CREATE TABLE table_name_56 (format VARCHAR, notes VARCHAR, call_sign VARCHAR)
What is the Format of the French Frequency with a Call sign of CKRL-FM?
SELECT format FROM table_name_96 WHERE owner = "laval university"
CREATE TABLE table_name_96 (format VARCHAR, owner VARCHAR)
What is the Format of the Frequency owned by Laval University?
SELECT notes FROM table_name_63 WHERE format = "talk radio"
CREATE TABLE table_name_63 (notes VARCHAR, format VARCHAR)
What is the Notes of the Frequency with Format of talk radio?
SELECT notes FROM table_name_46 WHERE format = "soft adult contemporary"
CREATE TABLE table_name_46 (notes VARCHAR, format VARCHAR)
What is the Notes of the Frequency with a Format of soft adult contemporary?
SELECT COUNT(chart) AS run FROM table_name_18 WHERE debut_position > 7 AND peak_position = 11
CREATE TABLE table_name_18 (chart VARCHAR, debut_position VARCHAR, peak_position VARCHAR)
How many chart runs had a debut position of more than 7 when peak position was 11?
SELECT spoofed_title FROM table_name_97 WHERE artist = "mort drucker" AND issue = 88
CREATE TABLE table_name_97 (spoofed_title VARCHAR, artist VARCHAR, issue VARCHAR)
Which Spoofed title had Mort Drucker as the artist in issue 88?
SELECT artist FROM table_name_42 WHERE issue > 74 AND spoofed_title = "genteel ben"
CREATE TABLE table_name_42 (artist VARCHAR, issue VARCHAR, spoofed_title VARCHAR)
Who was the artist for Spoofed title Genteel Ben in an issue later than 74?
SELECT SUM(issue) FROM table_name_44 WHERE artist = "mort drucker" AND spoofed_title = "route 67"
CREATE TABLE table_name_44 (issue INTEGER, artist VARCHAR, spoofed_title VARCHAR)
Which issue was the Spoofed title Route 67 for which Mort Drucker was the artist?
SELECT MIN(issue) FROM table_name_12 WHERE writer = "arnie kogen" AND date = "december 1964"
CREATE TABLE table_name_12 (issue INTEGER, writer VARCHAR, date VARCHAR)
What is the earliest issue Arnie Kogen wrote for in December 1964?
SELECT MAX(points) FROM table_name_36 WHERE difference = "8" AND position < 4
CREATE TABLE table_name_36 (points INTEGER, difference VARCHAR, position VARCHAR)
What are the highest points that have a difference of 8, with a position less than 4?
SELECT SUM(lost) FROM table_name_32 WHERE team = "corinthians" AND against > 26
CREATE TABLE table_name_32 (lost INTEGER, team VARCHAR, against VARCHAR)
How many losses have corinthians as the team, with an against greater than 26?
SELECT COUNT(points) FROM table_name_62 WHERE difference = "23" AND drawn < 5
CREATE TABLE table_name_62 (points VARCHAR, difference VARCHAR, drawn VARCHAR)
How many points have a difference of 23, with a drawn less than 5?
SELECT SUM(position) FROM table_name_57 WHERE points = 15 AND drawn < 3
CREATE TABLE table_name_57 (position INTEGER, points VARCHAR, drawn VARCHAR)
How many positions have 15 for the points, with a drawn less than 3?
SELECT result FROM table_name_31 WHERE record = "7-0-0"
CREATE TABLE table_name_31 (result VARCHAR, record VARCHAR)
What was the result of the match held when his record was 7-0-0?
SELECT notes FROM table_name_32 WHERE date = "1989 may 7"
CREATE TABLE table_name_32 (notes VARCHAR, date VARCHAR)
What do the notes say for 1989 May 7?
SELECT method FROM table_name_55 WHERE opponent = "alberto rodriguez"
CREATE TABLE table_name_55 (method VARCHAR, opponent VARCHAR)
How did he beat Alberto Rodriguez?
SELECT record FROM table_name_79 WHERE date = "1987"
CREATE TABLE table_name_79 (record VARCHAR, date VARCHAR)
What was his record in 1987?
SELECT MIN(total) FROM table_name_96 WHERE nation = "barbados" AND bronze > 0
CREATE TABLE table_name_96 (total INTEGER, nation VARCHAR, bronze VARCHAR)
What is the lowest total that has barbados as the nation with a bronze greater than 0?
SELECT COUNT(silver) FROM table_name_43 WHERE gold > 2 AND bronze < 35 AND nation = "china" AND total > 26
CREATE TABLE table_name_43 (silver VARCHAR, total VARCHAR, nation VARCHAR, gold VARCHAR, bronze VARCHAR)
How many silvers have a gold greater than 2, a bronze less than 35, china as the nation, with a total greater than 26?
SELECT MAX(total) FROM table_name_57 WHERE gold < 0
CREATE TABLE table_name_57 (total INTEGER, gold INTEGER)
What is the largest total that has a gold less than 0?
SELECT COUNT(gold) FROM table_name_32 WHERE silver > 1 AND nation = "vietnam" AND bronze < 3
CREATE TABLE table_name_32 (gold VARCHAR, bronze VARCHAR, silver VARCHAR, nation VARCHAR)
How many golds have a silver greater than 1, vietnam as the nation, with a bronze less than 3?