training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_65 (l2_cache VARCHAR, model_number VARCHAR)
###human: What is the L2 cache for the core i7-2635QM?
###assistant: SELECT l2_cache FROM table_name_65 WHERE model_number = "core i7-2635qm" |
###context:CREATE TABLE table_name_96 (release_price___usd__ VARCHAR, gpu_frequency VARCHAR)
###human: What is the release price for the GPU frequency of standard power, embedded?
###assistant: SELECT release_price___usd__ FROM table_name_96 WHERE gpu_frequency = "standard power, embedded" |
###context:CREATE TABLE table_name_40 (socket VARCHAR, turbo VARCHAR)
###human: What is the socked when the turbo is 8/8/10/11?
###assistant: SELECT socket FROM table_name_40 WHERE turbo = "8/8/10/11" |
###context:CREATE TABLE table_name_42 (round VARCHAR, record VARCHAR)
###human: Which round did the bout that led to a 1-0 record end in?
###assistant: SELECT round FROM table_name_42 WHERE record = "1-0" |
###context:CREATE TABLE table_name_73 (time VARCHAR, lane VARCHAR, nationality VARCHAR)
###human: Which Time has a Lane smaller than 2, and a Nationality of spain?
###assistant: SELECT time FROM table_name_73 WHERE lane < 2 AND nationality = "spain" |
###context:CREATE TABLE table_name_39 (heat VARCHAR, name VARCHAR)
###human: How many Heats have a Name of miguel molina?
###assistant: SELECT COUNT(heat) FROM table_name_39 WHERE name = "miguel molina" |
###context:CREATE TABLE table_name_46 (league VARCHAR, fa_cup VARCHAR, fa_trophy VARCHAR)
###human: what is the league when the fa cup is qr4 and the fa trophy is qf?
###assistant: SELECT league FROM table_name_46 WHERE fa_cup = "qr4" AND fa_trophy = "qf" |
###context:CREATE TABLE table_name_66 (fa_trophy VARCHAR, leading_scorer VARCHAR)
###human: what is the fa trophy when the leading scorer is lee gregory (8)?
###assistant: SELECT fa_trophy FROM table_name_66 WHERE leading_scorer = "lee gregory (8)" |
###context:CREATE TABLE table_name_81 (year VARCHAR, position VARCHAR, leading_scorer VARCHAR)
###human: what is the year when the position is 1/22 promoted and the leading scorer is james dean (27)?
###assistant: SELECT year FROM table_name_81 WHERE position = "1/22 promoted" AND leading_scorer = "james dean (27)" |
###context:CREATE TABLE table_name_52 (tie_no VARCHAR, home_team VARCHAR)
###human: When the Altrincham was the home team what was the tie no?
###assistant: SELECT tie_no FROM table_name_52 WHERE home_team = "altrincham" |
###context:CREATE TABLE table_name_77 (tie_no VARCHAR, home_team VARCHAR)
###human: Crawley Town as the home team has what as the tie no?
###assistant: SELECT tie_no FROM table_name_77 WHERE home_team = "crawley town" |
###context:CREATE TABLE table_name_47 (nationality VARCHAR, rank VARCHAR, time VARCHAR)
###human: What is the nationality of the swimmer with a rank over 2 with a time of 55.77?
###assistant: SELECT nationality FROM table_name_47 WHERE rank > 2 AND time = "55.77" |
###context:CREATE TABLE table_name_51 (heat INTEGER, nationality VARCHAR, rank VARCHAR)
###human: What is the earliest heat with a finisher from the Czech Republic and a rank over 41?
###assistant: SELECT MIN(heat) FROM table_name_51 WHERE nationality = "czech republic" AND rank > 41 |
###context:CREATE TABLE table_name_38 (heat VARCHAR, name VARCHAR, lane VARCHAR)
###human: What is the total number of heats with a finisher named Gregor Tait in lanes over 6?
###assistant: SELECT COUNT(heat) FROM table_name_38 WHERE name = "gregor tait" AND lane > 6 |
###context:CREATE TABLE table_name_47 (time VARCHAR, rank VARCHAR)
###human: What is the time of the swimmer in rank 40?
###assistant: SELECT time FROM table_name_47 WHERE rank = 40 |
###context:CREATE TABLE table_name_35 (series VARCHAR, director VARCHAR, title VARCHAR)
###human: From what series was Tokio Jokio, directed by Norm McCabe?
###assistant: SELECT series FROM table_name_35 WHERE director = "norm mccabe" AND title = "tokio jokio" |
###context:CREATE TABLE table_name_71 (release_date VARCHAR, title VARCHAR)
###human: When was Inki and the Minah Bird released?
###assistant: SELECT release_date FROM table_name_71 WHERE title = "inki and the minah bird" |
###context:CREATE TABLE table_name_66 (series VARCHAR, title VARCHAR)
###human: From what series is Peck Up Your Troubles?
###assistant: SELECT series FROM table_name_66 WHERE title = "peck up your troubles" |
###context:CREATE TABLE table_name_78 (civil_liberties INTEGER, year VARCHAR, political_rights VARCHAR, president VARCHAR)
###human: When the president was Yoweri Museveni, and the year was 1993, with rank of 6 under political rights, what was the total of civil liberties?
###assistant: SELECT SUM(civil_liberties) FROM table_name_78 WHERE political_rights = 6 AND president = "yoweri museveni" AND year = 1993 |
###context:CREATE TABLE table_name_39 (year INTEGER, political_rights VARCHAR, status VARCHAR, civil_liberties VARCHAR)
###human: What is the year average when not free was the status, and less than 7 was the civil liberties, and less than 6 political rights?
###assistant: SELECT AVG(year) FROM table_name_39 WHERE status = "not free" AND civil_liberties < 7 AND political_rights < 6 |
###context:CREATE TABLE table_name_54 (political_rights INTEGER, year VARCHAR)
###human: What is the least political rights rank in 1976?
###assistant: SELECT MIN(political_rights) FROM table_name_54 WHERE year = 1976 |
###context:CREATE TABLE table_name_38 (average_ratings VARCHAR, episodes VARCHAR, japanese_title VARCHAR)
###human: What is average ratings for Japanese title of ホタルノヒカリ, with episodes larger than 9?
###assistant: SELECT average_ratings FROM table_name_38 WHERE episodes > 9 AND japanese_title = "ホタルノヒカリ" |
###context:CREATE TABLE table_name_65 (episodes INTEGER, average_ratings VARCHAR)
###human: Which episodes has the lowest average ratings of 8.7%?
###assistant: SELECT MIN(episodes) FROM table_name_65 WHERE average_ratings = "8.7%" |
###context:CREATE TABLE table_name_94 (romaji_title VARCHAR, japanese_title VARCHAR)
###human: Which romaji title, has Japanese title of 菊次郎とさき 3?
###assistant: SELECT romaji_title FROM table_name_94 WHERE japanese_title = "菊次郎とさき 3" |
###context:CREATE TABLE table_name_45 (tv_station VARCHAR, episodes VARCHAR, romaji_title VARCHAR)
###human: Which TV station, has romaji title of tantei gakuen q and episodes larger than 10?
###assistant: SELECT tv_station FROM table_name_45 WHERE episodes > 10 AND romaji_title = "tantei gakuen q" |
###context:CREATE TABLE table_name_17 (almaty_ VARCHAR, _kazakhstan VARCHAR, sergey_filimonov___kaz__ VARCHAR)
###human: What is the Almaty, Kazakhstan when Sergey Filimonov ( KAZ ) is 210kg?
###assistant: SELECT almaty_, _kazakhstan FROM table_name_17 WHERE sergey_filimonov___kaz__ = "210kg" |
###context:CREATE TABLE table_name_69 (sergey_filimonov___kaz__ VARCHAR)
###human: What shows for Sergey Filimonov (KAZ) when the Snatch shows snatch?
###assistant: SELECT sergey_filimonov___kaz__ FROM table_name_69 WHERE "snatch" = "snatch" |
###context:CREATE TABLE table_name_42 (almaty_ VARCHAR, _kazakhstan VARCHAR, sergey_filimonov___kaz__ VARCHAR)
###human: What is the Almaty, Kazakhstan when the Sergey Filimonov (KAZ) is 210kg?
###assistant: SELECT almaty_, _kazakhstan FROM table_name_42 WHERE sergey_filimonov___kaz__ = "210kg" |
###context:CREATE TABLE table_name_89 (year INTEGER, role VARCHAR, character VARCHAR)
###human: What year was the main role a character named Guan Yu (關羽)?
###assistant: SELECT MIN(year) FROM table_name_89 WHERE role = "main" AND character = "guan yu (關羽)" |
###context:CREATE TABLE table_name_88 (english VARCHAR, character VARCHAR)
###human: What is the English character for Lin Ming Kuan (林明寬)?
###assistant: SELECT english FROM table_name_88 WHERE character = "lin ming kuan (林明寬)" |
###context:CREATE TABLE table_name_85 (character VARCHAR, chinese_title VARCHAR, year VARCHAR, role VARCHAR)
###human: What character has a Year larger than 2010 with a lead role, and Chinese Title of 戀夏38℃?
###assistant: SELECT character FROM table_name_85 WHERE year > 2010 AND role = "lead role" AND chinese_title = "戀夏38℃" |
###context:CREATE TABLE table_name_27 (year INTEGER, character VARCHAR)
###human: What is the year that has a character named Wu Ji Wei (無極威)?
###assistant: SELECT AVG(year) FROM table_name_27 WHERE character = "wu ji wei (無極威)" |
###context:CREATE TABLE table_name_81 (round INTEGER, opponent VARCHAR)
###human: Which Round has an Opponent of aleksandr pitchkounov?
###assistant: SELECT MIN(round) FROM table_name_81 WHERE opponent = "aleksandr pitchkounov" |
###context:CREATE TABLE table_name_92 (result VARCHAR, round VARCHAR, event VARCHAR)
###human: Which Result has a Round of 5, and an Event of mt one?
###assistant: SELECT result FROM table_name_92 WHERE round = 5 AND event = "mt one" |
###context:CREATE TABLE table_name_66 (draws VARCHAR, losses VARCHAR, against VARCHAR, club VARCHAR)
###human: Mortlake club has more than 924 against, less than 14 losses, and how many total draws?
###assistant: SELECT COUNT(draws) FROM table_name_66 WHERE against > 924 AND club = "mortlake" AND losses < 14 |
###context:CREATE TABLE table_name_39 (wins INTEGER, club VARCHAR, draws VARCHAR)
###human: What is the total number of wins for Cobden club when there are more than 2 draws?
###assistant: SELECT SUM(wins) FROM table_name_39 WHERE club = "cobden" AND draws > 2 |
###context:CREATE TABLE table_name_28 (draws VARCHAR, against VARCHAR, wins VARCHAR)
###human: When against is 797 and wins is more than 10, what is the sum of draws?
###assistant: SELECT COUNT(draws) FROM table_name_28 WHERE against = 797 AND wins > 10 |
###context:CREATE TABLE table_name_63 (draws INTEGER, wins VARCHAR, club VARCHAR)
###human: Club warrnambool has less than 9 wins and what average of draws?
###assistant: SELECT AVG(draws) FROM table_name_63 WHERE wins < 9 AND club = "warrnambool" |
###context:CREATE TABLE table_name_11 (draws INTEGER, club VARCHAR, wins VARCHAR)
###human: What is the average number of draws for Mortlake club when they have less than 0 wins?
###assistant: SELECT AVG(draws) FROM table_name_11 WHERE club = "mortlake" AND wins < 0 |
###context:CREATE TABLE table_name_26 (foreign_population INTEGER, population__2004_ INTEGER)
###human: Which Foreign population has a Population (2004) larger than 234733?
###assistant: SELECT AVG(foreign_population) FROM table_name_26 WHERE population__2004_ > 234733 |
###context:CREATE TABLE table_name_38 (population__2004_ INTEGER, moroccan_population INTEGER)
###human: Which Population (2004) has a Moroccan population larger than 234506?
###assistant: SELECT AVG(population__2004_) FROM table_name_38 WHERE moroccan_population > 234506 |
###context:CREATE TABLE table_name_98 (date VARCHAR, opponent VARCHAR)
###human: What date was the opponent VFL Sindelfingen?
###assistant: SELECT date FROM table_name_98 WHERE opponent = "vfl sindelfingen" |
###context:CREATE TABLE table_name_44 (date VARCHAR, attendance VARCHAR)
###human: What date was the attendance 1,804?
###assistant: SELECT date FROM table_name_44 WHERE attendance = "1,804" |
###context:CREATE TABLE table_name_98 (opponent VARCHAR, attendance VARCHAR)
###human: Who was the opponent with an attendance of 628?
###assistant: SELECT opponent FROM table_name_98 WHERE attendance = "628" |
###context:CREATE TABLE table_name_24 (bike VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR)
###human: What bike has a grid greater than 17, laps less than 8, with milos cihak as the rider?
###assistant: SELECT bike FROM table_name_24 WHERE grid > 17 AND laps < 8 AND rider = "milos cihak" |
###context:CREATE TABLE table_name_89 (grid INTEGER, rider VARCHAR)
###human: What is the highest grid that has gregorio lavilla as the rider?
###assistant: SELECT MAX(grid) FROM table_name_89 WHERE rider = "gregorio lavilla" |
###context:CREATE TABLE table_name_64 (rider VARCHAR, grid VARCHAR, time VARCHAR, laps VARCHAR, bike VARCHAR)
###human: What rider has laps less than 20, a ducati 1098 rs 08 as the bike, with accident as the time, and a grid less than 14?
###assistant: SELECT rider FROM table_name_64 WHERE laps < 20 AND bike = "ducati 1098 rs 08" AND time = "accident" AND grid < 14 |
###context:CREATE TABLE table_name_33 (overs INTEGER, runs VARCHAR, matches VARCHAR)
###human: How many overs when there are 5231 runs and fewer than 37 matches?
###assistant: SELECT SUM(overs) FROM table_name_33 WHERE runs = 5231 AND matches < 37 |
###context:CREATE TABLE table_name_84 (wickets INTEGER, career VARCHAR, maidens VARCHAR)
###human: What are the fewest wickets when player's career spanned 1946-1960 and maidens were more than 419?
###assistant: SELECT MIN(wickets) FROM table_name_84 WHERE career = "1946-1960" AND maidens > 419 |
###context:CREATE TABLE table_name_55 (wickets INTEGER, maidens VARCHAR, best VARCHAR)
###human: What is the largest number of wickets when there are more than 630 maidens and a best of 7/72?
###assistant: SELECT MAX(wickets) FROM table_name_55 WHERE maidens > 630 AND best = "7/72" |
###context:CREATE TABLE table_name_53 (name VARCHAR, average VARCHAR, overs VARCHAR, wickets VARCHAR)
###human: Who has fewer than 2047.3 overs, more than 200 wickets and an average of 29.02?
###assistant: SELECT name FROM table_name_53 WHERE overs < 2047.3 AND wickets > 200 AND average > 29.02 |
###context:CREATE TABLE table_name_60 (attendance VARCHAR, competition VARCHAR, date VARCHAR)
###human: How many people attended the Scottish Cup on 29.02.2000?
###assistant: SELECT attendance FROM table_name_60 WHERE competition = "scottish cup" AND date = "29.02.2000" |
###context:CREATE TABLE table_name_90 (score VARCHAR, competition VARCHAR, season VARCHAR)
###human: What was the score of the league cup in the 2007-08 season?
###assistant: SELECT score FROM table_name_90 WHERE competition = "league cup" AND season = "2007-08" |
###context:CREATE TABLE table_name_39 (attendance INTEGER, season VARCHAR, score VARCHAR)
###human: What is the attendance in the game in the 2010-11 season, when the score was 2–0?
###assistant: SELECT MIN(attendance) FROM table_name_39 WHERE season = "2010-11" AND score = "2–0" |
###context:CREATE TABLE table_name_84 (year INTEGER)
###human: What team was in 1st plate in a year later than 1956?
###assistant: SELECT 1 AS st_place_team FROM table_name_84 WHERE year > 1956 |
###context:CREATE TABLE table_name_59 (base VARCHAR, company VARCHAR)
###human: Which base has a company of Theatro Technis Karolos Koun?
###assistant: SELECT base FROM table_name_59 WHERE company = "theatro technis karolos koun" |
###context:CREATE TABLE table_name_74 (company VARCHAR, author VARCHAR, play VARCHAR)
###human: Which company has an author of Aristophanes and play of Plutus?
###assistant: SELECT company FROM table_name_74 WHERE author = "aristophanes" AND play = "plutus" |
###context:CREATE TABLE table_name_22 (author VARCHAR, company VARCHAR)
###human: Which author has a company of the Semeio Theatre?
###assistant: SELECT author FROM table_name_22 WHERE company = "semeio theatre" |
###context:CREATE TABLE table_name_47 (play VARCHAR, company VARCHAR)
###human: Which play was done by the Radu Stanca National Theatre company?
###assistant: SELECT play FROM table_name_47 WHERE company = "radu stanca national theatre" |
###context:CREATE TABLE table_name_96 (play VARCHAR, base VARCHAR)
###human: Which play had a base of Aosta?
###assistant: SELECT play FROM table_name_96 WHERE base = "aosta" |
###context:CREATE TABLE table_name_33 (country VARCHAR, base VARCHAR, company VARCHAR)
###human: What is the country of the play based in Athens at the Attis Theatre company?
###assistant: SELECT country FROM table_name_33 WHERE base = "athens" AND company = "attis theatre" |
###context:CREATE TABLE table_name_14 (class VARCHAR, quantity INTEGER)
###human: Which Class has a Quantity larger than 96?
###assistant: SELECT class FROM table_name_14 WHERE quantity > 96 |
###context:CREATE TABLE table_name_11 (quantity VARCHAR, type VARCHAR)
###human: How much Quantity has a Type of 1′c1′ h2t?
###assistant: SELECT COUNT(quantity) FROM table_name_11 WHERE type = "1′c1′ h2t" |
###context:CREATE TABLE table_name_85 (class VARCHAR, type VARCHAR)
###human: Which Class has a Type of 1′c n2t?
###assistant: SELECT class FROM table_name_85 WHERE type = "1′c n2t" |
###context:CREATE TABLE table_name_90 (year_s__of_manufacture VARCHAR, quantity VARCHAR, type VARCHAR)
###human: Which Year(s) of manufacture has a Quantity larger than 39, and a Type of 1′c1′ h2t?
###assistant: SELECT year_s__of_manufacture FROM table_name_90 WHERE quantity > 39 AND type = "1′c1′ h2t" |
###context:CREATE TABLE table_name_13 (year_s__of_manufacture VARCHAR, quantity VARCHAR, type VARCHAR)
###human: Which Year(s) of manufacture has a Quantity of 2, and a Type of b n2t?
###assistant: SELECT year_s__of_manufacture FROM table_name_13 WHERE quantity = 2 AND type = "b n2t" |
###context:CREATE TABLE table_name_18 (place INTEGER, team VARCHAR, lost VARCHAR, points VARCHAR)
###human: what is the highest place when lost is more than 4, points is less than 18 and team is Team of atlético veragüense?
###assistant: SELECT MAX(place) FROM table_name_18 WHERE lost > 4 AND points < 18 AND team = "atlético veragüense" |
###context:CREATE TABLE table_name_72 (lost INTEGER, points VARCHAR, place VARCHAR, goals_scored VARCHAR)
###human: what is the least lost when the place is higher than 4, goals scored is 12 and points is more than 4?
###assistant: SELECT MIN(lost) FROM table_name_72 WHERE place > 4 AND goals_scored = 12 AND points > 4 |
###context:CREATE TABLE table_name_85 (place VARCHAR, team VARCHAR, played VARCHAR)
###human: how many times is the team tauro and played less than 18?
###assistant: SELECT COUNT(place) FROM table_name_85 WHERE team = "tauro" AND played < 18 |
###context:CREATE TABLE table_name_39 (played INTEGER, points VARCHAR, place VARCHAR)
###human: what is the least played when points is 36 and place is more than 2?
###assistant: SELECT MIN(played) FROM table_name_39 WHERE points = 36 AND place > 2 |
###context:CREATE TABLE table_name_97 (points INTEGER, goals_conceded VARCHAR, goals_scored VARCHAR)
###human: what is the average points when goals conceded is 14 and goals scored is less than 32?
###assistant: SELECT AVG(points) FROM table_name_97 WHERE goals_conceded = 14 AND goals_scored < 32 |
###context:CREATE TABLE table_name_63 (result VARCHAR, opponent VARCHAR, week VARCHAR, attendance VARCHAR)
###human: Playing against the Seattle Seahawks in a week after week 1 before 69,149 people what was the result of the game?
###assistant: SELECT result FROM table_name_63 WHERE week > 1 AND attendance = "69,149" AND opponent = "seattle seahawks" |
###context:CREATE TABLE table_name_23 (week VARCHAR, date VARCHAR)
###human: How many weeks in total has bye as the date?
###assistant: SELECT COUNT(week) FROM table_name_23 WHERE date = "bye" |
###context:CREATE TABLE table_name_58 (country VARCHAR, player VARCHAR)
###human: What country does Tiger Woods come from?
###assistant: SELECT country FROM table_name_58 WHERE player = "tiger woods" |
###context:CREATE TABLE table_name_49 (ri_song_hui___prk__ VARCHAR, world_record VARCHAR)
###human: What's the Ri Song-Hui when the olympic record is the world record and snatch was snatch?
###assistant: SELECT ri_song_hui___prk__ FROM table_name_49 WHERE world_record = "olympic record" AND "snatch" = "snatch" |
###context:CREATE TABLE table_name_56 (ri_song_hui___prk__ VARCHAR)
###human: What's the 102kg when the Ri Song-Hui was 226kg?
###assistant: SELECT 102 AS kg FROM table_name_56 WHERE ri_song_hui___prk__ = "226kg" |
###context:CREATE TABLE table_name_56 (world_record VARCHAR)
###human: What's the 102kg when the snatch was snatch and the olympic record was the world record?
###assistant: SELECT 102 AS kg FROM table_name_56 WHERE world_record = "olympic record" AND "snatch" = "snatch" |
###context:CREATE TABLE table_name_82 (pick INTEGER, team VARCHAR)
###human: What was the average pick made by the Texas Rangers?
###assistant: SELECT AVG(pick) FROM table_name_82 WHERE team = "texas rangers" |
###context:CREATE TABLE table_name_18 (hometown_school VARCHAR, team VARCHAR, player VARCHAR)
###human: What was the home town of Bob Geren, picked by the San Diego Padres?
###assistant: SELECT hometown_school FROM table_name_18 WHERE team = "san diego padres" AND player = "bob geren" |
###context:CREATE TABLE table_name_94 (position VARCHAR, player VARCHAR)
###human: What was the position of Jon Perlman?
###assistant: SELECT position FROM table_name_94 WHERE player = "jon perlman" |
###context:CREATE TABLE table_name_73 (college VARCHAR, position VARCHAR, pick VARCHAR)
###human: What college has a pick smaller than 87 for the position of tackle?
###assistant: SELECT college FROM table_name_73 WHERE position = "tackle" AND pick < 87 |
###context:CREATE TABLE table_name_51 (college VARCHAR, pick VARCHAR)
###human: What college had the pick of 85?
###assistant: SELECT college FROM table_name_51 WHERE pick = 85 |
###context:CREATE TABLE table_name_96 (losses INTEGER, club VARCHAR, against VARCHAR)
###human: What are the least losses of Mortlake having less than 970 against?
###assistant: SELECT MIN(losses) FROM table_name_96 WHERE club = "mortlake" AND against < 970 |
###context:CREATE TABLE table_name_30 (against VARCHAR, draws INTEGER)
###human: What's the total against when the draws are more than 0?
###assistant: SELECT COUNT(against) FROM table_name_30 WHERE draws > 0 |
###context:CREATE TABLE table_name_92 (wins VARCHAR, draws INTEGER)
###human: What's the total wins when the draws are less than 0?
###assistant: SELECT COUNT(wins) FROM table_name_92 WHERE draws < 0 |
###context:CREATE TABLE table_name_50 (against INTEGER, club VARCHAR, draws VARCHAR)
###human: What's the least against number for Cobden with draws more than 0?
###assistant: SELECT MIN(against) FROM table_name_50 WHERE club = "cobden" AND draws > 0 |
###context:CREATE TABLE table_name_43 (against INTEGER, draws INTEGER)
###human: What's the most against when the draws are more than 0?
###assistant: SELECT MAX(against) FROM table_name_43 WHERE draws > 0 |
###context:CREATE TABLE table_name_46 (wins INTEGER, against VARCHAR)
###human: What are the total wins when there are 1261 against?
###assistant: SELECT SUM(wins) FROM table_name_46 WHERE against = 1261 |
###context:CREATE TABLE table_name_33 (notes VARCHAR, time VARCHAR)
###human: What is the notes entry for the row with a Time of 1:42.309?
###assistant: SELECT notes FROM table_name_33 WHERE time = "1:42.309" |
###context:CREATE TABLE table_name_96 (rank INTEGER, country VARCHAR)
###human: What is the rank for China?
###assistant: SELECT SUM(rank) FROM table_name_96 WHERE country = "china" |
###context:CREATE TABLE table_name_54 (time VARCHAR, notes VARCHAR, country VARCHAR)
###human: What is the time for Cuba, with a notes entry of QS?
###assistant: SELECT time FROM table_name_54 WHERE notes = "qs" AND country = "cuba" |
###context:CREATE TABLE table_name_17 (week VARCHAR, date VARCHAR)
###human: What is the Week number on October 10, 1976?
###assistant: SELECT COUNT(week) FROM table_name_17 WHERE date = "october 10, 1976" |
###context:CREATE TABLE table_name_89 (date VARCHAR, result VARCHAR)
###human: What is the Date of the game with a Result of L 33–14?
###assistant: SELECT date FROM table_name_89 WHERE result = "l 33–14" |
###context:CREATE TABLE table_name_48 (augmented_fifth VARCHAR, major_third VARCHAR)
###human: The Major third of D has what for the Augmented fifth?
###assistant: SELECT augmented_fifth FROM table_name_48 WHERE major_third = "d" |
###context:CREATE TABLE table_name_29 (minor_seventh VARCHAR, major_third VARCHAR)
###human: A major third of C has what listed for the Minor seventh?
###assistant: SELECT minor_seventh FROM table_name_29 WHERE major_third = "c" |
###context:CREATE TABLE table_name_23 (chord VARCHAR, minor_seventh VARCHAR)
###human: What is the listed chord for a Minor seventh of F?
###assistant: SELECT chord FROM table_name_23 WHERE minor_seventh = "f" |
###context:CREATE TABLE table_name_71 (episode VARCHAR, rank VARCHAR)
###human: Which Episode has a Rank of 1?
###assistant: SELECT episode FROM table_name_71 WHERE rank = 1 |
###context:CREATE TABLE table_name_62 (rally_hq VARCHAR, rally_name VARCHAR)
###human: Where was adac rally deutschland's rally HQ?
###assistant: SELECT rally_hq FROM table_name_62 WHERE rally_name = "adac rally deutschland" |
###context:CREATE TABLE table_name_9 (rally_hq VARCHAR, round VARCHAR)
###human: Where was the Rally HQ for Round 1?
###assistant: SELECT rally_hq FROM table_name_9 WHERE round = 1 |
###context:CREATE TABLE table_name_67 (support_category VARCHAR, round VARCHAR)
###human: Which Support Category had a Round score of 9?
###assistant: SELECT support_category FROM table_name_67 WHERE round = 9 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.