question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Who was the Opponent on November 27, 2005? | CREATE TABLE table_name_32 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_32 WHERE date = "november 27, 2005" | ### Context: CREATE TABLE table_name_32 (opponent VARCHAR, date VARCHAR) ### Question: Who was the Opponent on November 27, 2005? ### Answer: SELECT opponent FROM table_name_32 WHERE date = "november 27, 2005" |
What is the Week with a Date of Bye? | CREATE TABLE table_name_87 (week VARCHAR, date VARCHAR) | SELECT COUNT(week) FROM table_name_87 WHERE date = "bye" | ### Context: CREATE TABLE table_name_87 (week VARCHAR, date VARCHAR) ### Question: What is the Week with a Date of Bye? ### Answer: SELECT COUNT(week) FROM table_name_87 WHERE date = "bye" |
Which Rank has a Bronze of 1, and a Nation of lithuania? | CREATE TABLE table_name_89 (rank VARCHAR, bronze VARCHAR, nation VARCHAR) | SELECT rank FROM table_name_89 WHERE bronze = 1 AND nation = "lithuania" | ### Context: CREATE TABLE table_name_89 (rank VARCHAR, bronze VARCHAR, nation VARCHAR) ### Question: Which Rank has a Bronze of 1, and a Nation of lithuania? ### Answer: SELECT rank FROM table_name_89 WHERE bronze = 1 AND nation = "lithuania" |
How much Silver has a Rank of 1, and a Bronze smaller than 3? | CREATE TABLE table_name_29 (silver INTEGER, rank VARCHAR, bronze VARCHAR) | SELECT SUM(silver) FROM table_name_29 WHERE rank = "1" AND bronze < 3 | ### Context: CREATE TABLE table_name_29 (silver INTEGER, rank VARCHAR, bronze VARCHAR) ### Question: How much Silver has a Rank of 1, and a Bronze smaller than 3? ### Answer: SELECT SUM(silver) FROM table_name_29 WHERE rank = "1" AND bronze < 3 |
Which Bronze has a Gold of 2, and a Nation of slovakia, and a Total larger than 2? | CREATE TABLE table_name_53 (bronze INTEGER, total VARCHAR, gold VARCHAR, nation VARCHAR) | SELECT MAX(bronze) FROM table_name_53 WHERE gold = 2 AND nation = "slovakia" AND total > 2 | ### Context: CREATE TABLE table_name_53 (bronze INTEGER, total VARCHAR, gold VARCHAR, nation VARCHAR) ### Question: Which Bronze has a Gold of 2, and a Nation of slovakia, and a Total larger than 2? ### Answer: SELECT MAX(bronze) FROM table_name_53 WHERE gold = 2 AND nation = "slovakia" AND total > 2 |
How much Bronze has a Gold larger than 1, and a Silver smaller than 3, and a Nation of germany, and a Total larger than 11? | CREATE TABLE table_name_54 (bronze VARCHAR, total VARCHAR, nation VARCHAR, gold VARCHAR, silver VARCHAR) | SELECT COUNT(bronze) FROM table_name_54 WHERE gold > 1 AND silver < 3 AND nation = "germany" AND total > 11 | ### Context: CREATE TABLE table_name_54 (bronze VARCHAR, total VARCHAR, nation VARCHAR, gold VARCHAR, silver VARCHAR) ### Question: How much Bronze has a Gold larger than 1, and a Silver smaller than 3, and a Nation of germany, and a Total larger than 11? ### Answer: SELECT COUNT(bronze) FROM table_name_54 WHERE gold >... |
What's the total of the position of 1? | CREATE TABLE table_name_91 (total INTEGER, position INTEGER) | SELECT SUM(total) FROM table_name_91 WHERE position < 1 | ### Context: CREATE TABLE table_name_91 (total INTEGER, position INTEGER) ### Question: What's the total of the position of 1? ### Answer: SELECT SUM(total) FROM table_name_91 WHERE position < 1 |
What's the position that has a total less than 66.5m, a compulsory of 30.9 and voluntary less than 33.7? | CREATE TABLE table_name_72 (position INTEGER, voluntary VARCHAR, total VARCHAR, compulsory VARCHAR) | SELECT MIN(position) FROM table_name_72 WHERE total < 66.5 AND compulsory = 30.9 AND voluntary < 33.7 | ### Context: CREATE TABLE table_name_72 (position INTEGER, voluntary VARCHAR, total VARCHAR, compulsory VARCHAR) ### Question: What's the position that has a total less than 66.5m, a compulsory of 30.9 and voluntary less than 33.7? ### Answer: SELECT MIN(position) FROM table_name_72 WHERE total < 66.5 AND compulsory = ... |
What's the total compulsory when the total is more than 69.2 and the voluntary is 38.7? | CREATE TABLE table_name_42 (compulsory VARCHAR, voluntary VARCHAR, total VARCHAR) | SELECT COUNT(compulsory) FROM table_name_42 WHERE voluntary = 38.7 AND total > 69.2 | ### Context: CREATE TABLE table_name_42 (compulsory VARCHAR, voluntary VARCHAR, total VARCHAR) ### Question: What's the total compulsory when the total is more than 69.2 and the voluntary is 38.7? ### Answer: SELECT COUNT(compulsory) FROM table_name_42 WHERE voluntary = 38.7 AND total > 69.2 |
What date was Wet Hare, directed by Robert McKimson, released? | CREATE TABLE table_name_61 (release_date VARCHAR, director VARCHAR, title VARCHAR) | SELECT release_date FROM table_name_61 WHERE director = "robert mckimson" AND title = "wet hare" | ### Context: CREATE TABLE table_name_61 (release_date VARCHAR, director VARCHAR, title VARCHAR) ### Question: What date was Wet Hare, directed by Robert McKimson, released? ### Answer: SELECT release_date FROM table_name_61 WHERE director = "robert mckimson" AND title = "wet hare" |
What is the title of the film with production number 1553, directed by Friz Freleng? | CREATE TABLE table_name_10 (title VARCHAR, director VARCHAR, production_number VARCHAR) | SELECT title FROM table_name_10 WHERE director = "friz freleng" AND production_number = 1553 | ### Context: CREATE TABLE table_name_10 (title VARCHAR, director VARCHAR, production_number VARCHAR) ### Question: What is the title of the film with production number 1553, directed by Friz Freleng? ### Answer: SELECT title FROM table_name_10 WHERE director = "friz freleng" AND production_number = 1553 |
What is Crows' Feat's production number? | CREATE TABLE table_name_49 (production_number VARCHAR, title VARCHAR) | SELECT production_number FROM table_name_49 WHERE title = "crows' feat" | ### Context: CREATE TABLE table_name_49 (production_number VARCHAR, title VARCHAR) ### Question: What is Crows' Feat's production number? ### Answer: SELECT production_number FROM table_name_49 WHERE title = "crows' feat" |
What is the safari value with a 2.4% opera and 29.9% internet explorer? | CREATE TABLE table_name_7 (safari VARCHAR, opera VARCHAR, internet_explorer VARCHAR) | SELECT safari FROM table_name_7 WHERE opera = "2.4%" AND internet_explorer = "29.9%" | ### Context: CREATE TABLE table_name_7 (safari VARCHAR, opera VARCHAR, internet_explorer VARCHAR) ### Question: What is the safari value with a 2.4% opera and 29.9% internet explorer? ### Answer: SELECT safari FROM table_name_7 WHERE opera = "2.4%" AND internet_explorer = "29.9%" |
What is the firefox value with a 1.9% safari? | CREATE TABLE table_name_97 (firefox VARCHAR, safari VARCHAR) | SELECT firefox FROM table_name_97 WHERE safari = "1.9%" | ### Context: CREATE TABLE table_name_97 (firefox VARCHAR, safari VARCHAR) ### Question: What is the firefox value with a 1.9% safari? ### Answer: SELECT firefox FROM table_name_97 WHERE safari = "1.9%" |
What is the firefox value with a 1.8% opera on 30 July 2007? | CREATE TABLE table_name_22 (firefox VARCHAR, opera VARCHAR, date VARCHAR) | SELECT firefox FROM table_name_22 WHERE opera = "1.8%" AND date = "30 july 2007" | ### Context: CREATE TABLE table_name_22 (firefox VARCHAR, opera VARCHAR, date VARCHAR) ### Question: What is the firefox value with a 1.8% opera on 30 July 2007? ### Answer: SELECT firefox FROM table_name_22 WHERE opera = "1.8%" AND date = "30 july 2007" |
What is the date when internet explorer was 62.2% | CREATE TABLE table_name_17 (date VARCHAR, internet_explorer VARCHAR) | SELECT date FROM table_name_17 WHERE internet_explorer = "62.2%" | ### Context: CREATE TABLE table_name_17 (date VARCHAR, internet_explorer VARCHAR) ### Question: What is the date when internet explorer was 62.2% ### Answer: SELECT date FROM table_name_17 WHERE internet_explorer = "62.2%" |
What is the firefox value with a 22.0% internet explorer? | CREATE TABLE table_name_56 (firefox VARCHAR, internet_explorer VARCHAR) | SELECT firefox FROM table_name_56 WHERE internet_explorer = "22.0%" | ### Context: CREATE TABLE table_name_56 (firefox VARCHAR, internet_explorer VARCHAR) ### Question: What is the firefox value with a 22.0% internet explorer? ### Answer: SELECT firefox FROM table_name_56 WHERE internet_explorer = "22.0%" |
What is the safari value with a 28.0% internet explorer? | CREATE TABLE table_name_70 (safari VARCHAR, internet_explorer VARCHAR) | SELECT safari FROM table_name_70 WHERE internet_explorer = "28.0%" | ### Context: CREATE TABLE table_name_70 (safari VARCHAR, internet_explorer VARCHAR) ### Question: What is the safari value with a 28.0% internet explorer? ### Answer: SELECT safari FROM table_name_70 WHERE internet_explorer = "28.0%" |
Which catalog value has a region of world? | CREATE TABLE table_name_34 (catalog VARCHAR, region VARCHAR) | SELECT catalog FROM table_name_34 WHERE region = "world" | ### Context: CREATE TABLE table_name_34 (catalog VARCHAR, region VARCHAR) ### Question: Which catalog value has a region of world? ### Answer: SELECT catalog FROM table_name_34 WHERE region = "world" |
Which formats have a region of Europe and Catalog value of WEBB185? | CREATE TABLE table_name_28 (format_s_ VARCHAR, region VARCHAR, catalog VARCHAR) | SELECT format_s_ FROM table_name_28 WHERE region = "europe" AND catalog = "webb185" | ### Context: CREATE TABLE table_name_28 (format_s_ VARCHAR, region VARCHAR, catalog VARCHAR) ### Question: Which formats have a region of Europe and Catalog value of WEBB185? ### Answer: SELECT format_s_ FROM table_name_28 WHERE region = "europe" AND catalog = "webb185" |
Which region is associated with the catalog value of 512335? | CREATE TABLE table_name_57 (region VARCHAR, catalog VARCHAR) | SELECT region FROM table_name_57 WHERE catalog = "512335" | ### Context: CREATE TABLE table_name_57 (region VARCHAR, catalog VARCHAR) ### Question: Which region is associated with the catalog value of 512335? ### Answer: SELECT region FROM table_name_57 WHERE catalog = "512335" |
What are the formats associated with the Atlantic Records label, catalog number 512336? | CREATE TABLE table_name_15 (format_s_ VARCHAR, label VARCHAR, catalog VARCHAR) | SELECT format_s_ FROM table_name_15 WHERE label = "atlantic records" AND catalog = "512336" | ### Context: CREATE TABLE table_name_15 (format_s_ VARCHAR, label VARCHAR, catalog VARCHAR) ### Question: What are the formats associated with the Atlantic Records label, catalog number 512336? ### Answer: SELECT format_s_ FROM table_name_15 WHERE label = "atlantic records" AND catalog = "512336" |
Which date was associated with the release in Europe on the Wichita Recordings label? | CREATE TABLE table_name_5 (date VARCHAR, region VARCHAR, label VARCHAR) | SELECT date FROM table_name_5 WHERE region = "europe" AND label = "wichita recordings" | ### Context: CREATE TABLE table_name_5 (date VARCHAR, region VARCHAR, label VARCHAR) ### Question: Which date was associated with the release in Europe on the Wichita Recordings label? ### Answer: SELECT date FROM table_name_5 WHERE region = "europe" AND label = "wichita recordings" |
What is the lowest year that has edmonton, canada as the venue with a weight class (kg) greater than 100? | CREATE TABLE table_name_11 (year INTEGER, venue VARCHAR, weight_class__kg_ VARCHAR) | SELECT MIN(year) FROM table_name_11 WHERE venue = "edmonton, canada" AND weight_class__kg_ > 100 | ### Context: CREATE TABLE table_name_11 (year INTEGER, venue VARCHAR, weight_class__kg_ VARCHAR) ### Question: What is the lowest year that has edmonton, canada as the venue with a weight class (kg) greater than 100? ### Answer: SELECT MIN(year) FROM table_name_11 WHERE venue = "edmonton, canada" AND weight_class__kg_ ... |
What is the lowest weight class (kg) that has sofia, bulgaria as the venue? | CREATE TABLE table_name_73 (weight_class__kg_ INTEGER, venue VARCHAR) | SELECT MIN(weight_class__kg_) FROM table_name_73 WHERE venue = "sofia, bulgaria" | ### Context: CREATE TABLE table_name_73 (weight_class__kg_ INTEGER, venue VARCHAR) ### Question: What is the lowest weight class (kg) that has sofia, bulgaria as the venue? ### Answer: SELECT MIN(weight_class__kg_) FROM table_name_73 WHERE venue = "sofia, bulgaria" |
What is the highest year that has fila world championships as the event, with toledo, united states as the venue, and a weight class (kg) less than 97? | CREATE TABLE table_name_37 (year INTEGER, weight_class__kg_ VARCHAR, event VARCHAR, venue VARCHAR) | SELECT MAX(year) FROM table_name_37 WHERE event = "fila world championships" AND venue = "toledo, united states" AND weight_class__kg_ < 97 | ### Context: CREATE TABLE table_name_37 (year INTEGER, weight_class__kg_ VARCHAR, event VARCHAR, venue VARCHAR) ### Question: What is the highest year that has fila world championships as the event, with toledo, united states as the venue, and a weight class (kg) less than 97? ### Answer: SELECT MAX(year) FROM table_na... |
What is the Airport with the ICAO fo KSEA? | CREATE TABLE table_name_10 (airport VARCHAR, icao VARCHAR) | SELECT airport FROM table_name_10 WHERE icao = "ksea" | ### Context: CREATE TABLE table_name_10 (airport VARCHAR, icao VARCHAR) ### Question: What is the Airport with the ICAO fo KSEA? ### Answer: SELECT airport FROM table_name_10 WHERE icao = "ksea" |
What is the IcAO of Frankfurt? | CREATE TABLE table_name_91 (icao VARCHAR, city VARCHAR) | SELECT icao FROM table_name_91 WHERE city = "frankfurt" | ### Context: CREATE TABLE table_name_91 (icao VARCHAR, city VARCHAR) ### Question: What is the IcAO of Frankfurt? ### Answer: SELECT icao FROM table_name_91 WHERE city = "frankfurt" |
What is the Airport with a ICAO of EDDH? | CREATE TABLE table_name_87 (airport VARCHAR, icao VARCHAR) | SELECT airport FROM table_name_87 WHERE icao = "eddh" | ### Context: CREATE TABLE table_name_87 (airport VARCHAR, icao VARCHAR) ### Question: What is the Airport with a ICAO of EDDH? ### Answer: SELECT airport FROM table_name_87 WHERE icao = "eddh" |
What Airport's IATA is SEA? | CREATE TABLE table_name_56 (airport VARCHAR, iata VARCHAR) | SELECT airport FROM table_name_56 WHERE iata = "sea" | ### Context: CREATE TABLE table_name_56 (airport VARCHAR, iata VARCHAR) ### Question: What Airport's IATA is SEA? ### Answer: SELECT airport FROM table_name_56 WHERE iata = "sea" |
What is the City with an IATA of MUC? | CREATE TABLE table_name_51 (city VARCHAR, iata VARCHAR) | SELECT city FROM table_name_51 WHERE iata = "muc" | ### Context: CREATE TABLE table_name_51 (city VARCHAR, iata VARCHAR) ### Question: What is the City with an IATA of MUC? ### Answer: SELECT city FROM table_name_51 WHERE iata = "muc" |
What is the IATA OF Akureyri? | CREATE TABLE table_name_30 (iata VARCHAR, city VARCHAR) | SELECT iata FROM table_name_30 WHERE city = "akureyri" | ### Context: CREATE TABLE table_name_30 (iata VARCHAR, city VARCHAR) ### Question: What is the IATA OF Akureyri? ### Answer: SELECT iata FROM table_name_30 WHERE city = "akureyri" |
How tall is the Mountain of jbel ghat? | CREATE TABLE table_name_11 (height__m_ VARCHAR, mountain VARCHAR) | SELECT COUNT(height__m_) FROM table_name_11 WHERE mountain = "jbel ghat" | ### Context: CREATE TABLE table_name_11 (height__m_ VARCHAR, mountain VARCHAR) ### Question: How tall is the Mountain of jbel ghat? ### Answer: SELECT COUNT(height__m_) FROM table_name_11 WHERE mountain = "jbel ghat" |
Which Country has a Prominence (m) smaller than 1540, and a Height (m) smaller than 3530, and a Range of virunga mountains, and a Mountain of nyiragongo? | CREATE TABLE table_name_12 (country VARCHAR, mountain VARCHAR, range VARCHAR, prominence__m_ VARCHAR, height__m_ VARCHAR) | SELECT country FROM table_name_12 WHERE prominence__m_ < 1540 AND height__m_ < 3530 AND range = "virunga mountains" AND mountain = "nyiragongo" | ### Context: CREATE TABLE table_name_12 (country VARCHAR, mountain VARCHAR, range VARCHAR, prominence__m_ VARCHAR, height__m_ VARCHAR) ### Question: Which Country has a Prominence (m) smaller than 1540, and a Height (m) smaller than 3530, and a Range of virunga mountains, and a Mountain of nyiragongo? ### Answer: SELEC... |
Which Country has a Height (m) larger than 4100, and a Range of arsi mountains, and a Mountain of bada? | CREATE TABLE table_name_15 (country VARCHAR, mountain VARCHAR, height__m_ VARCHAR, range VARCHAR) | SELECT country FROM table_name_15 WHERE height__m_ > 4100 AND range = "arsi mountains" AND mountain = "bada" | ### Context: CREATE TABLE table_name_15 (country VARCHAR, mountain VARCHAR, height__m_ VARCHAR, range VARCHAR) ### Question: Which Country has a Height (m) larger than 4100, and a Range of arsi mountains, and a Mountain of bada? ### Answer: SELECT country FROM table_name_15 WHERE height__m_ > 4100 AND range = "arsi mou... |
Which Percentage has a Draw of 6? | CREATE TABLE table_name_9 (percentage VARCHAR, draw VARCHAR) | SELECT percentage FROM table_name_9 WHERE draw = 6 | ### Context: CREATE TABLE table_name_9 (percentage VARCHAR, draw VARCHAR) ### Question: Which Percentage has a Draw of 6? ### Answer: SELECT percentage FROM table_name_9 WHERE draw = 6 |
Which team had a rank under 4 with a time of 1:14.04.88? | CREATE TABLE table_name_69 (team VARCHAR, rank VARCHAR, time VARCHAR) | SELECT team FROM table_name_69 WHERE rank < 4 AND time = "1:14.04.88" | ### Context: CREATE TABLE table_name_69 (team VARCHAR, rank VARCHAR, time VARCHAR) ### Question: Which team had a rank under 4 with a time of 1:14.04.88? ### Answer: SELECT team FROM table_name_69 WHERE rank < 4 AND time = "1:14.04.88" |
What was the speed for the rider with a time of 1:14.15.64? | CREATE TABLE table_name_52 (speed VARCHAR, time VARCHAR) | SELECT speed FROM table_name_52 WHERE time = "1:14.15.64" | ### Context: CREATE TABLE table_name_52 (speed VARCHAR, time VARCHAR) ### Question: What was the speed for the rider with a time of 1:14.15.64? ### Answer: SELECT speed FROM table_name_52 WHERE time = "1:14.15.64" |
Which College/junior/club team has a Round of 2? | CREATE TABLE table_name_11 (college_junior_club_team VARCHAR, round VARCHAR) | SELECT college_junior_club_team FROM table_name_11 WHERE round = 2 | ### Context: CREATE TABLE table_name_11 (college_junior_club_team VARCHAR, round VARCHAR) ### Question: Which College/junior/club team has a Round of 2? ### Answer: SELECT college_junior_club_team FROM table_name_11 WHERE round = 2 |
Which Round has a Player of dan chicoine, and a Pick larger than 23? | CREATE TABLE table_name_65 (round INTEGER, player VARCHAR, pick VARCHAR) | SELECT AVG(round) FROM table_name_65 WHERE player = "dan chicoine" AND pick > 23 | ### Context: CREATE TABLE table_name_65 (round INTEGER, player VARCHAR, pick VARCHAR) ### Question: Which Round has a Player of dan chicoine, and a Pick larger than 23? ### Answer: SELECT AVG(round) FROM table_name_65 WHERE player = "dan chicoine" AND pick > 23 |
What is the production number of From Hare to Heir? | CREATE TABLE table_name_33 (production_number INTEGER, title VARCHAR) | SELECT SUM(production_number) FROM table_name_33 WHERE title = "from hare to heir" | ### Context: CREATE TABLE table_name_33 (production_number INTEGER, title VARCHAR) ### Question: What is the production number of From Hare to Heir? ### Answer: SELECT SUM(production_number) FROM table_name_33 WHERE title = "from hare to heir" |
What is the Series number of the episode with a production number of 1547? | CREATE TABLE table_name_34 (series VARCHAR, production_number VARCHAR) | SELECT series FROM table_name_34 WHERE production_number = 1547 | ### Context: CREATE TABLE table_name_34 (series VARCHAR, production_number VARCHAR) ### Question: What is the Series number of the episode with a production number of 1547? ### Answer: SELECT series FROM table_name_34 WHERE production_number = 1547 |
What is the production number for the episode directed by Robert McKimson named Mice Follies? | CREATE TABLE table_name_24 (production_number VARCHAR, director VARCHAR, title VARCHAR) | SELECT COUNT(production_number) FROM table_name_24 WHERE director = "robert mckimson" AND title = "mice follies" | ### Context: CREATE TABLE table_name_24 (production_number VARCHAR, director VARCHAR, title VARCHAR) ### Question: What is the production number for the episode directed by Robert McKimson named Mice Follies? ### Answer: SELECT COUNT(production_number) FROM table_name_24 WHERE director = "robert mckimson" AND title = "... |
Name the Result of the Lineup of start, an Assist/pass of carli lloyd, and an Competition of 2011 fifa women’s world cup – group stage? | CREATE TABLE table_name_63 (result VARCHAR, competition VARCHAR, lineup VARCHAR, assist_pass VARCHAR) | SELECT result FROM table_name_63 WHERE lineup = "start" AND assist_pass = "carli lloyd" AND competition = "2011 fifa women’s world cup – group stage" | ### Context: CREATE TABLE table_name_63 (result VARCHAR, competition VARCHAR, lineup VARCHAR, assist_pass VARCHAR) ### Question: Name the Result of the Lineup of start, an Assist/pass of carli lloyd, and an Competition of 2011 fifa women’s world cup – group stage? ### Answer: SELECT result FROM table_name_63 WHERE line... |
Name the Lineup that has an Assist/pass of carli lloyd,a Competition of 2010 concacaf world cup qualifying – group stage? | CREATE TABLE table_name_43 (lineup VARCHAR, assist_pass VARCHAR, competition VARCHAR) | SELECT lineup FROM table_name_43 WHERE assist_pass = "carli lloyd" AND competition = "2010 concacaf world cup qualifying – group stage" | ### Context: CREATE TABLE table_name_43 (lineup VARCHAR, assist_pass VARCHAR, competition VARCHAR) ### Question: Name the Lineup that has an Assist/pass of carli lloyd,a Competition of 2010 concacaf world cup qualifying – group stage? ### Answer: SELECT lineup FROM table_name_43 WHERE assist_pass = "carli lloyd" AND co... |
Which Assist/pass has a Score of 1-0,a Competition of 2010 concacaf world cup qualifying – group stage? | CREATE TABLE table_name_14 (assist_pass VARCHAR, score VARCHAR, competition VARCHAR) | SELECT assist_pass FROM table_name_14 WHERE score = "1-0" AND competition = "2010 concacaf world cup qualifying – group stage" | ### Context: CREATE TABLE table_name_14 (assist_pass VARCHAR, score VARCHAR, competition VARCHAR) ### Question: Which Assist/pass has a Score of 1-0,a Competition of 2010 concacaf world cup qualifying – group stage? ### Answer: SELECT assist_pass FROM table_name_14 WHERE score = "1-0" AND competition = "2010 concacaf w... |
where has a Score of match reports? | CREATE TABLE table_name_49 (location VARCHAR, score VARCHAR) | SELECT location FROM table_name_49 WHERE score = "match reports" | ### Context: CREATE TABLE table_name_49 (location VARCHAR, score VARCHAR) ### Question: where has a Score of match reports? ### Answer: SELECT location FROM table_name_49 WHERE score = "match reports" |
which Score has a Location of mex cancun? | CREATE TABLE table_name_31 (score VARCHAR, location VARCHAR) | SELECT score FROM table_name_31 WHERE location = "mex cancun" | ### Context: CREATE TABLE table_name_31 (score VARCHAR, location VARCHAR) ### Question: which Score has a Location of mex cancun? ### Answer: SELECT score FROM table_name_31 WHERE location = "mex cancun" |
which Score has a Competition of match reports? | CREATE TABLE table_name_81 (score VARCHAR, competition VARCHAR) | SELECT score FROM table_name_81 WHERE competition = "match reports" | ### Context: CREATE TABLE table_name_81 (score VARCHAR, competition VARCHAR) ### Question: which Score has a Competition of match reports? ### Answer: SELECT score FROM table_name_81 WHERE competition = "match reports" |
Which tie number had an away team of Arsenal? | CREATE TABLE table_name_5 (tie_no VARCHAR, away_team VARCHAR) | SELECT tie_no FROM table_name_5 WHERE away_team = "arsenal" | ### Context: CREATE TABLE table_name_5 (tie_no VARCHAR, away_team VARCHAR) ### Question: Which tie number had an away team of Arsenal? ### Answer: SELECT tie_no FROM table_name_5 WHERE away_team = "arsenal" |
What was the score for the tie that had Shrewsbury Town as home team? | CREATE TABLE table_name_87 (score VARCHAR, home_team VARCHAR) | SELECT score FROM table_name_87 WHERE home_team = "shrewsbury town" | ### Context: CREATE TABLE table_name_87 (score VARCHAR, home_team VARCHAR) ### Question: What was the score for the tie that had Shrewsbury Town as home team? ### Answer: SELECT score FROM table_name_87 WHERE home_team = "shrewsbury town" |
What was the score of the tie that had Tottenham Hotspur as the home team? | CREATE TABLE table_name_35 (score VARCHAR, home_team VARCHAR) | SELECT score FROM table_name_35 WHERE home_team = "tottenham hotspur" | ### Context: CREATE TABLE table_name_35 (score VARCHAR, home_team VARCHAR) ### Question: What was the score of the tie that had Tottenham Hotspur as the home team? ### Answer: SELECT score FROM table_name_35 WHERE home_team = "tottenham hotspur" |
On which apparatus did Kanayeva have a final score smaller than 75.5 and a qualifying score smaller than 18.7? | CREATE TABLE table_name_68 (apparatus VARCHAR, score_final VARCHAR, score_qualifying VARCHAR) | SELECT apparatus FROM table_name_68 WHERE score_final < 75.5 AND score_qualifying < 18.7 | ### Context: CREATE TABLE table_name_68 (apparatus VARCHAR, score_final VARCHAR, score_qualifying VARCHAR) ### Question: On which apparatus did Kanayeva have a final score smaller than 75.5 and a qualifying score smaller than 18.7? ### Answer: SELECT apparatus FROM table_name_68 WHERE score_final < 75.5 AND score_quali... |
What was her lowest final score with a qualifying score of 74.075? | CREATE TABLE table_name_7 (score_final INTEGER, score_qualifying VARCHAR) | SELECT MIN(score_final) FROM table_name_7 WHERE score_qualifying = 74.075 | ### Context: CREATE TABLE table_name_7 (score_final INTEGER, score_qualifying VARCHAR) ### Question: What was her lowest final score with a qualifying score of 74.075? ### Answer: SELECT MIN(score_final) FROM table_name_7 WHERE score_qualifying = 74.075 |
What was her final score on the ribbon apparatus? | CREATE TABLE table_name_86 (score_final VARCHAR, apparatus VARCHAR) | SELECT score_final FROM table_name_86 WHERE apparatus = "ribbon" | ### Context: CREATE TABLE table_name_86 (score_final VARCHAR, apparatus VARCHAR) ### Question: What was her final score on the ribbon apparatus? ### Answer: SELECT score_final FROM table_name_86 WHERE apparatus = "ribbon" |
What are the notes for the athlete from South Africa? | CREATE TABLE table_name_15 (notes VARCHAR, country VARCHAR) | SELECT notes FROM table_name_15 WHERE country = "south africa" | ### Context: CREATE TABLE table_name_15 (notes VARCHAR, country VARCHAR) ### Question: What are the notes for the athlete from South Africa? ### Answer: SELECT notes FROM table_name_15 WHERE country = "south africa" |
What are the notes for the athlete from Spain? | CREATE TABLE table_name_29 (notes VARCHAR, country VARCHAR) | SELECT notes FROM table_name_29 WHERE country = "spain" | ### Context: CREATE TABLE table_name_29 (notes VARCHAR, country VARCHAR) ### Question: What are the notes for the athlete from Spain? ### Answer: SELECT notes FROM table_name_29 WHERE country = "spain" |
What is Calvin Mokoto's average rank? | CREATE TABLE table_name_1 (rank INTEGER, athletes VARCHAR) | SELECT AVG(rank) FROM table_name_1 WHERE athletes = "calvin mokoto" | ### Context: CREATE TABLE table_name_1 (rank INTEGER, athletes VARCHAR) ### Question: What is Calvin Mokoto's average rank? ### Answer: SELECT AVG(rank) FROM table_name_1 WHERE athletes = "calvin mokoto" |
What is Andreas Kiligkaridis rank? | CREATE TABLE table_name_80 (rank VARCHAR, athletes VARCHAR) | SELECT rank FROM table_name_80 WHERE athletes = "andreas kiligkaridis" | ### Context: CREATE TABLE table_name_80 (rank VARCHAR, athletes VARCHAR) ### Question: What is Andreas Kiligkaridis rank? ### Answer: SELECT rank FROM table_name_80 WHERE athletes = "andreas kiligkaridis" |
Which tournament had a partner of Erika Sema? | CREATE TABLE table_name_9 (tournament VARCHAR, partner VARCHAR) | SELECT tournament FROM table_name_9 WHERE partner = "erika sema" | ### Context: CREATE TABLE table_name_9 (tournament VARCHAR, partner VARCHAR) ### Question: Which tournament had a partner of Erika Sema? ### Answer: SELECT tournament FROM table_name_9 WHERE partner = "erika sema" |
Who were the opponents in the final at Noida? | CREATE TABLE table_name_15 (opponents_in_the_final VARCHAR, tournament VARCHAR) | SELECT opponents_in_the_final FROM table_name_15 WHERE tournament = "noida" | ### Context: CREATE TABLE table_name_15 (opponents_in_the_final VARCHAR, tournament VARCHAR) ### Question: Who were the opponents in the final at Noida? ### Answer: SELECT opponents_in_the_final FROM table_name_15 WHERE tournament = "noida" |
What school is in 36 Jackson? | CREATE TABLE table_name_41 (school VARCHAR, county VARCHAR) | SELECT school FROM table_name_41 WHERE county = "36 jackson" | ### Context: CREATE TABLE table_name_41 (school VARCHAR, county VARCHAR) ### Question: What school is in 36 Jackson? ### Answer: SELECT school FROM table_name_41 WHERE county = "36 jackson" |
What's the IHSAA Class Football if the panthers are the mascot? | CREATE TABLE table_name_7 (ihsaa_class VARCHAR, mascot VARCHAR) | SELECT ihsaa_class AS Football FROM table_name_7 WHERE mascot = "panthers" | ### Context: CREATE TABLE table_name_7 (ihsaa_class VARCHAR, mascot VARCHAR) ### Question: What's the IHSAA Class Football if the panthers are the mascot? ### Answer: SELECT ihsaa_class AS Football FROM table_name_7 WHERE mascot = "panthers" |
What's the IHSAA Class when the school is Seymour? | CREATE TABLE table_name_39 (ihsaa_class VARCHAR, school VARCHAR) | SELECT ihsaa_class FROM table_name_39 WHERE school = "seymour" | ### Context: CREATE TABLE table_name_39 (ihsaa_class VARCHAR, school VARCHAR) ### Question: What's the IHSAA Class when the school is Seymour? ### Answer: SELECT ihsaa_class FROM table_name_39 WHERE school = "seymour" |
What team has a position of running back and picked after 2? | CREATE TABLE table_name_44 (team VARCHAR, pick VARCHAR, position VARCHAR) | SELECT team FROM table_name_44 WHERE pick > 2 AND position = "running back" | ### Context: CREATE TABLE table_name_44 (team VARCHAR, pick VARCHAR, position VARCHAR) ### Question: What team has a position of running back and picked after 2? ### Answer: SELECT team FROM table_name_44 WHERE pick > 2 AND position = "running back" |
Which player is from the College of Alabama? | CREATE TABLE table_name_97 (player VARCHAR, college VARCHAR) | SELECT player FROM table_name_97 WHERE college = "alabama" | ### Context: CREATE TABLE table_name_97 (player VARCHAR, college VARCHAR) ### Question: Which player is from the College of Alabama? ### Answer: SELECT player FROM table_name_97 WHERE college = "alabama" |
Which player is from Ohio State College? | CREATE TABLE table_name_55 (player VARCHAR, college VARCHAR) | SELECT player FROM table_name_55 WHERE college = "ohio state" | ### Context: CREATE TABLE table_name_55 (player VARCHAR, college VARCHAR) ### Question: Which player is from Ohio State College? ### Answer: SELECT player FROM table_name_55 WHERE college = "ohio state" |
The New York Jets picked someone from what college? | CREATE TABLE table_name_43 (college VARCHAR, team VARCHAR) | SELECT college FROM table_name_43 WHERE team = "new york jets" | ### Context: CREATE TABLE table_name_43 (college VARCHAR, team VARCHAR) ### Question: The New York Jets picked someone from what college? ### Answer: SELECT college FROM table_name_43 WHERE team = "new york jets" |
What is the highest pick for the position of defensive end? | CREATE TABLE table_name_15 (pick INTEGER, position VARCHAR) | SELECT MAX(pick) FROM table_name_15 WHERE position = "defensive end" | ### Context: CREATE TABLE table_name_15 (pick INTEGER, position VARCHAR) ### Question: What is the highest pick for the position of defensive end? ### Answer: SELECT MAX(pick) FROM table_name_15 WHERE position = "defensive end" |
What is the fewest number of silver medals won by Canada with fewer than 3 total medals? | CREATE TABLE table_name_87 (silver INTEGER, nation VARCHAR, total VARCHAR) | SELECT MIN(silver) FROM table_name_87 WHERE nation = "canada" AND total < 3 | ### Context: CREATE TABLE table_name_87 (silver INTEGER, nation VARCHAR, total VARCHAR) ### Question: What is the fewest number of silver medals won by Canada with fewer than 3 total medals? ### Answer: SELECT MIN(silver) FROM table_name_87 WHERE nation = "canada" AND total < 3 |
What is the sum of wins for Port Fairy with under 1510 against? | CREATE TABLE table_name_2 (wins INTEGER, club VARCHAR, against VARCHAR) | SELECT SUM(wins) FROM table_name_2 WHERE club = "port fairy" AND against < 1510 | ### Context: CREATE TABLE table_name_2 (wins INTEGER, club VARCHAR, against VARCHAR) ### Question: What is the sum of wins for Port Fairy with under 1510 against? ### Answer: SELECT SUM(wins) FROM table_name_2 WHERE club = "port fairy" AND against < 1510 |
What is the total number of Against values for clubs with more than 2 wins, 5 losses, and 0 draws? | CREATE TABLE table_name_4 (against VARCHAR, draws VARCHAR, wins VARCHAR, losses VARCHAR) | SELECT COUNT(against) FROM table_name_4 WHERE wins > 2 AND losses = 5 AND draws < 0 | ### Context: CREATE TABLE table_name_4 (against VARCHAR, draws VARCHAR, wins VARCHAR, losses VARCHAR) ### Question: What is the total number of Against values for clubs with more than 2 wins, 5 losses, and 0 draws? ### Answer: SELECT COUNT(against) FROM table_name_4 WHERE wins > 2 AND losses = 5 AND draws < 0 |
What is the average number of draws for losses over 8 and Against values under 1344? | CREATE TABLE table_name_9 (draws INTEGER, losses VARCHAR, against VARCHAR) | SELECT AVG(draws) FROM table_name_9 WHERE losses > 8 AND against < 1344 | ### Context: CREATE TABLE table_name_9 (draws INTEGER, losses VARCHAR, against VARCHAR) ### Question: What is the average number of draws for losses over 8 and Against values under 1344? ### Answer: SELECT AVG(draws) FROM table_name_9 WHERE losses > 8 AND against < 1344 |
What is the sum of losses for Against values over 1510? | CREATE TABLE table_name_70 (losses INTEGER, against INTEGER) | SELECT SUM(losses) FROM table_name_70 WHERE against > 1510 | ### Context: CREATE TABLE table_name_70 (losses INTEGER, against INTEGER) ### Question: What is the sum of losses for Against values over 1510? ### Answer: SELECT SUM(losses) FROM table_name_70 WHERE against > 1510 |
Which Genre has a Game of tony hawk's pro skater 2? | CREATE TABLE table_name_12 (genre VARCHAR, game VARCHAR) | SELECT genre FROM table_name_12 WHERE game = "tony hawk's pro skater 2" | ### Context: CREATE TABLE table_name_12 (genre VARCHAR, game VARCHAR) ### Question: Which Genre has a Game of tony hawk's pro skater 2? ### Answer: SELECT genre FROM table_name_12 WHERE game = "tony hawk's pro skater 2" |
Which Genre has a Game of donkey kong country? | CREATE TABLE table_name_81 (genre VARCHAR, game VARCHAR) | SELECT genre FROM table_name_81 WHERE game = "donkey kong country" | ### Context: CREATE TABLE table_name_81 (genre VARCHAR, game VARCHAR) ### Question: Which Genre has a Game of donkey kong country? ### Answer: SELECT genre FROM table_name_81 WHERE game = "donkey kong country" |
Which Genre has a Year larger than 1999, and a Game of tony hawk's pro skater 2? | CREATE TABLE table_name_90 (genre VARCHAR, year VARCHAR, game VARCHAR) | SELECT genre FROM table_name_90 WHERE year > 1999 AND game = "tony hawk's pro skater 2" | ### Context: CREATE TABLE table_name_90 (genre VARCHAR, year VARCHAR, game VARCHAR) ### Question: Which Genre has a Year larger than 1999, and a Game of tony hawk's pro skater 2? ### Answer: SELECT genre FROM table_name_90 WHERE year > 1999 AND game = "tony hawk's pro skater 2" |
How much Time has a Reaction of 0.155, and an Athlete of kristof beyens, and a Rank smaller than 3? | CREATE TABLE table_name_15 (time VARCHAR, rank VARCHAR, react VARCHAR, athlete VARCHAR) | SELECT COUNT(time) FROM table_name_15 WHERE react = 0.155 AND athlete = "kristof beyens" AND rank < 3 | ### Context: CREATE TABLE table_name_15 (time VARCHAR, rank VARCHAR, react VARCHAR, athlete VARCHAR) ### Question: How much Time has a Reaction of 0.155, and an Athlete of kristof beyens, and a Rank smaller than 3? ### Answer: SELECT COUNT(time) FROM table_name_15 WHERE react = 0.155 AND athlete = "kristof beyens" AND ... |
Which Lane has a Time larger than 20.5, and a Nationality of trinidad and tobago? | CREATE TABLE table_name_83 (lane INTEGER, time VARCHAR, nationality VARCHAR) | SELECT AVG(lane) FROM table_name_83 WHERE time > 20.5 AND nationality = "trinidad and tobago" | ### Context: CREATE TABLE table_name_83 (lane INTEGER, time VARCHAR, nationality VARCHAR) ### Question: Which Lane has a Time larger than 20.5, and a Nationality of trinidad and tobago? ### Answer: SELECT AVG(lane) FROM table_name_83 WHERE time > 20.5 AND nationality = "trinidad and tobago" |
What is the Location of the Moulin Bertrand Mill? | CREATE TABLE table_name_23 (location VARCHAR, name_of_mill VARCHAR) | SELECT location FROM table_name_23 WHERE name_of_mill = "moulin bertrand" | ### Context: CREATE TABLE table_name_23 (location VARCHAR, name_of_mill VARCHAR) ### Question: What is the Location of the Moulin Bertrand Mill? ### Answer: SELECT location FROM table_name_23 WHERE name_of_mill = "moulin bertrand" |
What is year Built of the Moulin de Momalle Mill? | CREATE TABLE table_name_16 (built INTEGER, name_of_mill VARCHAR) | SELECT MAX(built) FROM table_name_16 WHERE name_of_mill = "moulin de momalle" | ### Context: CREATE TABLE table_name_16 (built INTEGER, name_of_mill VARCHAR) ### Question: What is year Built of the Moulin de Momalle Mill? ### Answer: SELECT MAX(built) FROM table_name_16 WHERE name_of_mill = "moulin de momalle" |
What is the Name of the Grondzeiler Mill? | CREATE TABLE table_name_24 (name_of_mill VARCHAR, type VARCHAR) | SELECT name_of_mill FROM table_name_24 WHERE type = "grondzeiler" | ### Context: CREATE TABLE table_name_24 (name_of_mill VARCHAR, type VARCHAR) ### Question: What is the Name of the Grondzeiler Mill? ### Answer: SELECT name_of_mill FROM table_name_24 WHERE type = "grondzeiler" |
What's the total population when there are 5.7% Asian American and fewer than 126,965 Asian American Population? | CREATE TABLE table_name_88 (total_population__2010_ INTEGER, _percentage_asian_american VARCHAR, asian_american_population__2010_ VARCHAR) | SELECT MIN(total_population__2010_) FROM table_name_88 WHERE _percentage_asian_american = 5.7 AND asian_american_population__2010_ < 126 OFFSET 965 | ### Context: CREATE TABLE table_name_88 (total_population__2010_ INTEGER, _percentage_asian_american VARCHAR, asian_american_population__2010_ VARCHAR) ### Question: What's the total population when there are 5.7% Asian American and fewer than 126,965 Asian American Population? ### Answer: SELECT MIN(total_population__... |
Who was their opponent in game 4? | CREATE TABLE table_name_77 (opponent VARCHAR, game VARCHAR) | SELECT opponent FROM table_name_77 WHERE game = "4" | ### Context: CREATE TABLE table_name_77 (opponent VARCHAR, game VARCHAR) ### Question: Who was their opponent in game 4? ### Answer: SELECT opponent FROM table_name_77 WHERE game = "4" |
On what date was game 3? | CREATE TABLE table_name_84 (date VARCHAR, game VARCHAR) | SELECT date FROM table_name_84 WHERE game = "3" | ### Context: CREATE TABLE table_name_84 (date VARCHAR, game VARCHAR) ### Question: On what date was game 3? ### Answer: SELECT date FROM table_name_84 WHERE game = "3" |
What is the railway number of t 4 ii class? | CREATE TABLE table_name_68 (railway_number_s_ VARCHAR, class VARCHAR) | SELECT railway_number_s_ FROM table_name_68 WHERE class = "t 4 ii" | ### Context: CREATE TABLE table_name_68 (railway_number_s_ VARCHAR, class VARCHAR) ### Question: What is the railway number of t 4 ii class? ### Answer: SELECT railway_number_s_ FROM table_name_68 WHERE class = "t 4 ii" |
What year was the b n2t axle arrangement, which has a quantity of 31, manufactured? | CREATE TABLE table_name_74 (year_s__of_manufacture VARCHAR, quantity VARCHAR, axle_arrangement___uic__ VARCHAR) | SELECT year_s__of_manufacture FROM table_name_74 WHERE quantity = 31 AND axle_arrangement___uic__ = "b n2t" | ### Context: CREATE TABLE table_name_74 (year_s__of_manufacture VARCHAR, quantity VARCHAR, axle_arrangement___uic__ VARCHAR) ### Question: What year was the b n2t axle arrangement, which has a quantity of 31, manufactured? ### Answer: SELECT year_s__of_manufacture FROM table_name_74 WHERE quantity = 31 AND axle_arrange... |
What is the time in a heat smaller than 5, in Lane 5, for Vietnam? | CREATE TABLE table_name_88 (time VARCHAR, nationality VARCHAR, heat VARCHAR, lane VARCHAR) | SELECT time FROM table_name_88 WHERE heat < 5 AND lane = 5 AND nationality = "vietnam" | ### Context: CREATE TABLE table_name_88 (time VARCHAR, nationality VARCHAR, heat VARCHAR, lane VARCHAR) ### Question: What is the time in a heat smaller than 5, in Lane 5, for Vietnam? ### Answer: SELECT time FROM table_name_88 WHERE heat < 5 AND lane = 5 AND nationality = "vietnam" |
What is the smallest lane number of Xue Ruipeng? | CREATE TABLE table_name_53 (lane INTEGER, name VARCHAR) | SELECT MIN(lane) FROM table_name_53 WHERE name = "xue ruipeng" | ### Context: CREATE TABLE table_name_53 (lane INTEGER, name VARCHAR) ### Question: What is the smallest lane number of Xue Ruipeng? ### Answer: SELECT MIN(lane) FROM table_name_53 WHERE name = "xue ruipeng" |
What is the Rank of the Rowers with FA as Notes? | CREATE TABLE table_name_29 (rank INTEGER, notes VARCHAR) | SELECT AVG(rank) FROM table_name_29 WHERE notes = "fa" | ### Context: CREATE TABLE table_name_29 (rank INTEGER, notes VARCHAR) ### Question: What is the Rank of the Rowers with FA as Notes? ### Answer: SELECT AVG(rank) FROM table_name_29 WHERE notes = "fa" |
Which away team that had a tie of 7? | CREATE TABLE table_name_27 (away_team VARCHAR, tie_no VARCHAR) | SELECT away_team FROM table_name_27 WHERE tie_no = "7" | ### Context: CREATE TABLE table_name_27 (away_team VARCHAR, tie_no VARCHAR) ### Question: Which away team that had a tie of 7? ### Answer: SELECT away_team FROM table_name_27 WHERE tie_no = "7" |
What was the attendance for the away team Solihull Moors? | CREATE TABLE table_name_10 (attendance VARCHAR, away_team VARCHAR) | SELECT attendance FROM table_name_10 WHERE away_team = "solihull moors" | ### Context: CREATE TABLE table_name_10 (attendance VARCHAR, away_team VARCHAR) ### Question: What was the attendance for the away team Solihull Moors? ### Answer: SELECT attendance FROM table_name_10 WHERE away_team = "solihull moors" |
Which home team had the away team Southport? | CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_9 WHERE away_team = "southport" | ### Context: CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR) ### Question: Which home team had the away team Southport? ### Answer: SELECT home_team FROM table_name_9 WHERE away_team = "southport" |
What home team had 2 ties? | CREATE TABLE table_name_86 (home_team VARCHAR, tie_no VARCHAR) | SELECT home_team FROM table_name_86 WHERE tie_no = "2" | ### Context: CREATE TABLE table_name_86 (home_team VARCHAR, tie_no VARCHAR) ### Question: What home team had 2 ties? ### Answer: SELECT home_team FROM table_name_86 WHERE tie_no = "2" |
What was the score when there were 7 ties? | CREATE TABLE table_name_36 (score VARCHAR, tie_no VARCHAR) | SELECT score FROM table_name_36 WHERE tie_no = "7" | ### Context: CREATE TABLE table_name_36 (score VARCHAR, tie_no VARCHAR) ### Question: What was the score when there were 7 ties? ### Answer: SELECT score FROM table_name_36 WHERE tie_no = "7" |
What is the total when the nation is brazil (bra) and bronze is more than 2? | CREATE TABLE table_name_38 (total INTEGER, nation VARCHAR, bronze VARCHAR) | SELECT SUM(total) FROM table_name_38 WHERE nation = "brazil (bra)" AND bronze > 2 | ### Context: CREATE TABLE table_name_38 (total INTEGER, nation VARCHAR, bronze VARCHAR) ### Question: What is the total when the nation is brazil (bra) and bronze is more than 2? ### Answer: SELECT SUM(total) FROM table_name_38 WHERE nation = "brazil (bra)" AND bronze > 2 |
what is the least total when the nation is canada (can) and bronze is less than 0? | CREATE TABLE table_name_78 (total INTEGER, nation VARCHAR, bronze VARCHAR) | SELECT MIN(total) FROM table_name_78 WHERE nation = "canada (can)" AND bronze < 0 | ### Context: CREATE TABLE table_name_78 (total INTEGER, nation VARCHAR, bronze VARCHAR) ### Question: what is the least total when the nation is canada (can) and bronze is less than 0? ### Answer: SELECT MIN(total) FROM table_name_78 WHERE nation = "canada (can)" AND bronze < 0 |
what is bronze when the rank is 3 and the total is more than 2? | CREATE TABLE table_name_24 (bronze INTEGER, rank VARCHAR, total VARCHAR) | SELECT SUM(bronze) FROM table_name_24 WHERE rank = "3" AND total > 2 | ### Context: CREATE TABLE table_name_24 (bronze INTEGER, rank VARCHAR, total VARCHAR) ### Question: what is bronze when the rank is 3 and the total is more than 2? ### Answer: SELECT SUM(bronze) FROM table_name_24 WHERE rank = "3" AND total > 2 |
What is the most bronze can be when silver is larger than 2, and the nation is germany, and gold is more than 8? | CREATE TABLE table_name_81 (bronze INTEGER, gold VARCHAR, silver VARCHAR, nation VARCHAR) | SELECT MAX(bronze) FROM table_name_81 WHERE silver > 2 AND nation = "germany" AND gold > 8 | ### Context: CREATE TABLE table_name_81 (bronze INTEGER, gold VARCHAR, silver VARCHAR, nation VARCHAR) ### Question: What is the most bronze can be when silver is larger than 2, and the nation is germany, and gold is more than 8? ### Answer: SELECT MAX(bronze) FROM table_name_81 WHERE silver > 2 AND nation = "germany" ... |
What is the total number for a total when the nation is netherlands and silver is larger than 0? | CREATE TABLE table_name_12 (total VARCHAR, nation VARCHAR, silver VARCHAR) | SELECT COUNT(total) FROM table_name_12 WHERE nation = "netherlands" AND silver > 0 | ### Context: CREATE TABLE table_name_12 (total VARCHAR, nation VARCHAR, silver VARCHAR) ### Question: What is the total number for a total when the nation is netherlands and silver is larger than 0? ### Answer: SELECT COUNT(total) FROM table_name_12 WHERE nation = "netherlands" AND silver > 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.