question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Which Rec has an Average smaller than 32, and a Touchdown smaller than 3, and an Opponent of oregon state? | CREATE TABLE table_name_95 (rec INTEGER, opponent VARCHAR, average VARCHAR, s_touchdown VARCHAR) | SELECT SUM(rec) FROM table_name_95 WHERE average < 32 AND s_touchdown < 3 AND opponent = "oregon state" | ### Context: CREATE TABLE table_name_95 (rec INTEGER, opponent VARCHAR, average VARCHAR, s_touchdown VARCHAR) ### Question: Which Rec has an Average smaller than 32, and a Touchdown smaller than 3, and an Opponent of oregon state? ### Answer: SELECT SUM(rec) FROM table_name_95 WHERE average < 32 AND s_touchdown < 3 AND opponent = "oregon state" |
Which rec has Yards of 192, and a Touchdown smaller than 1? | CREATE TABLE table_name_52 (rec INTEGER, yards VARCHAR, s_touchdown VARCHAR) | SELECT AVG(rec) FROM table_name_52 WHERE yards = 192 AND s_touchdown < 1 | ### Context: CREATE TABLE table_name_52 (rec INTEGER, yards VARCHAR, s_touchdown VARCHAR) ### Question: Which rec has Yards of 192, and a Touchdown smaller than 1? ### Answer: SELECT AVG(rec) FROM table_name_52 WHERE yards = 192 AND s_touchdown < 1 |
Which Opponent has Yards smaller than 197, and an Average smaller than 32, and a Year of 1966? | CREATE TABLE table_name_95 (opponent VARCHAR, year VARCHAR, yards VARCHAR, average VARCHAR) | SELECT opponent FROM table_name_95 WHERE yards < 197 AND average < 32 AND year = 1966 | ### Context: CREATE TABLE table_name_95 (opponent VARCHAR, year VARCHAR, yards VARCHAR, average VARCHAR) ### Question: Which Opponent has Yards smaller than 197, and an Average smaller than 32, and a Year of 1966? ### Answer: SELECT opponent FROM table_name_95 WHERE yards < 197 AND average < 32 AND year = 1966 |
How many Touchdowns have a rec of 10, and an Opponent of oregon state, and an Average smaller than 19.7? | CREATE TABLE table_name_57 (s_touchdown VARCHAR, average VARCHAR, rec VARCHAR, opponent VARCHAR) | SELECT COUNT(s_touchdown) FROM table_name_57 WHERE rec = 10 AND opponent = "oregon state" AND average < 19.7 | ### Context: CREATE TABLE table_name_57 (s_touchdown VARCHAR, average VARCHAR, rec VARCHAR, opponent VARCHAR) ### Question: How many Touchdowns have a rec of 10, and an Opponent of oregon state, and an Average smaller than 19.7? ### Answer: SELECT COUNT(s_touchdown) FROM table_name_57 WHERE rec = 10 AND opponent = "oregon state" AND average < 19.7 |
Which Points have an Opponent of @ atlanta thrashers, and a Game smaller than 28? | CREATE TABLE table_name_2 (points INTEGER, opponent VARCHAR, game VARCHAR) | SELECT SUM(points) FROM table_name_2 WHERE opponent = "@ atlanta thrashers" AND game < 28 | ### Context: CREATE TABLE table_name_2 (points INTEGER, opponent VARCHAR, game VARCHAR) ### Question: Which Points have an Opponent of @ atlanta thrashers, and a Game smaller than 28? ### Answer: SELECT SUM(points) FROM table_name_2 WHERE opponent = "@ atlanta thrashers" AND game < 28 |
How many Points have a Game smaller than 37, and a Score of 2–3, and a December of 13? | CREATE TABLE table_name_98 (points VARCHAR, december VARCHAR, game VARCHAR, score VARCHAR) | SELECT COUNT(points) FROM table_name_98 WHERE game < 37 AND score = "2–3" AND december = 13 | ### Context: CREATE TABLE table_name_98 (points VARCHAR, december VARCHAR, game VARCHAR, score VARCHAR) ### Question: How many Points have a Game smaller than 37, and a Score of 2–3, and a December of 13? ### Answer: SELECT COUNT(points) FROM table_name_98 WHERE game < 37 AND score = "2–3" AND december = 13 |
Which Game is the highest one that has a Score of 3–2? | CREATE TABLE table_name_92 (game INTEGER, score VARCHAR) | SELECT MAX(game) FROM table_name_92 WHERE score = "3–2" | ### Context: CREATE TABLE table_name_92 (game INTEGER, score VARCHAR) ### Question: Which Game is the highest one that has a Score of 3–2? ### Answer: SELECT MAX(game) FROM table_name_92 WHERE score = "3–2" |
What spans were built in 1896? | CREATE TABLE table_name_73 (spans VARCHAR, built VARCHAR) | SELECT spans FROM table_name_73 WHERE built = "1896" | ### Context: CREATE TABLE table_name_73 (spans VARCHAR, built VARCHAR) ### Question: What spans were built in 1896? ### Answer: SELECT spans FROM table_name_73 WHERE built = "1896" |
Who has a length of 71 ft? | CREATE TABLE table_name_21 (name VARCHAR, length__ft_ VARCHAR) | SELECT name FROM table_name_21 WHERE length__ft_ = 71 | ### Context: CREATE TABLE table_name_21 (name VARCHAR, length__ft_ VARCHAR) ### Question: Who has a length of 71 ft? ### Answer: SELECT name FROM table_name_21 WHERE length__ft_ = 71 |
Where was the county of rockingham? | CREATE TABLE table_name_98 (location VARCHAR, county VARCHAR) | SELECT location FROM table_name_98 WHERE county = "rockingham" | ### Context: CREATE TABLE table_name_98 (location VARCHAR, county VARCHAR) ### Question: Where was the county of rockingham? ### Answer: SELECT location FROM table_name_98 WHERE county = "rockingham" |
What is the propulsion for the RB 04 earlier than 1962? | CREATE TABLE table_name_79 (propulsion VARCHAR, year VARCHAR, name VARCHAR) | SELECT propulsion FROM table_name_79 WHERE year < 1962 AND name = "rb 04" | ### Context: CREATE TABLE table_name_79 (propulsion VARCHAR, year VARCHAR, name VARCHAR) ### Question: What is the propulsion for the RB 04 earlier than 1962? ### Answer: SELECT propulsion FROM table_name_79 WHERE year < 1962 AND name = "rb 04" |
What is the name of the anti-ship missile that had a turbojet propulsion that was launched by a surface, sub after 1985? | CREATE TABLE table_name_96 (name VARCHAR, launched_by VARCHAR, propulsion VARCHAR, year VARCHAR) | SELECT name FROM table_name_96 WHERE propulsion = "turbojet" AND year > 1985 AND launched_by = "surface, sub" | ### Context: CREATE TABLE table_name_96 (name VARCHAR, launched_by VARCHAR, propulsion VARCHAR, year VARCHAR) ### Question: What is the name of the anti-ship missile that had a turbojet propulsion that was launched by a surface, sub after 1985? ### Answer: SELECT name FROM table_name_96 WHERE propulsion = "turbojet" AND year > 1985 AND launched_by = "surface, sub" |
What country had an anti-ship missile that had a solid rocket propulsion? | CREATE TABLE table_name_96 (country VARCHAR, propulsion VARCHAR) | SELECT country FROM table_name_96 WHERE propulsion = "solid rocket" | ### Context: CREATE TABLE table_name_96 (country VARCHAR, propulsion VARCHAR) ### Question: What country had an anti-ship missile that had a solid rocket propulsion? ### Answer: SELECT country FROM table_name_96 WHERE propulsion = "solid rocket" |
How many seats in 2001 with a quantity greater than 4? | CREATE TABLE table_name_17 (number_of_seats VARCHAR, year VARCHAR, quantity VARCHAR) | SELECT COUNT(number_of_seats) FROM table_name_17 WHERE year = "2001" AND quantity > 4 | ### Context: CREATE TABLE table_name_17 (number_of_seats VARCHAR, year VARCHAR, quantity VARCHAR) ### Question: How many seats in 2001 with a quantity greater than 4? ### Answer: SELECT COUNT(number_of_seats) FROM table_name_17 WHERE year = "2001" AND quantity > 4 |
What make and model of the diesel vehicle with a high floor type, bike capacity less than 3, and a quantity of 4? | CREATE TABLE table_name_67 (make_and_model VARCHAR, quantity VARCHAR, bicycle_capacity† VARCHAR, fuel_propulsion VARCHAR, floor_type VARCHAR) | SELECT make_and_model FROM table_name_67 WHERE fuel_propulsion = "diesel" AND floor_type = "high" AND bicycle_capacity† < 3 AND quantity = 4 | ### Context: CREATE TABLE table_name_67 (make_and_model VARCHAR, quantity VARCHAR, bicycle_capacity† VARCHAR, fuel_propulsion VARCHAR, floor_type VARCHAR) ### Question: What make and model of the diesel vehicle with a high floor type, bike capacity less than 3, and a quantity of 4? ### Answer: SELECT make_and_model FROM table_name_67 WHERE fuel_propulsion = "diesel" AND floor_type = "high" AND bicycle_capacity† < 3 AND quantity = 4 |
What score has nashville predators as the opponent? | CREATE TABLE table_name_91 (score VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_91 WHERE opponent = "nashville predators" | ### Context: CREATE TABLE table_name_91 (score VARCHAR, opponent VARCHAR) ### Question: What score has nashville predators as the opponent? ### Answer: SELECT score FROM table_name_91 WHERE opponent = "nashville predators" |
What are the average points that have december 27? | CREATE TABLE table_name_36 (points INTEGER, december VARCHAR) | SELECT AVG(points) FROM table_name_36 WHERE december = 27 | ### Context: CREATE TABLE table_name_36 (points INTEGER, december VARCHAR) ### Question: What are the average points that have december 27? ### Answer: SELECT AVG(points) FROM table_name_36 WHERE december = 27 |
What record has points greater than 39, with 38 as the game? | CREATE TABLE table_name_1 (record VARCHAR, points VARCHAR, game VARCHAR) | SELECT record FROM table_name_1 WHERE points > 39 AND game = 38 | ### Context: CREATE TABLE table_name_1 (record VARCHAR, points VARCHAR, game VARCHAR) ### Question: What record has points greater than 39, with 38 as the game? ### Answer: SELECT record FROM table_name_1 WHERE points > 39 AND game = 38 |
What is the Stuffit ability that has a gzip of yes, ISO/CD images of no and LHA/LZH of no? | CREATE TABLE table_name_75 (stuffit VARCHAR, lha_lzh VARCHAR, gzip VARCHAR, iso_cd_image VARCHAR) | SELECT stuffit FROM table_name_75 WHERE gzip = "yes" AND iso_cd_image = "no" AND lha_lzh = "no" | ### Context: CREATE TABLE table_name_75 (stuffit VARCHAR, lha_lzh VARCHAR, gzip VARCHAR, iso_cd_image VARCHAR) ### Question: What is the Stuffit ability that has a gzip of yes, ISO/CD images of no and LHA/LZH of no? ### Answer: SELECT stuffit FROM table_name_75 WHERE gzip = "yes" AND iso_cd_image = "no" AND lha_lzh = "no" |
What is the gzip value associated with a stuffit of no, bzip2 of no, and LHA.LZH of no? | CREATE TABLE table_name_90 (gzip VARCHAR, lha_lzh VARCHAR, stuffit VARCHAR, bzip2 VARCHAR) | SELECT gzip FROM table_name_90 WHERE stuffit = "no" AND bzip2 = "no" AND lha_lzh = "no" | ### Context: CREATE TABLE table_name_90 (gzip VARCHAR, lha_lzh VARCHAR, stuffit VARCHAR, bzip2 VARCHAR) ### Question: What is the gzip value associated with a stuffit of no, bzip2 of no, and LHA.LZH of no? ### Answer: SELECT gzip FROM table_name_90 WHERE stuffit = "no" AND bzip2 = "no" AND lha_lzh = "no" |
What is the StuffitX value that has a Stuffit of unknown, LHA/LZH of yes, and unknown ISO/CD image? | CREATE TABLE table_name_26 (stuffit VARCHAR, iso_cd_image VARCHAR, lha_lzh VARCHAR) | SELECT stuffit AS X FROM table_name_26 WHERE stuffit = "unknown" AND lha_lzh = "yes" AND iso_cd_image = "unknown" | ### Context: CREATE TABLE table_name_26 (stuffit VARCHAR, iso_cd_image VARCHAR, lha_lzh VARCHAR) ### Question: What is the StuffitX value that has a Stuffit of unknown, LHA/LZH of yes, and unknown ISO/CD image? ### Answer: SELECT stuffit AS X FROM table_name_26 WHERE stuffit = "unknown" AND lha_lzh = "yes" AND iso_cd_image = "unknown" |
What is the stuffit that has bzip and LHA/LZH of no? | CREATE TABLE table_name_99 (stuffit VARCHAR, bzip2 VARCHAR, lha_lzh VARCHAR) | SELECT stuffit FROM table_name_99 WHERE bzip2 = "no" AND lha_lzh = "no" | ### Context: CREATE TABLE table_name_99 (stuffit VARCHAR, bzip2 VARCHAR, lha_lzh VARCHAR) ### Question: What is the stuffit that has bzip and LHA/LZH of no? ### Answer: SELECT stuffit FROM table_name_99 WHERE bzip2 = "no" AND lha_lzh = "no" |
Which round was Robert Deciantis taken in? | CREATE TABLE table_name_43 (round VARCHAR, player VARCHAR) | SELECT round FROM table_name_43 WHERE player = "robert deciantis" | ### Context: CREATE TABLE table_name_43 (round VARCHAR, player VARCHAR) ### Question: Which round was Robert Deciantis taken in? ### Answer: SELECT round FROM table_name_43 WHERE player = "robert deciantis" |
Which round was Brian Elder taken in? | CREATE TABLE table_name_15 (round INTEGER, player VARCHAR) | SELECT MIN(round) FROM table_name_15 WHERE player = "brian elder" | ### Context: CREATE TABLE table_name_15 (round INTEGER, player VARCHAR) ### Question: Which round was Brian Elder taken in? ### Answer: SELECT MIN(round) FROM table_name_15 WHERE player = "brian elder" |
what is the date of the tournament in michalovce | CREATE TABLE table_name_74 (date VARCHAR, tournament VARCHAR) | SELECT date FROM table_name_74 WHERE tournament = "michalovce" | ### Context: CREATE TABLE table_name_74 (date VARCHAR, tournament VARCHAR) ### Question: what is the date of the tournament in michalovce ### Answer: SELECT date FROM table_name_74 WHERE tournament = "michalovce" |
What was the winning score of the Valero Texas Open? | CREATE TABLE table_name_99 (winning_score VARCHAR, tournament VARCHAR) | SELECT winning_score FROM table_name_99 WHERE tournament = "valero texas open" | ### Context: CREATE TABLE table_name_99 (winning_score VARCHAR, tournament VARCHAR) ### Question: What was the winning score of the Valero Texas Open? ### Answer: SELECT winning_score FROM table_name_99 WHERE tournament = "valero texas open" |
When was the winning score –12 (69-66-72-65=272)? | CREATE TABLE table_name_72 (date VARCHAR, winning_score VARCHAR) | SELECT date FROM table_name_72 WHERE winning_score = –12(69 - 66 - 72 - 65 = 272) | ### Context: CREATE TABLE table_name_72 (date VARCHAR, winning_score VARCHAR) ### Question: When was the winning score –12 (69-66-72-65=272)? ### Answer: SELECT date FROM table_name_72 WHERE winning_score = –12(69 - 66 - 72 - 65 = 272) |
Who was the runner-up when the winning score was –28 (66-67-68-64-67=332)? | CREATE TABLE table_name_81 (runner_s__up VARCHAR, winning_score VARCHAR) | SELECT runner_s__up FROM table_name_81 WHERE winning_score = –28(66 - 67 - 68 - 64 - 67 = 332) | ### Context: CREATE TABLE table_name_81 (runner_s__up VARCHAR, winning_score VARCHAR) ### Question: Who was the runner-up when the winning score was –28 (66-67-68-64-67=332)? ### Answer: SELECT runner_s__up FROM table_name_81 WHERE winning_score = –28(66 - 67 - 68 - 64 - 67 = 332) |
Which party had a Retired Democratic hold? | CREATE TABLE table_name_97 (party VARCHAR, result VARCHAR) | SELECT party FROM table_name_97 WHERE result = "retired democratic hold" | ### Context: CREATE TABLE table_name_97 (party VARCHAR, result VARCHAR) ### Question: Which party had a Retired Democratic hold? ### Answer: SELECT party FROM table_name_97 WHERE result = "retired democratic hold" |
What's the average year Charles N. Felton was re-elected? | CREATE TABLE table_name_92 (first_elected INTEGER, result VARCHAR, incumbent VARCHAR) | SELECT AVG(first_elected) FROM table_name_92 WHERE result = "re-elected" AND incumbent = "charles n. felton" | ### Context: CREATE TABLE table_name_92 (first_elected INTEGER, result VARCHAR, incumbent VARCHAR) ### Question: What's the average year Charles N. Felton was re-elected? ### Answer: SELECT AVG(first_elected) FROM table_name_92 WHERE result = "re-elected" AND incumbent = "charles n. felton" |
What year was Barclay Henley first elected? | CREATE TABLE table_name_77 (first_elected VARCHAR, incumbent VARCHAR) | SELECT COUNT(first_elected) FROM table_name_77 WHERE incumbent = "barclay henley" | ### Context: CREATE TABLE table_name_77 (first_elected VARCHAR, incumbent VARCHAR) ### Question: What year was Barclay Henley first elected? ### Answer: SELECT COUNT(first_elected) FROM table_name_77 WHERE incumbent = "barclay henley" |
what is the sponsor of motorola | CREATE TABLE table_name_12 (team VARCHAR, sponsor VARCHAR) | SELECT team FROM table_name_12 WHERE sponsor = "motorola" | ### Context: CREATE TABLE table_name_12 (team VARCHAR, sponsor VARCHAR) ### Question: what is the sponsor of motorola ### Answer: SELECT team FROM table_name_12 WHERE sponsor = "motorola" |
Which Opponent has the Event of Sengoku 1? | CREATE TABLE table_name_94 (opponent VARCHAR, event VARCHAR) | SELECT opponent FROM table_name_94 WHERE event = "sengoku 1" | ### Context: CREATE TABLE table_name_94 (opponent VARCHAR, event VARCHAR) ### Question: Which Opponent has the Event of Sengoku 1? ### Answer: SELECT opponent FROM table_name_94 WHERE event = "sengoku 1" |
What Record has an Event of Pride Shockwave 2004? | CREATE TABLE table_name_22 (record VARCHAR, event VARCHAR) | SELECT record FROM table_name_22 WHERE event = "pride shockwave 2004" | ### Context: CREATE TABLE table_name_22 (record VARCHAR, event VARCHAR) ### Question: What Record has an Event of Pride Shockwave 2004? ### Answer: SELECT record FROM table_name_22 WHERE event = "pride shockwave 2004" |
What's the average pole position for the driver that has a percentage of 44.81%? | CREATE TABLE table_name_33 (pole_positions INTEGER, percentage VARCHAR) | SELECT AVG(pole_positions) FROM table_name_33 WHERE percentage = "44.81%" | ### Context: CREATE TABLE table_name_33 (pole_positions INTEGER, percentage VARCHAR) ### Question: What's the average pole position for the driver that has a percentage of 44.81%? ### Answer: SELECT AVG(pole_positions) FROM table_name_33 WHERE percentage = "44.81%" |
What's the average front row starts for drivers with less than 68 pole positions and entries lower than 52? | CREATE TABLE table_name_85 (front_row_starts INTEGER, pole_positions VARCHAR, entries VARCHAR) | SELECT AVG(front_row_starts) FROM table_name_85 WHERE pole_positions < 68 AND entries < 52 | ### Context: CREATE TABLE table_name_85 (front_row_starts INTEGER, pole_positions VARCHAR, entries VARCHAR) ### Question: What's the average front row starts for drivers with less than 68 pole positions and entries lower than 52? ### Answer: SELECT AVG(front_row_starts) FROM table_name_85 WHERE pole_positions < 68 AND entries < 52 |
Attendance of 60,671 had what average week? | CREATE TABLE table_name_9 (week INTEGER, attendance VARCHAR) | SELECT AVG(week) FROM table_name_9 WHERE attendance = 60 OFFSET 671 | ### Context: CREATE TABLE table_name_9 (week INTEGER, attendance VARCHAR) ### Question: Attendance of 60,671 had what average week? ### Answer: SELECT AVG(week) FROM table_name_9 WHERE attendance = 60 OFFSET 671 |
Week of 7 had what average attendance? | CREATE TABLE table_name_57 (attendance INTEGER, week VARCHAR) | SELECT AVG(attendance) FROM table_name_57 WHERE week = 7 | ### Context: CREATE TABLE table_name_57 (attendance INTEGER, week VARCHAR) ### Question: Week of 7 had what average attendance? ### Answer: SELECT AVG(attendance) FROM table_name_57 WHERE week = 7 |
How many legs were lost for Trina Gulliver with more than 3 played? | CREATE TABLE table_name_11 (legs_lost VARCHAR, player VARCHAR, played VARCHAR) | SELECT COUNT(legs_lost) FROM table_name_11 WHERE player = "trina gulliver" AND played > 3 | ### Context: CREATE TABLE table_name_11 (legs_lost VARCHAR, player VARCHAR, played VARCHAR) ### Question: How many legs were lost for Trina Gulliver with more than 3 played? ### Answer: SELECT COUNT(legs_lost) FROM table_name_11 WHERE player = "trina gulliver" AND played > 3 |
What is the most sets won with less than 1 legs won? | CREATE TABLE table_name_25 (sets_won INTEGER, legs_won INTEGER) | SELECT MAX(sets_won) FROM table_name_25 WHERE legs_won < 1 | ### Context: CREATE TABLE table_name_25 (sets_won INTEGER, legs_won INTEGER) ### Question: What is the most sets won with less than 1 legs won? ### Answer: SELECT MAX(sets_won) FROM table_name_25 WHERE legs_won < 1 |
Yards of 45, and a Date of november 8, 1971 is what kicker? | CREATE TABLE table_name_92 (kicker VARCHAR, yards VARCHAR, date VARCHAR) | SELECT kicker FROM table_name_92 WHERE yards = 45 AND date = "november 8, 1971" | ### Context: CREATE TABLE table_name_92 (kicker VARCHAR, yards VARCHAR, date VARCHAR) ### Question: Yards of 45, and a Date of november 8, 1971 is what kicker? ### Answer: SELECT kicker FROM table_name_92 WHERE yards = 45 AND date = "november 8, 1971" |
Game time of 2nd quarter (0:00), and a Date of november 8, 1971 has how many average yards? | CREATE TABLE table_name_2 (yards INTEGER, game_time VARCHAR, date VARCHAR) | SELECT AVG(yards) FROM table_name_2 WHERE game_time = "2nd quarter (0:00)" AND date = "november 8, 1971" | ### Context: CREATE TABLE table_name_2 (yards INTEGER, game_time VARCHAR, date VARCHAR) ### Question: Game time of 2nd quarter (0:00), and a Date of november 8, 1971 has how many average yards? ### Answer: SELECT AVG(yards) FROM table_name_2 WHERE game_time = "2nd quarter (0:00)" AND date = "november 8, 1971" |
Opponent of new york giants, and a Yards smaller than 68 is what kicker? | CREATE TABLE table_name_36 (kicker VARCHAR, opponent VARCHAR, yards VARCHAR) | SELECT kicker FROM table_name_36 WHERE opponent = "new york giants" AND yards < 68 | ### Context: CREATE TABLE table_name_36 (kicker VARCHAR, opponent VARCHAR, yards VARCHAR) ### Question: Opponent of new york giants, and a Yards smaller than 68 is what kicker? ### Answer: SELECT kicker FROM table_name_36 WHERE opponent = "new york giants" AND yards < 68 |
Yards larger than 52, and a Opponent of san francisco 49ers is what kicker? | CREATE TABLE table_name_5 (kicker VARCHAR, yards VARCHAR, opponent VARCHAR) | SELECT kicker FROM table_name_5 WHERE yards > 52 AND opponent = "san francisco 49ers" | ### Context: CREATE TABLE table_name_5 (kicker VARCHAR, yards VARCHAR, opponent VARCHAR) ### Question: Yards larger than 52, and a Opponent of san francisco 49ers is what kicker? ### Answer: SELECT kicker FROM table_name_5 WHERE yards > 52 AND opponent = "san francisco 49ers" |
Result of missed*, and a Game time of 2nd quarter (0:00), and a Kicker of mason crosby involves what date? | CREATE TABLE table_name_3 (date VARCHAR, kicker VARCHAR, result VARCHAR, game_time VARCHAR) | SELECT date FROM table_name_3 WHERE result = "missed*" AND game_time = "2nd quarter (0:00)" AND kicker = "mason crosby" | ### Context: CREATE TABLE table_name_3 (date VARCHAR, kicker VARCHAR, result VARCHAR, game_time VARCHAR) ### Question: Result of missed*, and a Game time of 2nd quarter (0:00), and a Kicker of mason crosby involves what date? ### Answer: SELECT date FROM table_name_3 WHERE result = "missed*" AND game_time = "2nd quarter (0:00)" AND kicker = "mason crosby" |
Opponent of houston texans had what result? | CREATE TABLE table_name_2 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_2 WHERE opponent = "houston texans" | ### Context: CREATE TABLE table_name_2 (result VARCHAR, opponent VARCHAR) ### Question: Opponent of houston texans had what result? ### Answer: SELECT result FROM table_name_2 WHERE opponent = "houston texans" |
Which Nationality of the person has a Position on left wing? | CREATE TABLE table_name_30 (nationality VARCHAR, position VARCHAR) | SELECT nationality FROM table_name_30 WHERE position = "left wing" | ### Context: CREATE TABLE table_name_30 (nationality VARCHAR, position VARCHAR) ### Question: Which Nationality of the person has a Position on left wing? ### Answer: SELECT nationality FROM table_name_30 WHERE position = "left wing" |
Which College/Junior/Club Team (League) are from sweden? | CREATE TABLE table_name_92 (college_junior_club_team__league_ VARCHAR, nationality VARCHAR) | SELECT college_junior_club_team__league_ FROM table_name_92 WHERE nationality = "sweden" | ### Context: CREATE TABLE table_name_92 (college_junior_club_team__league_ VARCHAR, nationality VARCHAR) ### Question: Which College/Junior/Club Team (League) are from sweden? ### Answer: SELECT college_junior_club_team__league_ FROM table_name_92 WHERE nationality = "sweden" |
WHich Position is from russia? | CREATE TABLE table_name_39 (position VARCHAR, nationality VARCHAR) | SELECT position FROM table_name_39 WHERE nationality = "russia" | ### Context: CREATE TABLE table_name_39 (position VARCHAR, nationality VARCHAR) ### Question: WHich Position is from russia? ### Answer: SELECT position FROM table_name_39 WHERE nationality = "russia" |
Which venue is with Ukraine? | CREATE TABLE table_name_12 (venue VARCHAR, nationality VARCHAR) | SELECT venue FROM table_name_12 WHERE nationality = "ukraine" | ### Context: CREATE TABLE table_name_12 (venue VARCHAR, nationality VARCHAR) ### Question: Which venue is with Ukraine? ### Answer: SELECT venue FROM table_name_12 WHERE nationality = "ukraine" |
Which venue had a nationality of Belgium? | CREATE TABLE table_name_44 (venue VARCHAR, nationality VARCHAR) | SELECT venue FROM table_name_44 WHERE nationality = "belgium" | ### Context: CREATE TABLE table_name_44 (venue VARCHAR, nationality VARCHAR) ### Question: Which venue had a nationality of Belgium? ### Answer: SELECT venue FROM table_name_44 WHERE nationality = "belgium" |
Which Best Actor has a Best Film of mystery? | CREATE TABLE table_name_93 (best_actor VARCHAR, best_film VARCHAR) | SELECT best_actor FROM table_name_93 WHERE best_film = "mystery" | ### Context: CREATE TABLE table_name_93 (best_actor VARCHAR, best_film VARCHAR) ### Question: Which Best Actor has a Best Film of mystery? ### Answer: SELECT best_actor FROM table_name_93 WHERE best_film = "mystery" |
Which Year has a Best Film of mystery? | CREATE TABLE table_name_80 (year VARCHAR, best_film VARCHAR) | SELECT year FROM table_name_80 WHERE best_film = "mystery" | ### Context: CREATE TABLE table_name_80 (year VARCHAR, best_film VARCHAR) ### Question: Which Year has a Best Film of mystery? ### Answer: SELECT year FROM table_name_80 WHERE best_film = "mystery" |
Which Best Actress has a Year of 2012 6th? | CREATE TABLE table_name_12 (best_actress VARCHAR, year VARCHAR) | SELECT best_actress FROM table_name_12 WHERE year = "2012 6th" | ### Context: CREATE TABLE table_name_12 (best_actress VARCHAR, year VARCHAR) ### Question: Which Best Actress has a Year of 2012 6th? ### Answer: SELECT best_actress FROM table_name_12 WHERE year = "2012 6th" |
Which Best Actor has a Best Director of takeshi kitano for outrage beyond? | CREATE TABLE table_name_44 (best_actor VARCHAR, best_director VARCHAR) | SELECT best_actor FROM table_name_44 WHERE best_director = "takeshi kitano for outrage beyond" | ### Context: CREATE TABLE table_name_44 (best_actor VARCHAR, best_director VARCHAR) ### Question: Which Best Actor has a Best Director of takeshi kitano for outrage beyond? ### Answer: SELECT best_actor FROM table_name_44 WHERE best_director = "takeshi kitano for outrage beyond" |
Which Best Film has a Best Supporting Actress of shamaine buencamino for niño? | CREATE TABLE table_name_42 (best_film VARCHAR, best_supporting_actress VARCHAR) | SELECT best_film FROM table_name_42 WHERE best_supporting_actress = "shamaine buencamino for niño" | ### Context: CREATE TABLE table_name_42 (best_film VARCHAR, best_supporting_actress VARCHAR) ### Question: Which Best Film has a Best Supporting Actress of shamaine buencamino for niño? ### Answer: SELECT best_film FROM table_name_42 WHERE best_supporting_actress = "shamaine buencamino for niño" |
Score of 0–0, and a Date of 02-jan-64 had what result? | CREATE TABLE table_name_11 (result VARCHAR, score VARCHAR, date VARCHAR) | SELECT result FROM table_name_11 WHERE score = "0–0" AND date = "02-jan-64" | ### Context: CREATE TABLE table_name_11 (result VARCHAR, score VARCHAR, date VARCHAR) ### Question: Score of 0–0, and a Date of 02-jan-64 had what result? ### Answer: SELECT result FROM table_name_11 WHERE score = "0–0" AND date = "02-jan-64" |
Result of l, and a Competition of 1966 asian games, and a Score of 0–1 had what date? | CREATE TABLE table_name_44 (date VARCHAR, score VARCHAR, result VARCHAR, competition VARCHAR) | SELECT date FROM table_name_44 WHERE result = "l" AND competition = "1966 asian games" AND score = "0–1" | ### Context: CREATE TABLE table_name_44 (date VARCHAR, score VARCHAR, result VARCHAR, competition VARCHAR) ### Question: Result of l, and a Competition of 1966 asian games, and a Score of 0–1 had what date? ### Answer: SELECT date FROM table_name_44 WHERE result = "l" AND competition = "1966 asian games" AND score = "0–1" |
Competition of friendly, and a Date of 03-jun-62 had what score? | CREATE TABLE table_name_72 (score VARCHAR, competition VARCHAR, date VARCHAR) | SELECT score FROM table_name_72 WHERE competition = "friendly" AND date = "03-jun-62" | ### Context: CREATE TABLE table_name_72 (score VARCHAR, competition VARCHAR, date VARCHAR) ### Question: Competition of friendly, and a Date of 03-jun-62 had what score? ### Answer: SELECT score FROM table_name_72 WHERE competition = "friendly" AND date = "03-jun-62" |
Result of w, and a Competition of 1968 asian cup happened on what date? | CREATE TABLE table_name_5 (date VARCHAR, result VARCHAR, competition VARCHAR) | SELECT date FROM table_name_5 WHERE result = "w" AND competition = "1968 asian cup" | ### Context: CREATE TABLE table_name_5 (date VARCHAR, result VARCHAR, competition VARCHAR) ### Question: Result of w, and a Competition of 1968 asian cup happened on what date? ### Answer: SELECT date FROM table_name_5 WHERE result = "w" AND competition = "1968 asian cup" |
Result of l, and a Date of 15-oct-64 had what score? | CREATE TABLE table_name_45 (score VARCHAR, result VARCHAR, date VARCHAR) | SELECT score FROM table_name_45 WHERE result = "l" AND date = "15-oct-64" | ### Context: CREATE TABLE table_name_45 (score VARCHAR, result VARCHAR, date VARCHAR) ### Question: Result of l, and a Date of 15-oct-64 had what score? ### Answer: SELECT score FROM table_name_45 WHERE result = "l" AND date = "15-oct-64" |
What incumbent was re-elected in the district in california 3? | CREATE TABLE table_name_85 (incumbent VARCHAR, result VARCHAR, district VARCHAR) | SELECT incumbent FROM table_name_85 WHERE result = "re-elected" AND district = "california 3" | ### Context: CREATE TABLE table_name_85 (incumbent VARCHAR, result VARCHAR, district VARCHAR) ### Question: What incumbent was re-elected in the district in california 3? ### Answer: SELECT incumbent FROM table_name_85 WHERE result = "re-elected" AND district = "california 3" |
What is the district of the incumbent Thomas Larkin Thompson? | CREATE TABLE table_name_37 (district VARCHAR, incumbent VARCHAR) | SELECT district FROM table_name_37 WHERE incumbent = "thomas larkin thompson" | ### Context: CREATE TABLE table_name_37 (district VARCHAR, incumbent VARCHAR) ### Question: What is the district of the incumbent Thomas Larkin Thompson? ### Answer: SELECT district FROM table_name_37 WHERE incumbent = "thomas larkin thompson" |
What incumbent has a re-elected result and first elected larger than 1884? | CREATE TABLE table_name_15 (incumbent VARCHAR, result VARCHAR, first_elected VARCHAR) | SELECT incumbent FROM table_name_15 WHERE result = "re-elected" AND first_elected > 1884 | ### Context: CREATE TABLE table_name_15 (incumbent VARCHAR, result VARCHAR, first_elected VARCHAR) ### Question: What incumbent has a re-elected result and first elected larger than 1884? ### Answer: SELECT incumbent FROM table_name_15 WHERE result = "re-elected" AND first_elected > 1884 |
Which Telugu తెలుగు has a Kannada ಕನ್ನಡ of chitra ಚಿತ್ತ? | CREATE TABLE table_name_87 (telugu_తెలుగు VARCHAR, kannada_ಕನ್ನಡ VARCHAR) | SELECT telugu_తెలుగు FROM table_name_87 WHERE kannada_ಕನ್ನಡ = "chitra ಚಿತ್ತ" | ### Context: CREATE TABLE table_name_87 (telugu_తెలుగు VARCHAR, kannada_ಕನ್ನಡ VARCHAR) ### Question: Which Telugu తెలుగు has a Kannada ಕನ್ನಡ of chitra ಚಿತ್ತ? ### Answer: SELECT telugu_తెలుగు FROM table_name_87 WHERE kannada_ಕನ್ನಡ = "chitra ಚಿತ್ತ" |
Which Telugu తెలుగు has a Tamil தமிழ் of pūrāṭam பூராடம்? | CREATE TABLE table_name_68 (telugu_తెలుగు VARCHAR, tamil_தமிழ் VARCHAR) | SELECT telugu_తెలుగు FROM table_name_68 WHERE tamil_தமிழ் = "pūrāṭam பூராடம்" | ### Context: CREATE TABLE table_name_68 (telugu_తెలుగు VARCHAR, tamil_தமிழ் VARCHAR) ### Question: Which Telugu తెలుగు has a Tamil தமிழ் of pūrāṭam பூராடம்? ### Answer: SELECT telugu_తెలుగు FROM table_name_68 WHERE tamil_தமிழ் = "pūrāṭam பூராடம்" |
Which Telugu తెలుగు has a Tamil தமிழ் of pūsam பூசம்? | CREATE TABLE table_name_52 (telugu_తెలుగు VARCHAR, tamil_தமிழ் VARCHAR) | SELECT telugu_తెలుగు FROM table_name_52 WHERE tamil_தமிழ் = "pūsam பூசம்" | ### Context: CREATE TABLE table_name_52 (telugu_తెలుగు VARCHAR, tamil_தமிழ் VARCHAR) ### Question: Which Telugu తెలుగు has a Tamil தமிழ் of pūsam பூசம்? ### Answer: SELECT telugu_తెలుగు FROM table_name_52 WHERE tamil_தமிழ் = "pūsam பூசம்" |
Which Mongolian has a Tamil தமிழ் of pūrāṭam பூராடம்? | CREATE TABLE table_name_78 (mongolian VARCHAR, tamil_தமிழ் VARCHAR) | SELECT mongolian FROM table_name_78 WHERE tamil_தமிழ் = "pūrāṭam பூராடம்" | ### Context: CREATE TABLE table_name_78 (mongolian VARCHAR, tamil_தமிழ் VARCHAR) ### Question: Which Mongolian has a Tamil தமிழ் of pūrāṭam பூராடம்? ### Answer: SELECT mongolian FROM table_name_78 WHERE tamil_தமிழ் = "pūrāṭam பூராடம்" |
What kind of Sanskrit संस्कृतम् has a Kannada ಕನ್ನಡ of uttara ಉತ್ತರಾ? | CREATE TABLE table_name_95 (sanskrit_संस्कृतम् VARCHAR, kannada_ಕನ್ನಡ VARCHAR) | SELECT sanskrit_संस्कृतम् FROM table_name_95 WHERE kannada_ಕನ್ನಡ = "uttara ಉತ್ತರಾ" | ### Context: CREATE TABLE table_name_95 (sanskrit_संस्कृतम् VARCHAR, kannada_ಕನ್ನಡ VARCHAR) ### Question: What kind of Sanskrit संस्कृतम् has a Kannada ಕನ್ನಡ of uttara ಉತ್ತರಾ? ### Answer: SELECT sanskrit_संस्कृतम् FROM table_name_95 WHERE kannada_ಕನ್ನಡ = "uttara ಉತ್ತರಾ" |
What kind of Sanskrit संस्कृतम् has a Tamil தமிழ் of rōkiṇi ரோகிணி? | CREATE TABLE table_name_23 (sanskrit_संस्कृतम् VARCHAR, tamil_தமிழ் VARCHAR) | SELECT sanskrit_संस्कृतम् FROM table_name_23 WHERE tamil_தமிழ் = "rōkiṇi ரோகிணி" | ### Context: CREATE TABLE table_name_23 (sanskrit_संस्कृतम् VARCHAR, tamil_தமிழ் VARCHAR) ### Question: What kind of Sanskrit संस्कृतम् has a Tamil தமிழ் of rōkiṇi ரோகிணி? ### Answer: SELECT sanskrit_संस्कृतम् FROM table_name_23 WHERE tamil_தமிழ் = "rōkiṇi ரோகிணி" |
What is the frequency for katherine? | CREATE TABLE table_name_99 (frequency VARCHAR, area_served VARCHAR) | SELECT frequency FROM table_name_99 WHERE area_served = "katherine" | ### Context: CREATE TABLE table_name_99 (frequency VARCHAR, area_served VARCHAR) ### Question: What is the frequency for katherine? ### Answer: SELECT frequency FROM table_name_99 WHERE area_served = "katherine" |
Which band has a current freq of 8tab (hpon)? | CREATE TABLE table_name_80 (band VARCHAR, freq_currently VARCHAR) | SELECT band FROM table_name_80 WHERE freq_currently = "8tab (hpon)" | ### Context: CREATE TABLE table_name_80 (band VARCHAR, freq_currently VARCHAR) ### Question: Which band has a current freq of 8tab (hpon)? ### Answer: SELECT band FROM table_name_80 WHERE freq_currently = "8tab (hpon)" |
Which freq currently has 0 657? | CREATE TABLE table_name_86 (freq_currently VARCHAR, frequency VARCHAR) | SELECT freq_currently FROM table_name_86 WHERE frequency = "0 657" | ### Context: CREATE TABLE table_name_86 (freq_currently VARCHAR, frequency VARCHAR) ### Question: Which freq currently has 0 657? ### Answer: SELECT freq_currently FROM table_name_86 WHERE frequency = "0 657" |
What is the purpose for the katherine freq of 8rn? | CREATE TABLE table_name_50 (purpose VARCHAR, freq_currently VARCHAR, area_served VARCHAR) | SELECT purpose FROM table_name_50 WHERE freq_currently = "8rn" AND area_served = "katherine" | ### Context: CREATE TABLE table_name_50 (purpose VARCHAR, freq_currently VARCHAR, area_served VARCHAR) ### Question: What is the purpose for the katherine freq of 8rn? ### Answer: SELECT purpose FROM table_name_50 WHERE freq_currently = "8rn" AND area_served = "katherine" |
Which freq currently has 0 684? | CREATE TABLE table_name_7 (freq_currently VARCHAR, frequency VARCHAR) | SELECT freq_currently FROM table_name_7 WHERE frequency = "0 684" | ### Context: CREATE TABLE table_name_7 (freq_currently VARCHAR, frequency VARCHAR) ### Question: Which freq currently has 0 684? ### Answer: SELECT freq_currently FROM table_name_7 WHERE frequency = "0 684" |
Which band serves darwin for commercial purpose? | CREATE TABLE table_name_61 (band VARCHAR, area_served VARCHAR, purpose VARCHAR) | SELECT band FROM table_name_61 WHERE area_served = "darwin" AND purpose = "commercial" | ### Context: CREATE TABLE table_name_61 (band VARCHAR, area_served VARCHAR, purpose VARCHAR) ### Question: Which band serves darwin for commercial purpose? ### Answer: SELECT band FROM table_name_61 WHERE area_served = "darwin" AND purpose = "commercial" |
What is the points difference for a loss less than 6, and points less than 11? | CREATE TABLE table_name_30 (points_difference VARCHAR, lost VARCHAR, points VARCHAR) | SELECT points_difference FROM table_name_30 WHERE lost < 6 AND points < 11 | ### Context: CREATE TABLE table_name_30 (points_difference VARCHAR, lost VARCHAR, points VARCHAR) ### Question: What is the points difference for a loss less than 6, and points less than 11? ### Answer: SELECT points_difference FROM table_name_30 WHERE lost < 6 AND points < 11 |
Which Opponent has a Loss of báez (5-5)? | CREATE TABLE table_name_17 (opponent VARCHAR, loss VARCHAR) | SELECT opponent FROM table_name_17 WHERE loss = "báez (5-5)" | ### Context: CREATE TABLE table_name_17 (opponent VARCHAR, loss VARCHAR) ### Question: Which Opponent has a Loss of báez (5-5)? ### Answer: SELECT opponent FROM table_name_17 WHERE loss = "báez (5-5)" |
Which Score has an Opponent of @ rockies, and a Record of 33-35? | CREATE TABLE table_name_75 (score VARCHAR, opponent VARCHAR, record VARCHAR) | SELECT score FROM table_name_75 WHERE opponent = "@ rockies" AND record = "33-35" | ### Context: CREATE TABLE table_name_75 (score VARCHAR, opponent VARCHAR, record VARCHAR) ### Question: Which Score has an Opponent of @ rockies, and a Record of 33-35? ### Answer: SELECT score FROM table_name_75 WHERE opponent = "@ rockies" AND record = "33-35" |
Which Attendance has an Opponent of phillies, and a Record of 30-33? | CREATE TABLE table_name_34 (attendance INTEGER, opponent VARCHAR, record VARCHAR) | SELECT SUM(attendance) FROM table_name_34 WHERE opponent = "phillies" AND record = "30-33" | ### Context: CREATE TABLE table_name_34 (attendance INTEGER, opponent VARCHAR, record VARCHAR) ### Question: Which Attendance has an Opponent of phillies, and a Record of 30-33? ### Answer: SELECT SUM(attendance) FROM table_name_34 WHERE opponent = "phillies" AND record = "30-33" |
Which Attendance is the highest one that has a Loss of batista (4-5)? | CREATE TABLE table_name_3 (attendance INTEGER, loss VARCHAR) | SELECT MAX(attendance) FROM table_name_3 WHERE loss = "batista (4-5)" | ### Context: CREATE TABLE table_name_3 (attendance INTEGER, loss VARCHAR) ### Question: Which Attendance is the highest one that has a Loss of batista (4-5)? ### Answer: SELECT MAX(attendance) FROM table_name_3 WHERE loss = "batista (4-5)" |
What is the frequency MHz of the ERP W's greater than 250? | CREATE TABLE table_name_55 (frequency_mhz INTEGER, erp_w INTEGER) | SELECT AVG(frequency_mhz) FROM table_name_55 WHERE erp_w > 250 | ### Context: CREATE TABLE table_name_55 (frequency_mhz INTEGER, erp_w INTEGER) ### Question: What is the frequency MHz of the ERP W's greater than 250? ### Answer: SELECT AVG(frequency_mhz) FROM table_name_55 WHERE erp_w > 250 |
What is the call sign of the MHz Frequency less than 94.9 and an ERP W of 170? | CREATE TABLE table_name_35 (call_sign VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR) | SELECT call_sign FROM table_name_35 WHERE frequency_mhz < 94.9 AND erp_w = 170 | ### Context: CREATE TABLE table_name_35 (call_sign VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR) ### Question: What is the call sign of the MHz Frequency less than 94.9 and an ERP W of 170? ### Answer: SELECT call_sign FROM table_name_35 WHERE frequency_mhz < 94.9 AND erp_w = 170 |
What is the FCC info for the city of Tribune, Kansas? | CREATE TABLE table_name_74 (fcc_info VARCHAR, city_of_license VARCHAR) | SELECT fcc_info FROM table_name_74 WHERE city_of_license = "tribune, kansas" | ### Context: CREATE TABLE table_name_74 (fcc_info VARCHAR, city_of_license VARCHAR) ### Question: What is the FCC info for the city of Tribune, Kansas? ### Answer: SELECT fcc_info FROM table_name_74 WHERE city_of_license = "tribune, kansas" |
What is the city of license with an ERP W less than 170? | CREATE TABLE table_name_15 (city_of_license VARCHAR, erp_w INTEGER) | SELECT city_of_license FROM table_name_15 WHERE erp_w < 170 | ### Context: CREATE TABLE table_name_15 (city_of_license VARCHAR, erp_w INTEGER) ### Question: What is the city of license with an ERP W less than 170? ### Answer: SELECT city_of_license FROM table_name_15 WHERE erp_w < 170 |
What is the smallest ERP W with a frequency MHz of 94.9? | CREATE TABLE table_name_26 (erp_w INTEGER, frequency_mhz VARCHAR) | SELECT MIN(erp_w) FROM table_name_26 WHERE frequency_mhz = 94.9 | ### Context: CREATE TABLE table_name_26 (erp_w INTEGER, frequency_mhz VARCHAR) ### Question: What is the smallest ERP W with a frequency MHz of 94.9? ### Answer: SELECT MIN(erp_w) FROM table_name_26 WHERE frequency_mhz = 94.9 |
What is the ERP W of a Frequency MHz greater than 89.5 in the city of Washburn, Texas? | CREATE TABLE table_name_68 (erp_w VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR) | SELECT erp_w FROM table_name_68 WHERE frequency_mhz > 89.5 AND city_of_license = "washburn, texas" | ### Context: CREATE TABLE table_name_68 (erp_w VARCHAR, frequency_mhz VARCHAR, city_of_license VARCHAR) ### Question: What is the ERP W of a Frequency MHz greater than 89.5 in the city of Washburn, Texas? ### Answer: SELECT erp_w FROM table_name_68 WHERE frequency_mhz > 89.5 AND city_of_license = "washburn, texas" |
What is the total number of bronze medals the U.S. Virgin Islands, which has less than 0 golds, has? | CREATE TABLE table_name_45 (bronze VARCHAR, nation VARCHAR, gold VARCHAR) | SELECT COUNT(bronze) FROM table_name_45 WHERE nation = "u.s. virgin islands" AND gold < 0 | ### Context: CREATE TABLE table_name_45 (bronze VARCHAR, nation VARCHAR, gold VARCHAR) ### Question: What is the total number of bronze medals the U.S. Virgin Islands, which has less than 0 golds, has? ### Answer: SELECT COUNT(bronze) FROM table_name_45 WHERE nation = "u.s. virgin islands" AND gold < 0 |
What is the rank of the team with 11 total medals and more than 4 silver medals has? | CREATE TABLE table_name_95 (rank INTEGER, total VARCHAR, silver VARCHAR) | SELECT SUM(rank) FROM table_name_95 WHERE total = 11 AND silver > 4 | ### Context: CREATE TABLE table_name_95 (rank INTEGER, total VARCHAR, silver VARCHAR) ### Question: What is the rank of the team with 11 total medals and more than 4 silver medals has? ### Answer: SELECT SUM(rank) FROM table_name_95 WHERE total = 11 AND silver > 4 |
What is the lowest total medals the team with more than 0 bronze, 6 silver, and a rank higher than 3 has? | CREATE TABLE table_name_97 (total INTEGER, rank VARCHAR, bronze VARCHAR, silver VARCHAR) | SELECT MIN(total) FROM table_name_97 WHERE bronze > 0 AND silver = 6 AND rank < 3 | ### Context: CREATE TABLE table_name_97 (total INTEGER, rank VARCHAR, bronze VARCHAR, silver VARCHAR) ### Question: What is the lowest total medals the team with more than 0 bronze, 6 silver, and a rank higher than 3 has? ### Answer: SELECT MIN(total) FROM table_name_97 WHERE bronze > 0 AND silver = 6 AND rank < 3 |
What is the highest rank of Venezuela, which has more than 9 bronze medals? | CREATE TABLE table_name_54 (rank INTEGER, nation VARCHAR, bronze VARCHAR) | SELECT MIN(rank) FROM table_name_54 WHERE nation = "venezuela" AND bronze > 9 | ### Context: CREATE TABLE table_name_54 (rank INTEGER, nation VARCHAR, bronze VARCHAR) ### Question: What is the highest rank of Venezuela, which has more than 9 bronze medals? ### Answer: SELECT MIN(rank) FROM table_name_54 WHERE nation = "venezuela" AND bronze > 9 |
What is the lowest rank of the team with 0 bronze, 1 silver, and more than 0 gold? | CREATE TABLE table_name_69 (rank INTEGER, gold VARCHAR, bronze VARCHAR, silver VARCHAR) | SELECT MIN(rank) FROM table_name_69 WHERE bronze = 0 AND silver = 1 AND gold > 0 | ### Context: CREATE TABLE table_name_69 (rank INTEGER, gold VARCHAR, bronze VARCHAR, silver VARCHAR) ### Question: What is the lowest rank of the team with 0 bronze, 1 silver, and more than 0 gold? ### Answer: SELECT MIN(rank) FROM table_name_69 WHERE bronze = 0 AND silver = 1 AND gold > 0 |
What round has mathieu garon as the player? | CREATE TABLE table_name_29 (round VARCHAR, player VARCHAR) | SELECT round FROM table_name_29 WHERE player = "mathieu garon" | ### Context: CREATE TABLE table_name_29 (round VARCHAR, player VARCHAR) ### Question: What round has mathieu garon as the player? ### Answer: SELECT round FROM table_name_29 WHERE player = "mathieu garon" |
What nationality has a position of left wing, and a round greater than 4, with mattia baldi as the player? | CREATE TABLE table_name_75 (nationality VARCHAR, player VARCHAR, position VARCHAR, round VARCHAR) | SELECT nationality FROM table_name_75 WHERE position = "left wing" AND round > 4 AND player = "mattia baldi" | ### Context: CREATE TABLE table_name_75 (nationality VARCHAR, player VARCHAR, position VARCHAR, round VARCHAR) ### Question: What nationality has a position of left wing, and a round greater than 4, with mattia baldi as the player? ### Answer: SELECT nationality FROM table_name_75 WHERE position = "left wing" AND round > 4 AND player = "mattia baldi" |
How many rounds have goalie as the position? | CREATE TABLE table_name_26 (round INTEGER, position VARCHAR) | SELECT SUM(round) FROM table_name_26 WHERE position = "goalie" | ### Context: CREATE TABLE table_name_26 (round INTEGER, position VARCHAR) ### Question: How many rounds have goalie as the position? ### Answer: SELECT SUM(round) FROM table_name_26 WHERE position = "goalie" |
Which Competition has a Date of may 2, 1993? | CREATE TABLE table_name_12 (competition VARCHAR, date VARCHAR) | SELECT competition FROM table_name_12 WHERE date = "may 2, 1993" | ### Context: CREATE TABLE table_name_12 (competition VARCHAR, date VARCHAR) ### Question: Which Competition has a Date of may 2, 1993? ### Answer: SELECT competition FROM table_name_12 WHERE date = "may 2, 1993" |
Which Result has a Goal larger than 6, and a Score of 1–0, and a Competition of friendly, and a Date of may 31, 1998? | CREATE TABLE table_name_1 (result VARCHAR, date VARCHAR, competition VARCHAR, goal VARCHAR, score VARCHAR) | SELECT result FROM table_name_1 WHERE goal > 6 AND score = "1–0" AND competition = "friendly" AND date = "may 31, 1998" | ### Context: CREATE TABLE table_name_1 (result VARCHAR, date VARCHAR, competition VARCHAR, goal VARCHAR, score VARCHAR) ### Question: Which Result has a Goal larger than 6, and a Score of 1–0, and a Competition of friendly, and a Date of may 31, 1998? ### Answer: SELECT result FROM table_name_1 WHERE goal > 6 AND score = "1–0" AND competition = "friendly" AND date = "may 31, 1998" |
What was the score on april 4, 1993? | CREATE TABLE table_name_33 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_33 WHERE date = "april 4, 1993" | ### Context: CREATE TABLE table_name_33 (score VARCHAR, date VARCHAR) ### Question: What was the score on april 4, 1993? ### Answer: SELECT score FROM table_name_33 WHERE date = "april 4, 1993" |
What's the 1 credit with a Hand of Theoretical Return? | CREATE TABLE table_name_86 (hand VARCHAR) | SELECT 1 AS _credit FROM table_name_86 WHERE hand = "theoretical return" | ### Context: CREATE TABLE table_name_86 (hand VARCHAR) ### Question: What's the 1 credit with a Hand of Theoretical Return? ### Answer: SELECT 1 AS _credit FROM table_name_86 WHERE hand = "theoretical return" |
What is the games number when the Position was wr, and a Number larger than 17? | CREATE TABLE table_name_58 (games VARCHAR, position VARCHAR, number VARCHAR) | SELECT COUNT(games) AS ↑ FROM table_name_58 WHERE position = "wr" AND number > 17 | ### Context: CREATE TABLE table_name_58 (games VARCHAR, position VARCHAR, number VARCHAR) ### Question: What is the games number when the Position was wr, and a Number larger than 17? ### Answer: SELECT COUNT(games) AS ↑ FROM table_name_58 WHERE position = "wr" AND number > 17 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.