training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_58 (surface VARCHAR, rally_hq VARCHAR)
###human: What Surface had a Rally HQ of salou?
###assistant: SELECT surface FROM table_name_58 WHERE rally_hq = "salou" |
###context:CREATE TABLE table_name_85 (lane INTEGER, nationality VARCHAR, time VARCHAR)
###human: What is the lowest lane in the Czech Republic and a time larger than 21.05?
###assistant: SELECT MIN(lane) FROM table_name_85 WHERE nationality = "czech republic" AND time > 21.05 |
###context:CREATE TABLE table_name_31 (lane INTEGER, rank VARCHAR, nationality VARCHAR)
###human: What is the highest lane with a rank larger than 2 in Guyana?
###assistant: SELECT MAX(lane) FROM table_name_31 WHERE rank > 2 AND nationality = "guyana" |
###context:CREATE TABLE table_name_61 (rank INTEGER, athlete VARCHAR, time VARCHAR)
###human: What is the sum rank of Solomon Bayoh when his time was smaller than 22.16?
###assistant: SELECT SUM(rank) FROM table_name_61 WHERE athlete = "solomon bayoh" AND time < 22.16 |
###context:CREATE TABLE table_name_18 (artist VARCHAR, album VARCHAR)
###human: Who is the artist of the album Soul?
###assistant: SELECT artist FROM table_name_18 WHERE album = "soul" |
###context:CREATE TABLE table_name_51 (athlete VARCHAR, time VARCHAR, country VARCHAR)
###human: who is the athlete when the time is less than 11.13 and the country is belgium?
###assistant: SELECT athlete FROM table_name_51 WHERE time < 11.13 AND country = "belgium" |
###context:CREATE TABLE table_name_33 (athlete VARCHAR, heat VARCHAR, country VARCHAR, rank VARCHAR, time VARCHAR)
###human: who is the athlete when the rank is less than 13, time more than 11.13, country is bahamas and the heat more than 2?
###assistant: SELECT athlete FROM table_name_33 WHERE rank < 13 AND time > 11.13 AND country = "bahamas" AND heat > 2 |
###context:CREATE TABLE table_name_89 (heat INTEGER, athlete VARCHAR)
###human: what is the heat when the athlete is anita pistone?
###assistant: SELECT SUM(heat) FROM table_name_89 WHERE athlete = "anita pistone" |
###context:CREATE TABLE table_name_8 (time VARCHAR, heat VARCHAR, rank VARCHAR, athlete VARCHAR)
###human: how many times is the rank more than 29, the athlete is barbara pierre and the heat less than 5?
###assistant: SELECT COUNT(time) FROM table_name_8 WHERE rank > 29 AND athlete = "barbara pierre" AND heat < 5 |
###context:CREATE TABLE table_name_83 (ihsaa_class VARCHAR, location VARCHAR)
###human: Which IHSAA Class has a Location of linton?
###assistant: SELECT ihsaa_class FROM table_name_83 WHERE location = "linton" |
###context:CREATE TABLE table_name_86 (played INTEGER, lost VARCHAR, points VARCHAR)
###human: What is the sum of matches played for teams with more than 10 losses and under 5 points?
###assistant: SELECT SUM(played) FROM table_name_86 WHERE lost > 10 AND points < 5 |
###context:CREATE TABLE table_name_56 (position VARCHAR, lost VARCHAR, points VARCHAR, drawn VARCHAR)
###human: What is the total number of positions for teams with more than 5 points, 3 draws, and under 2 losses?
###assistant: SELECT COUNT(position) FROM table_name_56 WHERE points > 5 AND drawn = 3 AND lost < 2 |
###context:CREATE TABLE table_name_95 (drawn INTEGER, lost VARCHAR, points VARCHAR)
###human: What is the average number of losses for teams with under 4 losses and under 21 points?
###assistant: SELECT AVG(drawn) FROM table_name_95 WHERE lost < 4 AND points < 21 |
###context:CREATE TABLE table_name_85 (home_team VARCHAR, attendance VARCHAR)
###human: What is the home team at the game with an Attendance of 2,029?
###assistant: SELECT home_team FROM table_name_85 WHERE attendance = "2,029" |
###context:CREATE TABLE table_name_73 (away_team VARCHAR, attendance VARCHAR)
###human: What is the away team at the game with an Attendance of 1,730?
###assistant: SELECT away_team FROM table_name_73 WHERE attendance = "1,730" |
###context:CREATE TABLE table_name_18 (away_team VARCHAR, tie_no VARCHAR)
###human: What is the away team at the game with a Tie no of 2?
###assistant: SELECT away_team FROM table_name_18 WHERE tie_no = "2" |
###context:CREATE TABLE table_name_94 (f_laps VARCHAR, wins VARCHAR, points VARCHAR, poles VARCHAR)
###human: What F/Laps listing has entries of n/a Points, 1 Poles, and 0 Wins?
###assistant: SELECT f_laps FROM table_name_94 WHERE points = "n/a" AND poles = "1" AND wins = "0" |
###context:CREATE TABLE table_name_96 (series VARCHAR, points VARCHAR, season VARCHAR, podiums VARCHAR)
###human: What Series has a season that is older than 2003 with a Podiums entry of 1 and a Points entry that is n/a?
###assistant: SELECT series FROM table_name_96 WHERE season < 2003 AND podiums = "1" AND points = "n/a" |
###context:CREATE TABLE table_name_74 (podiums VARCHAR, series VARCHAR)
###human: What Podiums listing has a World Rally Championship series entry?
###assistant: SELECT podiums FROM table_name_74 WHERE series = "world rally championship" |
###context:CREATE TABLE table_name_15 (races VARCHAR, position VARCHAR, points VARCHAR, wins VARCHAR)
###human: What races have n/a Points, 0 Wins, and 6th Position entries?
###assistant: SELECT races FROM table_name_15 WHERE points = "n/a" AND wins = "0" AND position = "6th" |
###context:CREATE TABLE table_name_34 (season INTEGER, team VARCHAR, series VARCHAR)
###human: What is the most recent season for the Prema Powerteam with a Masters of Formula Three series?
###assistant: SELECT MAX(season) FROM table_name_34 WHERE team = "prema powerteam" AND series = "masters of formula three" |
###context:CREATE TABLE table_name_38 (podiums VARCHAR, f_laps VARCHAR, points VARCHAR)
###human: What listing for Podiums has 0 F/laps and 39 points?
###assistant: SELECT podiums FROM table_name_38 WHERE f_laps = "0" AND points = "39" |
###context:CREATE TABLE table_name_75 (loss VARCHAR, record VARCHAR)
###human: Which Loss has a Record of 20β16β9?
###assistant: SELECT loss FROM table_name_75 WHERE record = "20β16β9" |
###context:CREATE TABLE table_name_43 (date VARCHAR, record VARCHAR)
###human: Which Date has a Record of 19β16β8?
###assistant: SELECT date FROM table_name_43 WHERE record = "19β16β8" |
###context:CREATE TABLE table_name_35 (time VARCHAR, lane VARCHAR)
###human: Can you tell me the Time that has the Lane of 8?
###assistant: SELECT time FROM table_name_35 WHERE lane = 8 |
###context:CREATE TABLE table_name_67 (rank VARCHAR, lane VARCHAR)
###human: Can you tell me the Total number of Rankthat has the Lane of 4?
###assistant: SELECT COUNT(rank) FROM table_name_67 WHERE lane = 4 |
###context:CREATE TABLE table_name_49 (rank INTEGER, lane VARCHAR, nationality VARCHAR, name VARCHAR)
###human: Can you tell me the lowest Rank that has the Nationality of australia, and the Name of leisel jones, and the Lane larger than 4?
###assistant: SELECT MIN(rank) FROM table_name_49 WHERE nationality = "australia" AND name = "leisel jones" AND lane > 4 |
###context:CREATE TABLE table_name_10 (name VARCHAR, rank VARCHAR)
###human: Can you tell me the Name that has the Rank of 4?
###assistant: SELECT name FROM table_name_10 WHERE rank = 4 |
###context:CREATE TABLE table_name_7 (against INTEGER, opposing_team VARCHAR)
###human: What is the highest Against for a game against Bristol City?
###assistant: SELECT MAX(against) FROM table_name_7 WHERE opposing_team = "bristol city" |
###context:CREATE TABLE table_name_87 (date VARCHAR, opposing_team VARCHAR)
###human: What was the date of the game against Oxford United?
###assistant: SELECT date FROM table_name_87 WHERE opposing_team = "oxford united" |
###context:CREATE TABLE table_name_41 (country VARCHAR, rank VARCHAR)
###human: What country is ranked number 4?
###assistant: SELECT country FROM table_name_41 WHERE rank = 4 |
###context:CREATE TABLE table_name_47 (notes VARCHAR, rank VARCHAR)
###human: What are the notes from the rank of 1?
###assistant: SELECT notes FROM table_name_47 WHERE rank = 1 |
###context:CREATE TABLE table_name_41 (rowers VARCHAR, notes VARCHAR)
###human: What rowers have FA as the notes?
###assistant: SELECT rowers FROM table_name_41 WHERE notes = "fa" |
###context:CREATE TABLE table_name_81 (rank INTEGER, time VARCHAR)
###human: What is the lowest rank has 7:09.06 as the time?
###assistant: SELECT MIN(rank) FROM table_name_81 WHERE time = "7:09.06" |
###context:CREATE TABLE table_name_62 (notes VARCHAR, rank VARCHAR)
###human: What notes have 2 as the rank?
###assistant: SELECT notes FROM table_name_62 WHERE rank = 2 |
###context:CREATE TABLE table_name_91 (match VARCHAR, opponent VARCHAR)
###human: What was the match that happened in Bishop's Stortford?
###assistant: SELECT match FROM table_name_91 WHERE opponent = "bishop's stortford" |
###context:CREATE TABLE table_name_99 (score1 VARCHAR, opponent VARCHAR)
###human: What was the final score for the Thurrock?
###assistant: SELECT score1 FROM table_name_99 WHERE opponent = "thurrock" |
###context:CREATE TABLE table_name_80 (ihsaa_class VARCHAR, mascot VARCHAR)
###human: Which IHSAA class has a mascot of the Raiders?
###assistant: SELECT ihsaa_class FROM table_name_80 WHERE mascot = "raiders" |
###context:CREATE TABLE table_name_25 (school VARCHAR, mascot VARCHAR)
###human: Which school has a mascot of the Panthers?
###assistant: SELECT school FROM table_name_25 WHERE mascot = "panthers" |
###context:CREATE TABLE table_name_96 (time VARCHAR, notes VARCHAR, country VARCHAR)
###human: What's Italy's time when the notes were SA/B?
###assistant: SELECT time FROM table_name_96 WHERE notes = "sa/b" AND country = "italy" |
###context:CREATE TABLE table_name_15 (rank VARCHAR, country VARCHAR)
###human: What is Italy's rank?
###assistant: SELECT rank FROM table_name_15 WHERE country = "italy" |
###context:CREATE TABLE table_name_15 (appearances VARCHAR, club VARCHAR, goals VARCHAR)
###human: How many appearances did the player for the Rayo Vallecano club that scored more than 37 goals make?
###assistant: SELECT COUNT(appearances) FROM table_name_15 WHERE club = "rayo vallecano" AND goals > 37 |
###context:CREATE TABLE table_name_32 (player VARCHAR, eliminated VARCHAR)
###human: Who's the player that was eliminated on episode 4?
###assistant: SELECT player FROM table_name_32 WHERE eliminated = "episode 4" |
###context:CREATE TABLE table_name_65 (player VARCHAR, placing VARCHAR)
###human: Who is the player in 20th place?
###assistant: SELECT player FROM table_name_65 WHERE placing = "20th place" |
###context:CREATE TABLE table_name_15 (original_season VARCHAR, placing VARCHAR)
###human: What's the original season in 11th place?
###assistant: SELECT original_season FROM table_name_15 WHERE placing = "11th place" |
###context:CREATE TABLE table_name_50 (player VARCHAR, eliminated VARCHAR)
###human: Who's the player eliminated on episode 5?
###assistant: SELECT player FROM table_name_50 WHERE eliminated = "episode 5" |
###context:CREATE TABLE table_name_36 (player VARCHAR, gender VARCHAR, original_season VARCHAR)
###human: Who's the player that's male and on the original season of RW: Key West?
###assistant: SELECT player FROM table_name_36 WHERE gender = "male" AND original_season = "rw: key west" |
###context:CREATE TABLE table_name_59 (player VARCHAR, original_season VARCHAR, eliminated VARCHAR)
###human: Who's the player eliminated on episode 8 of Fresh Meat?
###assistant: SELECT player FROM table_name_59 WHERE original_season = "fresh meat" AND eliminated = "episode 8" |
###context:CREATE TABLE table_name_94 (status VARCHAR, name VARCHAR)
###human: The boat named Agamemnon has what status?
###assistant: SELECT status FROM table_name_94 WHERE name = "agamemnon" |
###context:CREATE TABLE table_name_54 (status VARCHAR, name VARCHAR)
###human: What status does the boat Ajax have?
###assistant: SELECT status FROM table_name_54 WHERE name = "ajax" |
###context:CREATE TABLE table_name_70 (upper_index_mj__nm_3 INTEGER, upper_index_kcal__nm_3 VARCHAR)
###human: What is the average upper index MJ/Nm 3 for the upper index Kcal/Nm 3 entry of 19,376?
###assistant: SELECT AVG(upper_index_mj__nm_3) FROM table_name_70 WHERE upper_index_kcal__nm_3 = 19 OFFSET 376 |
###context:CREATE TABLE table_name_59 (upper_index_kcal__nm_3 VARCHAR, fuel_gas VARCHAR, lower_index_mj__nm_3 VARCHAR)
###human: What is the Upper index Kcal/ Nm 3 of iso-butane, and a Lower index MJ/ Nm 3 smaller than 84.71?
###assistant: SELECT COUNT(upper_index_kcal__nm_3) FROM table_name_59 WHERE fuel_gas = "iso-butane" AND lower_index_mj__nm_3 < 84.71 |
###context:CREATE TABLE table_name_5 (lower_index_kcal__nm_3 INTEGER, lower_index_mj__nm_3 VARCHAR, upper_index_kcal__nm_3 VARCHAR)
###human: What is the Lower index Kcal/ Nm 3 entry, for the row with entries of an Upper index Kcal/ Nm 3 smaller than 19,376, and a Lower index MJ/ Nm 3 of 74.54?
###assistant: SELECT AVG(lower_index_kcal__nm_3) FROM table_name_5 WHERE lower_index_mj__nm_3 = 74.54 AND upper_index_kcal__nm_3 < 19 OFFSET 376 |
###context:CREATE TABLE table_name_93 (upper_index_kcal__nm_3 INTEGER, lower_index_mj__nm_3 VARCHAR, upper_index_mj__nm_3 VARCHAR)
###human: What is the entry for Upper index Kcal/ Nm 3 for the row with an entry that has a Lower index MJ/ Nm 3 of 47.91, and an Upper index MJ/ Nm 3 larger than 53.28?
###assistant: SELECT SUM(upper_index_kcal__nm_3) FROM table_name_93 WHERE lower_index_mj__nm_3 = 47.91 AND upper_index_mj__nm_3 > 53.28 |
###context:CREATE TABLE table_name_1 (upper_index_kcal__nm_3 INTEGER, upper_index_mj__nm_3 VARCHAR, lower_index_mj__nm_3 VARCHAR, fuel_gas VARCHAR)
###human: What is the entry for Upper index Kcal/ Nm 3 for the row with an entry that has a Lower index MJ/ Nm 3 larger than 47.91, for propylene, and an Upper index MJ/ Nm 3 larger than 77.04?
###assistant: SELECT SUM(upper_index_kcal__nm_3) FROM table_name_1 WHERE lower_index_mj__nm_3 > 47.91 AND fuel_gas = "propylene" AND upper_index_mj__nm_3 > 77.04 |
###context:CREATE TABLE table_name_37 (match INTEGER, ground VARCHAR, opponent VARCHAR)
###human: What match number has a ground of H and the opponent Chelsea under 18s?
###assistant: SELECT AVG(match) FROM table_name_37 WHERE ground = "h" AND opponent = "chelsea under 18s" |
###context:CREATE TABLE table_name_11 (date VARCHAR, opponent VARCHAR, match VARCHAR, ground VARCHAR)
###human: On what date is there a match lower than 14 with a ground of H and the opponent Aston Villa under 18s?
###assistant: SELECT date FROM table_name_11 WHERE match < 14 AND ground = "h" AND opponent = "aston villa under 18s" |
###context:CREATE TABLE table_name_69 (date VARCHAR, score1 VARCHAR, opponent VARCHAR)
###human: On what date is there a score1 of 2 - 4 with the opponent Chelsea under 18s?
###assistant: SELECT date FROM table_name_69 WHERE score1 = "2 - 4" AND opponent = "chelsea under 18s" |
###context:CREATE TABLE table_name_7 (ticket_price_s_ VARCHAR, venue VARCHAR)
###human: What is the ticket price at Canadian National Exhibition Stadium?
###assistant: SELECT ticket_price_s_ FROM table_name_7 WHERE venue = "canadian national exhibition stadium" |
###context:CREATE TABLE table_name_96 (ticket_price_s_ VARCHAR, venue VARCHAR)
###human: What was the ticket price at Red Rocks Amphitheatre?
###assistant: SELECT ticket_price_s_ FROM table_name_96 WHERE venue = "red rocks amphitheatre" |
###context:CREATE TABLE table_name_56 (ticket_price_s_ VARCHAR, date_s_ VARCHAR)
###human: What was the ticket price on September 16, 1986?
###assistant: SELECT ticket_price_s_ FROM table_name_56 WHERE date_s_ = "september 16, 1986" |
###context:CREATE TABLE table_name_72 (opposition VARCHAR, total VARCHAR)
###human: Who was the opposition for the player who has a total of 10 points?
###assistant: SELECT opposition FROM table_name_72 WHERE total = 10 |
###context:CREATE TABLE table_name_89 (player VARCHAR, county VARCHAR)
###human: Which player is from County Dublin?
###assistant: SELECT player FROM table_name_89 WHERE county = "dublin" |
###context:CREATE TABLE table_name_38 (metropolitan_population__2006__millions INTEGER, metropolitan_area VARCHAR, gdp__ppp__us$_per_capita VARCHAR)
###human: What is the average 2006 metropolitan population of Lima with a GDP per capita over $13,100?
###assistant: SELECT AVG(metropolitan_population__2006__millions) FROM table_name_38 WHERE metropolitan_area = "lima" AND gdp__ppp__us$_per_capita > 13 OFFSET 100 |
###context:CREATE TABLE table_name_22 (rank INTEGER, time VARCHAR)
###human: Who placed highest with a time of 1:47.70?
###assistant: SELECT MIN(rank) FROM table_name_22 WHERE time = "1:47.70" |
###context:CREATE TABLE table_name_67 (prominence__m_ INTEGER, elevation__m_ VARCHAR)
###human: Which Prominence (m) has an Elevation (m) of 3,095?
###assistant: SELECT MIN(prominence__m_) FROM table_name_67 WHERE elevation__m_ = 3 OFFSET 095 |
###context:CREATE TABLE table_name_53 (duration VARCHAR, character VARCHAR)
###human: How long did Witold Latoszek character lasted?
###assistant: SELECT duration FROM table_name_53 WHERE character = "witold latoszek" |
###context:CREATE TABLE table_name_72 (no_in_season INTEGER, written_by VARCHAR)
###human: Which episode was the last written by chris hawkshaw this season?
###assistant: SELECT MAX(no_in_season) FROM table_name_72 WHERE written_by = "chris hawkshaw" |
###context:CREATE TABLE table_name_61 (change_06_07 VARCHAR)
###human: What is the greatest 2007 when the change 06-07 was 14.7%?
###assistant: SELECT MAX(2007) FROM table_name_61 WHERE change_06_07 = "14.7%" |
###context:CREATE TABLE table_name_32 (completed VARCHAR, laid_down VARCHAR)
###human: when was the ship completed when laid down is 21 august 1925?
###assistant: SELECT completed FROM table_name_32 WHERE laid_down = "21 august 1925" |
###context:CREATE TABLE table_name_25 (completed VARCHAR, name VARCHAR)
###human: When was satsuki dd-27 completed?
###assistant: SELECT completed FROM table_name_25 WHERE name = "satsuki dd-27" |
###context:CREATE TABLE table_name_36 (launched VARCHAR, builder VARCHAR, laid_down VARCHAR)
###human: when was the ship launched when it was laid down 20 october 1924 and built by fujinagata shipyards, japan?
###assistant: SELECT launched FROM table_name_36 WHERE builder = "fujinagata shipyards, japan" AND laid_down = "20 october 1924" |
###context:CREATE TABLE table_name_31 (completed VARCHAR, laid_down VARCHAR)
###human: when was the ship completed that was laid down on 23 march 1926?
###assistant: SELECT completed FROM table_name_31 WHERE laid_down = "23 march 1926" |
###context:CREATE TABLE table_name_43 (laid_down VARCHAR, completed VARCHAR)
###human: when was the ship laid down when it was completed on 3 july 1926?
###assistant: SELECT laid_down FROM table_name_43 WHERE completed = "3 july 1926" |
###context:CREATE TABLE table_name_38 (score VARCHAR, location_attendance VARCHAR)
###human: What was the score of the game at the Chicago Stadium?
###assistant: SELECT score FROM table_name_38 WHERE location_attendance = "chicago stadium" |
###context:CREATE TABLE table_name_9 (date VARCHAR, record VARCHAR)
###human: What was the date of the game when the record was 46-31?
###assistant: SELECT date FROM table_name_9 WHERE record = "46-31" |
###context:CREATE TABLE table_name_67 (score VARCHAR, location_attendance VARCHAR)
###human: What was the score of the game at the Chicago Stadium?
###assistant: SELECT score FROM table_name_67 WHERE location_attendance = "chicago stadium" |
###context:CREATE TABLE table_name_16 (rank INTEGER, lane VARCHAR)
###human: What is the Rank of the Swimmer in Lane 5?
###assistant: SELECT AVG(rank) FROM table_name_16 WHERE lane = 5 |
###context:CREATE TABLE table_name_41 (rank VARCHAR, time VARCHAR, lane VARCHAR)
###human: What is the Rank of the swimmer with a Time of 49 in Lane 7 or larger?
###assistant: SELECT COUNT(rank) FROM table_name_41 WHERE time = 49 AND lane > 7 |
###context:CREATE TABLE table_name_24 (lane INTEGER, rank VARCHAR)
###human: What is the Lane of the swimmer with a Rank of 8?
###assistant: SELECT MAX(lane) FROM table_name_24 WHERE rank = 8 |
###context:CREATE TABLE table_name_54 (level VARCHAR, season INTEGER)
###human: What Level has a Season larger than 2010?
###assistant: SELECT level FROM table_name_54 WHERE season > 2010 |
###context:CREATE TABLE table_name_56 (administration VARCHAR, season VARCHAR)
###human: What Adminstration has a Season of 2000?
###assistant: SELECT administration FROM table_name_56 WHERE season = 2000 |
###context:CREATE TABLE table_name_21 (position VARCHAR, season VARCHAR, level VARCHAR)
###human: What Position has a Season larger than 2000 with a Level of Tier 3?
###assistant: SELECT position FROM table_name_21 WHERE season > 2000 AND level = "tier 3" |
###context:CREATE TABLE table_name_85 (position VARCHAR, level VARCHAR, season VARCHAR)
###human: What Position has a Level of tier 4 with a Season smaller than 2003?
###assistant: SELECT position FROM table_name_85 WHERE level = "tier 4" AND season < 2003 |
###context:CREATE TABLE table_name_74 (high_rebounds VARCHAR, opponent VARCHAR)
###human: Who had the most rebounds in the game against New York?
###assistant: SELECT high_rebounds FROM table_name_74 WHERE opponent = "new york" |
###context:CREATE TABLE table_name_10 (opponent VARCHAR, game VARCHAR)
###human: Who was the opponent for game 30?
###assistant: SELECT opponent FROM table_name_10 WHERE game = 30 |
###context:CREATE TABLE table_name_75 (high_rebounds VARCHAR, location VARCHAR, record VARCHAR)
###human: Who had the most rebounds in the game at the Mohegan Sun Arena that led to a 24-7 record?
###assistant: SELECT high_rebounds FROM table_name_75 WHERE location = "mohegan sun arena" AND record = "24-7" |
###context:CREATE TABLE table_name_22 (attendance INTEGER, date VARCHAR)
###human: How many people attended the September 21, 1980 game?
###assistant: SELECT AVG(attendance) FROM table_name_22 WHERE date = "september 21, 1980" |
###context:CREATE TABLE table_name_72 (total INTEGER, date VARCHAR, greater_doubles VARCHAR)
###human: Which Total has a Date of 1602, and Greater Doubles smaller than 16?
###assistant: SELECT MAX(total) FROM table_name_72 WHERE date = 1602 AND greater_doubles < 16 |
###context:CREATE TABLE table_name_26 (size__steps_ VARCHAR, just_ratio VARCHAR, size__cents_ VARCHAR)
###human: What is the value of the size (steps) that has just ratio 10:9 and a size (cents) more than 160
###assistant: SELECT COUNT(size__steps_) FROM table_name_26 WHERE just_ratio = "10:9" AND size__cents_ > 160 |
###context:CREATE TABLE table_name_28 (audio VARCHAR, just_ratio VARCHAR)
###human: what is the value of the audio with a just ratio 21:20
###assistant: SELECT audio FROM table_name_28 WHERE just_ratio = "21:20" |
###context:CREATE TABLE table_name_65 (error VARCHAR, size__steps_ VARCHAR, just__cents_ VARCHAR)
###human: What is the error that has a size (steps) more than 5 and a just (cents) value 536.95
###assistant: SELECT error FROM table_name_65 WHERE size__steps_ > 5 AND just__cents_ = 536.95 |
###context:CREATE TABLE table_name_33 (size__cents_ INTEGER, interval_name VARCHAR, size__steps_ VARCHAR)
###human: What is the average size (cents) with an interval of major third and size (steps) more than 5
###assistant: SELECT AVG(size__cents_) FROM table_name_33 WHERE interval_name = "major third" AND size__steps_ > 5 |
###context:CREATE TABLE table_name_49 (points INTEGER, place VARCHAR, draw VARCHAR)
###human: What is the average number of points for places over 7 and having a draw order of 4?
###assistant: SELECT AVG(points) FROM table_name_49 WHERE place > 7 AND draw = 4 |
###context:CREATE TABLE table_name_93 (league_goals VARCHAR, fa_cup_goals VARCHAR, league_apps VARCHAR)
###human: How many league goals did the player with 10 league apps and 0 FA cup goals have?
###assistant: SELECT COUNT(league_goals) FROM table_name_93 WHERE fa_cup_goals = 0 AND league_apps = "10" |
###context:CREATE TABLE table_name_80 (league_goals INTEGER, total_goals VARCHAR, league_cup_goals VARCHAR)
###human: What was the sum of league goals where the toal was 8 and league cup goals were larger than 0?
###assistant: SELECT SUM(league_goals) FROM table_name_80 WHERE total_goals = 8 AND league_cup_goals > 0 |
###context:CREATE TABLE table_name_92 (average_ratings VARCHAR, episodes VARCHAR, japanese_title VARCHAR)
###human: For the Japanese title γ΅γγͺ that had 11 episodes, what is the average ratings?
###assistant: SELECT average_ratings FROM table_name_92 WHERE episodes = 11 AND japanese_title = "γ΅γγͺ" |
###context:CREATE TABLE table_name_32 (episodes INTEGER, average_ratings VARCHAR)
###human: When the average ratings is 10.3%, what is the average episodes?
###assistant: SELECT AVG(episodes) FROM table_name_32 WHERE average_ratings = "10.3%" |
###context:CREATE TABLE table_name_40 (episodes INTEGER, romaji_title VARCHAR)
###human: What is the fewest episodes with the Romaji title Regatta~Kimi to Ita Eien~?
###assistant: SELECT MIN(episodes) FROM table_name_40 WHERE romaji_title = "regatta~kimi to ita eien~" |
###context:CREATE TABLE table_name_34 (japanese_title VARCHAR, romaji_title VARCHAR)
###human: With the Romaji title of Hanayome Wa Yakudoshi!, what is the Japanese title?
###assistant: SELECT japanese_title FROM table_name_34 WHERE romaji_title = "hanayome wa yakudoshi!" |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.